2019-01-22 12:52:20 +00:00
|
|
|
from __future__ import unicode_literals
|
2021-09-02 11:14:59 +00:00
|
|
|
|
2017-06-22 11:07:04 +00:00
|
|
|
import json
|
|
|
|
import os
|
|
|
|
|
|
|
|
from frappe.desk.page.setup_wizard.setup_wizard import setup_complete
|
2021-09-02 11:14:59 +00:00
|
|
|
|
2017-06-22 11:07:04 +00:00
|
|
|
|
|
|
|
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)
|