2013-11-20 07:29:58 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
2013-08-05 09:29:54 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2013-01-16 12:18:17 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2014-02-14 10:17:51 +00:00
|
|
|
import frappe
|
2013-01-16 12:18:17 +00:00
|
|
|
|
2014-04-18 10:30:41 +00:00
|
|
|
from frappe import _
|
|
|
|
|
2013-12-12 13:42:19 +00:00
|
|
|
def after_install():
|
2014-04-21 08:13:11 +00:00
|
|
|
frappe.get_doc({'doctype': "Role", "role_name": "Analytics"}).insert()
|
2013-01-17 12:52:22 +00:00
|
|
|
import_country_and_currency()
|
2014-03-06 12:51:56 +00:00
|
|
|
from erpnext.accounts.doctype.chart_of_accounts.import_charts import import_charts
|
|
|
|
import_charts()
|
2014-04-04 06:30:36 +00:00
|
|
|
frappe.db.set_default('desktop:home_page', 'setup-wizard')
|
2013-01-17 12:52:22 +00:00
|
|
|
feature_setup()
|
2013-12-12 13:42:19 +00:00
|
|
|
from erpnext.setup.page.setup_wizard.setup_wizard import add_all_roles_to
|
2013-01-17 12:52:22 +00:00
|
|
|
add_all_roles_to("Administrator")
|
2014-02-19 15:23:45 +00:00
|
|
|
set_single_defaults()
|
2014-02-26 07:05:33 +00:00
|
|
|
frappe.db.commit()
|
2013-01-17 12:52:22 +00:00
|
|
|
|
|
|
|
def import_country_and_currency():
|
2014-02-14 10:17:51 +00:00
|
|
|
from frappe.country_info import get_all
|
2013-01-17 12:52:22 +00:00
|
|
|
data = get_all()
|
2014-04-10 13:10:57 +00:00
|
|
|
|
2013-01-17 12:52:22 +00:00
|
|
|
for name in data:
|
2014-02-14 10:17:51 +00:00
|
|
|
country = frappe._dict(data[name])
|
2014-03-25 08:20:52 +00:00
|
|
|
if not frappe.db.exists("Country", name):
|
2014-03-28 11:14:37 +00:00
|
|
|
frappe.get_doc({
|
2014-03-25 08:20:52 +00:00
|
|
|
"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-04-10 13:10:57 +00:00
|
|
|
|
2014-02-26 07:05:33 +00:00
|
|
|
if country.currency and not frappe.db.exists("Currency", country.currency):
|
2014-03-28 11:14:37 +00:00
|
|
|
frappe.get_doc({
|
2013-01-17 12:52:22 +00:00
|
|
|
"doctype": "Currency",
|
|
|
|
"currency_name": country.currency,
|
|
|
|
"fraction": country.currency_fraction,
|
|
|
|
"symbol": country.currency_symbol,
|
2013-01-21 04:44:10 +00:00
|
|
|
"fraction_units": country.currency_fraction_units,
|
|
|
|
"number_format": country.number_format
|
2013-01-17 12:52:22 +00:00
|
|
|
}).insert()
|
|
|
|
|
2013-12-12 13:42:19 +00:00
|
|
|
def feature_setup():
|
|
|
|
"""save global defaults and features setup"""
|
2014-04-02 12:39:34 +00:00
|
|
|
doc = frappe.get_doc("Features Setup", "Features Setup")
|
|
|
|
doc.ignore_permissions = True
|
2013-12-12 13:42:19 +00:00
|
|
|
|
|
|
|
# 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'
|
|
|
|
]
|
2014-04-29 10:54:37 +00:00
|
|
|
for f in flds:
|
|
|
|
doc.set(f, 1)
|
2014-04-02 12:39:34 +00:00
|
|
|
doc.save()
|
2014-02-19 15:23:45 +00:00
|
|
|
|
|
|
|
def set_single_defaults():
|
2014-04-04 07:56:50 +00:00
|
|
|
for dt in frappe.db.sql_list("""select name from `tabDocType` where issingle=1"""):
|
2014-03-19 11:40:01 +00:00
|
|
|
default_values = frappe.db.sql("""select fieldname, `default` from `tabDocField`
|
2014-04-03 09:00:42 +00:00
|
|
|
where parent=%s""", dt)
|
2014-03-19 11:40:01 +00:00
|
|
|
if default_values:
|
|
|
|
try:
|
2014-03-28 11:14:37 +00:00
|
|
|
b = frappe.get_doc(dt, dt)
|
2014-03-19 11:40:01 +00:00
|
|
|
for fieldname, value in default_values:
|
2014-03-28 08:25:00 +00:00
|
|
|
b.set(fieldname, value)
|
2014-03-19 11:40:01 +00:00
|
|
|
b.save()
|
|
|
|
except frappe.MandatoryError:
|
|
|
|
pass
|
|
|
|
|
2014-02-26 07:05:33 +00:00
|
|
|
frappe.db.set_default("date_format", "dd-mm-yyyy")
|