brotherton-erpnext/erpnext/setup/setup_wizard/utils.py
2021-11-05 11:16:29 +05:30

13 lines
254 B
Python

import json
import os
from frappe.desk.page.setup_wizard.setup_wizard import setup_complete
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)