brotherton-erpnext/erpnext/setup/install.py

117 lines
3.6 KiB
Python
Raw Normal View History

# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt
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
2016-05-11 11:17:14 +00:00
from frappe import _
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>"""
def after_install():
2018-01-24 12:51:18 +00:00
leave_application_workflow()
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()
create_print_zero_amount_taxes_custom_field()
add_all_roles_to("Administrator")
2014-02-26 07:05:33 +00:00
frappe.db.commit()
2018-01-24 12:51:18 +00:00
def leave_application_workflow():
states = {'Approved': 'Success', 'Rejected': 'Danger', 'Open': 'Warning'}
for state, style in states.items():
if not frappe.db.exists("Workflow State", state):
frappe.get_doc({
'doctype': 'Workflow State',
'workflow_state_name': state,
'style': style
}).insert(ignore_permissions=True)
2018-01-24 15:09:30 +00:00
for action in ['Approve', 'Reject']:
if not frappe.db.exists("Workflow Action", action):
frappe.get_doc({
'doctype': 'Workflow Action',
'workflow_action_name': action
}).insert(ignore_permissions=True)
2018-01-24 12:51:18 +00:00
if not frappe.db.exists("Workflow", "Leave Approval"):
frappe.get_doc({
'doctype': 'Workflow',
'workflow_name': 'Leave Approval',
'document_type': 'Leave Application',
'is_active': 1,
'workflow_state_field': 'workflow_state',
'states': [{
"state": 'Open',
"doc_status": 0,
"allow_edit": 'Employee'
}, {
"state": 'Approved',
"doc_status": 1,
"allow_edit": 'Leave Approver'
}, {
"state": 'Rejected',
"doc_status": 1,
"allow_edit": 'Leave Approver'
}],
'transitions': [{
"state": 'Open',
"action": 'Approve',
"next_state": 'Approved',
"allowed": 'Leave Approver'
},
{
"state": 'Open',
"action": 'Reject',
"next_state": 'Rejected',
"allowed": 'Leave Approver'
}]
}).insert(ignore_permissions=True)
def check_setup_wizard_not_completed():
if frappe.db.get_default('desktop:home_page') == 'desktop':
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()
return False
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',
2016-11-08 12:48:40 +00:00
'Selling Settings', 'Stock Settings', 'Daily Work Summary Settings'):
default_values = frappe.db.sql("""select fieldname, `default` from `tabDocField`
where parent=%s""", dt)
if default_values:
try:
2014-03-28 11:14:37 +00:00
b = frappe.get_doc(dt, dt)
for fieldname, value in default_values:
b.set(fieldname, value)
b.save()
except frappe.MandatoryError:
pass
2016-10-13 05:30:00 +00:00
except frappe.ValidationError:
pass
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
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'
})
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'
2016-05-11 11:17:14 +00:00
})