brotherton-erpnext/erpnext/patches/accounts_default_form.py
2011-12-14 15:28:51 +05:30

8 lines
278 B
Python

def execute():
import webnotes
from webnotes.modules.module_manager import reload_doc
reload_doc('setup', 'doctype', 'company')
reload_doc('setup', 'doctype', 'manage_account')
~