2015-03-03 09:25:30 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-08-05 09:29:54 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2017-08-28 12:47:36 +00:00
|
|
|
from __future__ import print_function, unicode_literals
|
2013-01-16 12:18:17 +00:00
|
|
|
|
2014-02-14 10:17:51 +00:00
|
|
|
import frappe
|
2018-02-22 05:38:36 +00:00
|
|
|
from erpnext.accounts.doctype.cash_flow_mapper.default_cash_flow_mapper import DEFAULT_MAPPERS
|
2018-05-03 13:36:32 +00:00
|
|
|
from .default_success_action import get_default_success_action
|
2016-05-11 11:17:14 +00:00
|
|
|
from frappe import _
|
2017-09-14 09:47:38 +00:00
|
|
|
from frappe.desk.page.setup_wizard.setup_wizard import add_all_roles_to
|
|
|
|
from frappe.custom.doctype.custom_field.custom_field import create_custom_field
|
2013-01-16 12:18:17 +00:00
|
|
|
|
2014-06-26 07:17:45 +00:00
|
|
|
default_mail_footer = """<div style="padding: 7px; text-align: right; color: #888"><small>Sent via
|
2014-06-26 06:32:55 +00:00
|
|
|
<a style="color: #888" href="http://erpnext.org">ERPNext</a></div>"""
|
|
|
|
|
2018-02-22 05:38:36 +00:00
|
|
|
|
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()
|
2014-04-30 05:46:02 +00:00
|
|
|
set_single_defaults()
|
2016-05-11 11:17:14 +00:00
|
|
|
create_compact_item_print_custom_field()
|
2017-09-14 09:47:38 +00:00
|
|
|
create_print_zero_amount_taxes_custom_field()
|
2013-01-17 12:52:22 +00:00
|
|
|
add_all_roles_to("Administrator")
|
2018-02-22 05:38:36 +00:00
|
|
|
create_default_cash_flow_mapper_templates()
|
2018-05-03 13:36:32 +00:00
|
|
|
create_default_success_action()
|
2014-02-26 07:05:33 +00:00
|
|
|
frappe.db.commit()
|
2013-01-17 12:52:22 +00:00
|
|
|
|
2018-02-22 05:38:36 +00:00
|
|
|
|
2015-12-31 05:42:48 +00:00
|
|
|
def check_setup_wizard_not_completed():
|
|
|
|
if frappe.db.get_default('desktop:home_page') == 'desktop':
|
2017-08-28 12:47:36 +00:00
|
|
|
print()
|
|
|
|
print("ERPNext can only be installed on a fresh site where the setup wizard is not completed")
|
|
|
|
print("You can reinstall this site (after saving your data) using: bench --site [sitename] reinstall")
|
|
|
|
print()
|
2015-12-31 05:42:48 +00:00
|
|
|
return False
|
|
|
|
|
2018-02-22 05:38:36 +00:00
|
|
|
|
2014-02-19 15:23:45 +00:00
|
|
|
def set_single_defaults():
|
2016-10-13 05:30:00 +00:00
|
|
|
for dt in ('Accounts Settings', 'Print Settings', 'HR Settings', 'Buying Settings',
|
2018-02-21 09:45:43 +00:00
|
|
|
'Selling Settings', 'Stock Settings'):
|
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
|
2016-10-13 05:30:00 +00:00
|
|
|
except frappe.ValidationError:
|
|
|
|
pass
|
2014-03-19 11:40:01 +00:00
|
|
|
|
2014-02-26 07:05:33 +00:00
|
|
|
frappe.db.set_default("date_format", "dd-mm-yyyy")
|
2016-05-11 11:17:14 +00:00
|
|
|
|
2018-02-22 05:38:36 +00:00
|
|
|
|
2016-05-11 11:17:14 +00:00
|
|
|
def create_compact_item_print_custom_field():
|
|
|
|
create_custom_field('Print Settings', {
|
|
|
|
'label': _('Compact Item Print'),
|
|
|
|
'fieldname': 'compact_item_print',
|
|
|
|
'fieldtype': 'Check',
|
|
|
|
'default': 1,
|
|
|
|
'insert_after': 'with_letterhead'
|
2017-09-14 09:47:38 +00:00
|
|
|
})
|
|
|
|
|
2018-02-22 05:38:36 +00:00
|
|
|
|
2017-09-14 09:47:38 +00:00
|
|
|
def create_print_zero_amount_taxes_custom_field():
|
|
|
|
create_custom_field('Print Settings', {
|
|
|
|
'label': _('Print taxes with zero amount'),
|
|
|
|
'fieldname': 'print_taxes_with_zero_amount',
|
|
|
|
'fieldtype': 'Check',
|
|
|
|
'default': 0,
|
|
|
|
'insert_after': 'allow_print_for_cancelled'
|
2018-02-22 05:38:36 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
def create_default_cash_flow_mapper_templates():
|
2018-05-03 13:36:32 +00:00
|
|
|
for mapper in DEFAULT_MAPPERS:
|
2018-02-22 05:38:36 +00:00
|
|
|
if not frappe.db.exists('Cash Flow Mapper', mapper['section_name']):
|
|
|
|
doc = frappe.get_doc(mapper)
|
|
|
|
doc.insert(ignore_permissions=True)
|
2018-05-03 13:36:32 +00:00
|
|
|
|
|
|
|
def create_default_success_action():
|
|
|
|
for success_action in get_default_success_action():
|
|
|
|
if not frappe.db.exists('Success Action', success_action.get("ref_doctype")):
|
|
|
|
doc = frappe.get_doc(success_action)
|
|
|
|
doc.insert(ignore_permissions=True)
|