2015-02-24 06:54:53 +00:00
|
|
|
from __future__ import unicode_literals
|
2014-05-02 06:44:03 +00:00
|
|
|
app_name = "erpnext"
|
|
|
|
app_title = "ERPNext"
|
2015-07-22 09:37:25 +00:00
|
|
|
app_publisher = "Frappe Technologies Pvt. Ltd."
|
|
|
|
app_description = """## ERPNext
|
|
|
|
|
|
|
|
ERPNext is a fully featured ERP system designed for Small and Medium Sized
|
|
|
|
business. ERPNext covers a wide range of features including Accounting, CRM,
|
|
|
|
Inventory management, Selling, Purchasing, Manufacturing, Projects, HR &
|
|
|
|
Payroll, Website, E-Commerce and much more.
|
|
|
|
|
|
|
|
ERPNext is based on the Frappe Framework is highly customizable and extendable.
|
|
|
|
You can create Custom Form, Fields, Scripts and can also create your own Apps
|
|
|
|
to extend ERPNext functionality.
|
|
|
|
|
|
|
|
ERPNext is Open Source under the GNU General Public Licence v3 and has been
|
|
|
|
listed as one of the Best Open Source Softwares in the world by my online
|
|
|
|
blogs.
|
|
|
|
|
|
|
|
### Links
|
|
|
|
|
|
|
|
- Website: [https://erpnext.com](https://erpnext.com)
|
|
|
|
- GitHub: [https://github.com/frappe/erpnext](https://github.com/frappe/erpnext)
|
|
|
|
- Forum: [https://discuss.erpnext.com](https://discuss.erpnext.com)
|
|
|
|
- Frappe Framework: [https://frappe.io](https://frappe.io)
|
|
|
|
|
|
|
|
"""
|
2014-05-02 06:44:03 +00:00
|
|
|
app_icon = "icon-th"
|
|
|
|
app_color = "#e74c3c"
|
2015-07-20 09:52:10 +00:00
|
|
|
app_version = "5.2.1"
|
2015-07-22 09:37:25 +00:00
|
|
|
github_link = "https://github.com/frappe/erpnext"
|
2014-05-02 06:44:03 +00:00
|
|
|
|
2014-07-09 07:29:56 +00:00
|
|
|
error_report_email = "support@erpnext.com"
|
|
|
|
|
2014-05-02 06:44:03 +00:00
|
|
|
app_include_js = "assets/js/erpnext.min.js"
|
|
|
|
app_include_css = "assets/css/erpnext.css"
|
|
|
|
web_include_js = "assets/js/erpnext-web.min.js"
|
2015-02-24 12:20:44 +00:00
|
|
|
web_include_css = "assets/erpnext/css/website.css"
|
2014-05-02 06:44:03 +00:00
|
|
|
|
|
|
|
after_install = "erpnext.setup.install.after_install"
|
|
|
|
|
|
|
|
boot_session = "erpnext.startup.boot.boot_session"
|
|
|
|
notification_config = "erpnext.startup.notifications.get_notification_config"
|
|
|
|
|
2014-10-21 10:46:30 +00:00
|
|
|
on_session_creation = "erpnext.shopping_cart.utils.set_cart_count"
|
|
|
|
on_logout = "erpnext.shopping_cart.utils.clear_cart_count"
|
2015-02-23 16:44:12 +00:00
|
|
|
|
|
|
|
# website
|
|
|
|
update_website_context = "erpnext.shopping_cart.utils.update_website_context"
|
|
|
|
my_account_context = "erpnext.shopping_cart.utils.update_my_account_context"
|
2015-07-08 07:09:27 +00:00
|
|
|
|
2015-04-02 16:30:34 +00:00
|
|
|
email_append_to = ["Job Applicant", "Opportunity", "Issue"]
|
2015-02-23 16:44:12 +00:00
|
|
|
|
2015-07-08 07:09:27 +00:00
|
|
|
calendars = ["Task", "Production Order", "Time Log", "Leave Application"]
|
|
|
|
|
|
|
|
website_generators = ["Item Group", "Item", "Sales Partner"]
|
|
|
|
|
2015-04-16 07:11:42 +00:00
|
|
|
website_context = {
|
2015-04-16 09:39:42 +00:00
|
|
|
"favicon": "/assets/erpnext/images/favicon.png",
|
|
|
|
"splash_image": "/assets/erpnext/images/splash.png"
|
2015-04-16 07:11:42 +00:00
|
|
|
}
|
|
|
|
|
2015-02-23 16:44:12 +00:00
|
|
|
website_route_rules = [
|
|
|
|
{"from_route": "/orders", "to_route": "Sales Order"},
|
2015-05-26 21:37:05 +00:00
|
|
|
{"from_route": "/orders/<path:name>", "to_route": "print", "defaults": {"doctype": "Sales Order"}},
|
2015-02-23 16:44:12 +00:00
|
|
|
{"from_route": "/invoices", "to_route": "Sales Invoice"},
|
2015-05-26 21:37:05 +00:00
|
|
|
{"from_route": "/invoices/<path:name>", "to_route": "print", "defaults": {"doctype": "Sales Invoice"}},
|
2015-02-23 16:44:12 +00:00
|
|
|
{"from_route": "/shipments", "to_route": "Delivery Note"},
|
2015-06-01 11:45:42 +00:00
|
|
|
{"from_route": "/shipments/<path:name>", "to_route": "print", "defaults": {"doctype": "Delivery Note"}}
|
2015-02-23 16:44:12 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
has_website_permission = {
|
|
|
|
"Sales Order": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
|
|
|
"Sales Invoice": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
2015-06-01 11:45:42 +00:00
|
|
|
"Delivery Note": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
|
|
|
"Issue": "erpnext.support.doctype.issue.issue.has_website_permission"
|
2015-02-23 16:44:12 +00:00
|
|
|
}
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2014-05-02 06:44:03 +00:00
|
|
|
dump_report_map = "erpnext.startup.report_data_map.data_map"
|
|
|
|
|
|
|
|
before_tests = "erpnext.setup.utils.before_tests"
|
|
|
|
|
2015-03-24 12:04:58 +00:00
|
|
|
standard_queries = {
|
|
|
|
"Customer": "erpnext.selling.doctype.customer.customer.get_customer_list"
|
|
|
|
}
|
2014-05-02 06:44:03 +00:00
|
|
|
|
|
|
|
doc_events = {
|
|
|
|
"Stock Entry": {
|
2014-11-04 10:02:31 +00:00
|
|
|
"on_submit": "erpnext.stock.doctype.material_request.material_request.update_completed_and_requested_qty",
|
|
|
|
"on_cancel": "erpnext.stock.doctype.material_request.material_request.update_completed_and_requested_qty"
|
2014-05-05 11:16:14 +00:00
|
|
|
},
|
|
|
|
"User": {
|
2014-05-28 13:19:13 +00:00
|
|
|
"validate": "erpnext.hr.doctype.employee.employee.validate_employee_role",
|
2014-05-27 08:16:42 +00:00
|
|
|
"on_update": "erpnext.hr.doctype.employee.employee.update_user_permissions"
|
2014-10-21 10:46:30 +00:00
|
|
|
},
|
2015-05-06 13:15:47 +00:00
|
|
|
"Sales Taxes and Charges Template": {
|
2014-10-21 10:46:30 +00:00
|
|
|
"on_update": "erpnext.shopping_cart.doctype.shopping_cart_settings.shopping_cart_settings.validate_cart_settings"
|
|
|
|
},
|
|
|
|
"Price List": {
|
|
|
|
"on_update": "erpnext.shopping_cart.doctype.shopping_cart_settings.shopping_cart_settings.validate_cart_settings"
|
|
|
|
},
|
2014-05-02 06:44:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
scheduler_events = {
|
2015-07-02 09:11:27 +00:00
|
|
|
"hourly": [
|
|
|
|
"erpnext.controllers.recurring_document.create_recurring_documents"
|
|
|
|
],
|
2014-05-02 06:44:03 +00:00
|
|
|
"daily": [
|
2014-10-08 06:33:19 +00:00
|
|
|
"erpnext.stock.reorder_item.reorder_item",
|
2014-05-02 06:44:03 +00:00
|
|
|
"erpnext.setup.doctype.email_digest.email_digest.send",
|
2014-12-15 06:27:03 +00:00
|
|
|
"erpnext.support.doctype.issue.issue.auto_close_tickets",
|
2015-01-23 09:52:13 +00:00
|
|
|
"erpnext.accounts.doctype.fiscal_year.fiscal_year.auto_create_fiscal_year",
|
|
|
|
"erpnext.hr.doctype.employee.employee.send_birthday_reminders"
|
2014-05-02 06:44:03 +00:00
|
|
|
],
|
|
|
|
"daily_long": [
|
|
|
|
"erpnext.setup.doctype.backup_manager.backup_manager.take_backups_daily"
|
|
|
|
],
|
|
|
|
"weekly_long": [
|
|
|
|
"erpnext.setup.doctype.backup_manager.backup_manager.take_backups_weekly"
|
|
|
|
]
|
|
|
|
}
|
2014-06-26 06:32:55 +00:00
|
|
|
|
2015-05-25 05:20:48 +00:00
|
|
|
default_mail_footer = """<div style="padding: 15px; text-align: center;">
|
2015-05-26 06:43:30 +00:00
|
|
|
<a href="https://erpnext.com?source=via_email_footer" target="_blank" style="color: #8d99a6;">
|
|
|
|
Sent via ERPNext
|
2015-03-27 12:12:03 +00:00
|
|
|
</a>
|
|
|
|
</div>"""
|
2015-02-12 13:28:28 +00:00
|
|
|
|
|
|
|
get_translated_dict = {
|
|
|
|
("page", "setup-wizard"): "frappe.geo.country_info.get_translated_dict",
|
|
|
|
("doctype", "Global Defaults"): "frappe.geo.country_info.get_translated_dict"
|
|
|
|
}
|