mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-27 00:44:45 +00:00
7 lines
179 B
Python
7 lines
179 B
Python
import webnotes
|
|
|
|
def execute():
|
|
webnotes.clear_perms("Employee")
|
|
webnotes.reload_doc("hr", "doctype", "employee")
|
|
webnotes.conn.sql("""update tabEmployee set employee=name""")
|