mirror of
https://github.com/frappe/erpnext.git
synced 2026-09-16 02:11:39 +00:00
Renamed Health Insurance to Employee Health Insurance
This commit is contained in:
10
erpnext/patches/v11_0/rename_health_insurance.py
Normal file
10
erpnext/patches/v11_0/rename_health_insurance.py
Normal file
@@ -0,0 +1,10 @@
|
||||
# Copyright (c) 2018, Frappe and Contributors
|
||||
# License: GNU General Public License v3. See license.txt
|
||||
|
||||
from __future__ import unicode_literals
|
||||
from frappe.model.rename_doc import rename_doc
|
||||
import frappe
|
||||
|
||||
def execute():
|
||||
rename_doc('DocType', 'Health Insurance', 'Employee Health Insurance', force=True)
|
||||
frappe.reload_doc('hr', 'doctype', 'employee_health_insurance')
|
||||
Reference in New Issue
Block a user