blob: dc4abd4f502610db7cbbb2ea752e06a15d90e4f6 [file] [log] [blame]
Rushabh Mehta919a74a2017-06-22 16:37:04 +05301import json, os
2
3from frappe.desk.page.setup_wizard.setup_wizard import setup_complete
4from erpnext.setup.setup_wizard import setup_wizard
5
6def complete():
7 with open(os.path.join(os.path.dirname(__file__),
8 'data', 'test_mfg.json'), 'r') as f:
9 data = json.loads(f.read())
10
11 #setup_wizard.create_sales_tax(data)
12 setup_complete(data)
13
14
15