76 lines
2.4 KiB
Python
Raw Normal View History

2013-11-20 12:59:58 +05:30
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt
2013-01-16 17:48:17 +05:30
from __future__ import unicode_literals
2014-02-14 15:47:51 +05:30
import frappe
2013-01-16 17:48:17 +05:30
from frappe import _
def after_install():
import_country_and_currency()
from erpnext.accounts.doctype.chart_of_accounts.import_charts import import_charts
import_charts()
2014-04-04 12:00:36 +05:30
frappe.db.set_default('desktop:home_page', 'setup-wizard')
feature_setup()
from erpnext.setup.page.setup_wizard.setup_wizard import add_all_roles_to
add_all_roles_to("Administrator")
2014-02-19 20:53:45 +05:30
set_single_defaults()
2014-02-26 12:35:33 +05:30
frappe.db.commit()
def import_country_and_currency():
2014-02-14 15:47:51 +05:30
from frappe.country_info import get_all
data = get_all()
for name in data:
2014-02-14 15:47:51 +05:30
country = frappe._dict(data[name])
if not frappe.db.exists("Country", name):
2014-03-28 16:44:37 +05:30
frappe.get_doc({
"doctype": "Country",
"country_name": name,
"code": country.code,
"date_format": country.date_format or "dd-mm-yyyy",
"time_zones": "\n".join(country.timezones or [])
}).insert()
2014-02-26 12:35:33 +05:30
if country.currency and not frappe.db.exists("Currency", country.currency):
2014-03-28 16:44:37 +05:30
frappe.get_doc({
"doctype": "Currency",
"currency_name": country.currency,
"fraction": country.currency_fraction,
"symbol": country.currency_symbol,
"fraction_units": country.currency_fraction_units,
"number_format": country.number_format
}).insert()
def feature_setup():
"""save global defaults and features setup"""
doc = frappe.get_doc("Features Setup", "Features Setup")
doc.ignore_permissions = True
# store value as 1 for all these fields
flds = ['fs_item_serial_nos', 'fs_item_batch_nos', 'fs_brands', 'fs_item_barcode',
'fs_item_advanced', 'fs_packing_details', 'fs_item_group_in_details',
'fs_exports', 'fs_imports', 'fs_discounts', 'fs_purchase_discounts',
'fs_after_sales_installations', 'fs_projects', 'fs_sales_extras',
'fs_recurring_invoice', 'fs_pos', 'fs_manufacturing', 'fs_quality',
'fs_page_break', 'fs_more_info', 'fs_pos_view'
]
doc.update(dict(zip(flds, [1]*len(flds))))
doc.save()
2014-02-19 20:53:45 +05:30
def set_single_defaults():
for dt in frappe.db.sql_list("""select name from `tabDocType` where issingle=1"""):
default_values = frappe.db.sql("""select fieldname, `default` from `tabDocField`
where parent=%s""", dt)
if default_values:
try:
2014-03-28 16:44:37 +05:30
b = frappe.get_doc(dt, dt)
for fieldname, value in default_values:
b.set(fieldname, value)
b.save()
except frappe.MandatoryError:
pass
2014-02-26 12:35:33 +05:30
frappe.db.set_default("date_format", "dd-mm-yyyy")