2018-04-15 09:33:54 +00:00
|
|
|
# Copyright (c) 2018, Frappe and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import frappe
|
|
|
|
|
|
|
|
def execute():
|
2019-12-11 04:06:17 +00:00
|
|
|
frappe.rename_doc('DocType', 'Health Insurance', 'Employee Health Insurance', force=True)
|
2018-04-15 09:33:54 +00:00
|
|
|
frappe.reload_doc('hr', 'doctype', 'employee_health_insurance')
|