brotherton-erpnext/erpnext/setup/setup_wizard/utils.py
2021-03-04 19:29:55 +01:00

13 lines
339 B
Python

from __future__ import unicode_literals
import json, os
from frappe.desk.page.setup_wizard.setup_wizard import setup_complete
from erpnext.setup.setup_wizard import setup_wizard
def complete():
with open(os.path.join(os.path.dirname(__file__),
'data', 'test_mfg.json'), 'r') as f:
data = json.loads(f.read())
setup_complete(data)