2015-02-24 06:54:53 +00:00
|
|
|
from __future__ import unicode_literals
|
2021-09-02 11:14:59 +00:00
|
|
|
|
2015-09-11 13:19:59 +00:00
|
|
|
from frappe import _
|
|
|
|
|
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."
|
2015-11-18 11:18:19 +00:00
|
|
|
app_description = """ERP made simple"""
|
2016-12-07 05:38:48 +00:00
|
|
|
app_icon = "fa fa-th"
|
2014-05-02 06:44:03 +00:00
|
|
|
app_color = "#e74c3c"
|
2015-11-05 11:25:10 +00:00
|
|
|
app_email = "info@erpnext.com"
|
|
|
|
app_license = "GNU General Public License (v3)"
|
2015-11-02 05:15:18 +00:00
|
|
|
source_link = "https://github.com/frappe/erpnext"
|
2020-10-19 08:22:35 +00:00
|
|
|
app_logo_url = "/assets/erpnext/images/erpnext-logo.svg"
|
2014-05-02 06:44:03 +00:00
|
|
|
|
2018-11-03 12:33:35 +00:00
|
|
|
|
2020-06-30 12:24:41 +00:00
|
|
|
develop_version = '13.x.x-develop'
|
2017-03-10 04:08:58 +00:00
|
|
|
|
2021-05-07 09:23:42 +00:00
|
|
|
app_include_js = "erpnext.bundle.js"
|
|
|
|
app_include_css = "erpnext.bundle.css"
|
|
|
|
web_include_js = "erpnext-web.bundle.js"
|
|
|
|
web_include_css = "erpnext-web.bundle.css"
|
2021-05-23 08:01:54 +00:00
|
|
|
email_css = "email_erpnext.bundle.css"
|
2014-05-02 06:44:03 +00:00
|
|
|
|
2017-03-13 11:02:46 +00:00
|
|
|
doctype_js = {
|
2020-10-14 12:41:04 +00:00
|
|
|
"Address": "public/js/address.js",
|
2017-03-13 11:02:46 +00:00
|
|
|
"Communication": "public/js/communication.js",
|
2019-03-19 06:18:32 +00:00
|
|
|
"Event": "public/js/event.js",
|
2021-07-26 07:24:35 +00:00
|
|
|
"Newsletter": "public/js/newsletter.js",
|
|
|
|
"Contact": "public/js/contact.js"
|
2017-03-13 11:02:46 +00:00
|
|
|
}
|
|
|
|
|
2020-10-14 14:01:37 +00:00
|
|
|
override_doctype_class = {
|
2020-10-16 09:58:12 +00:00
|
|
|
'Address': 'erpnext.accounts.custom.address.ERPNextAddress'
|
2020-10-14 14:01:37 +00:00
|
|
|
}
|
|
|
|
|
2018-08-24 09:45:56 +00:00
|
|
|
welcome_email = "erpnext.setup.utils.welcome_email"
|
|
|
|
|
2015-11-09 11:23:11 +00:00
|
|
|
# setup wizard
|
|
|
|
setup_wizard_requires = "assets/erpnext/js/setup_wizard.js"
|
2017-12-21 06:25:58 +00:00
|
|
|
setup_wizard_stages = "erpnext.setup.setup_wizard.setup_wizard.get_setup_stages"
|
2017-09-04 05:44:04 +00:00
|
|
|
setup_wizard_test = "erpnext.setup.setup_wizard.test_setup_wizard.run_setup_wizard_test"
|
2015-11-09 11:23:11 +00:00
|
|
|
|
2015-12-31 05:42:48 +00:00
|
|
|
before_install = "erpnext.setup.install.check_setup_wizard_not_completed"
|
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"
|
2017-02-22 10:45:43 +00:00
|
|
|
get_help_messages = "erpnext.utilities.activation.get_help_messages"
|
2019-09-24 07:34:53 +00:00
|
|
|
leaderboards = "erpnext.startup.leaderboard.get_leaderboards"
|
2020-06-18 12:48:41 +00:00
|
|
|
filters_config = "erpnext.startup.filters.get_filters_config"
|
2020-10-22 10:07:47 +00:00
|
|
|
additional_print_settings = "erpnext.controllers.print_settings.get_print_settings"
|
2014-05-02 06:44:03 +00:00
|
|
|
|
2019-10-09 06:11:33 +00:00
|
|
|
on_session_creation = [
|
|
|
|
"erpnext.portal.utils.create_customer_or_supplier",
|
|
|
|
"erpnext.shopping_cart.utils.set_cart_count"
|
|
|
|
]
|
2014-10-21 10:46:30 +00:00
|
|
|
on_logout = "erpnext.shopping_cart.utils.clear_cart_count"
|
2015-02-23 16:44:12 +00:00
|
|
|
|
2019-06-26 05:33:57 +00:00
|
|
|
treeviews = ['Account', 'Cost Center', 'Warehouse', 'Item Group', 'Customer Group', 'Sales Person', 'Territory', 'Assessment Group', 'Department']
|
2016-05-02 07:58:46 +00:00
|
|
|
|
2015-02-23 16:44:12 +00:00
|
|
|
# website
|
2019-05-14 04:52:15 +00:00
|
|
|
update_website_context = ["erpnext.shopping_cart.utils.update_website_context", "erpnext.education.doctype.education_settings.education_settings.update_website_context"]
|
2015-02-23 16:44:12 +00:00
|
|
|
my_account_context = "erpnext.shopping_cart.utils.update_my_account_context"
|
2021-09-14 07:19:08 +00:00
|
|
|
webform_list_context = "erpnext.controllers.website_list_for_contact.get_webform_list_context"
|
2015-07-08 07:09:27 +00:00
|
|
|
|
2018-03-20 07:08:43 +00:00
|
|
|
calendars = ["Task", "Work Order", "Leave Application", "Sales Order", "Holiday List", "Course Schedule"]
|
2015-07-08 07:09:27 +00:00
|
|
|
|
2017-10-17 07:00:34 +00:00
|
|
|
domains = {
|
[Agriculture Domain] (#11663)
* created Soil Analysis, Water Analysis, Weather and Fertilizer doctype
* soil doctype edited and crop doctype added
* minor stuff
* Land Unit + Leaflet
* crop cycle added
* Land Unit changes + Crop cycle
* autoname for plant_analysis
* created Agriculture Task
* minor stuff
* - deleted agriculture_task
- current state after the call
* [Agriculture] modified fertilizer doctype to have a link to Item
This was done so that the `Fertilizer` doctype could track the contents exclusive to the fertilizer, whereas the `Fertilizer Item` could be a seperate entity, so as to leverage the existing ERPNext doctypes
* Added fields to `Water Analysis` doctype
- Collection Datetime
- Laboratory Testing Datetime
- Results Datetime (default to Laboratory Testing Datetime)
* Edited the doctypes `Agrivulture Task`, `Pest` and `Soil Texture`
- Created `agriculture task` doctype
- added fields `Common Name`, `Scientific Name`, `Treatment` and `Treatment Options` to `Pest` doctype
- edited `Soil Texture` doctype to contain a soil texture ternary plot diagram made using SnapSVG. The code was put in public folder so as to be accessible by the entire agriculture module
* Recursively reflect child land unit feature changes on parents
* fixed feature repition bug
* added legeneds to ternary plot
* added stuff
* changes
* fix Task
* reverted the Task Doctype to have naming in the form TASK.#####
* fixed modifications made to TASK doctype
* [dirty commit] added auto create Task from Crop on creation of Crop Cycle
* Changed the Crop Cycle Doctype
- Deleted the "Crop Cycly Task" doctype and its link from "Crop Cycle"
- Creation of a new Project with the same name as the Crop Cycle on creation of a new Crop Cycle
- Creation of all the tasks imported from Agriculture Task doctype of the Crop in the Crop Cycle
* [Agriculture Module] Modifications
- Created childtable doctype "Pest Detected"
- Added childtable "Pest Detected" to Pest
- Modified "Agriculture Task" to include "Start Day" and "End Day" of task
- Modified the code in "Crop Cycle" to create a parent task with same name as Crop Cycle
* [Agriculture Module] fixed Pest doctype not saving issue
* [Agrcilture Module] Changes in Crop Cycle
- removed the creation of a master task on creation of a new crop cycle
- temporary fix to add the pest tasks from the pests added in crop cycle
* land_unit_tree.js fields modified to have field objects instead of just field names
* Revert "land_unit_tree.js modified"
* land_unit_tree.js fields modified to have field objects instead of just field names
* [Agriculture Domain] Converted Agriculture Module to a Domain
- Converted into a Domain field from Select to Link field in Company doctype, linked to Domain doctype
- Agriculture (alpha) is now a Domain
* land_unit area aggregation enabled
* land_unit.py checks feature diff for every ancestor and not just the parent
* Removed unnecessary print messages
* agriculture.py modified to include fixtures
* fixtures added to setup.py inside agriculture module
* [Agriculture Domain] UI tests added
- 'materials' table renamed to 'materials_required' in 'Crop'
- wrote UI test for Crop, Fertilizer, Crop Cycle, Pest, Water Analysis, Soil Texture
- moved creation of tasks from client side to server side in Crop Cycle
- Plant Analysis, Water Analysis, Soil Analysis, Soil Texture docs are now autonamed in the format PAnalysis.#####, WAnalysis.#####, SAnalysis.#####, STexture.##### respectively
- company_name changed in domains.py from 'Schrute Farms.' to 'Schrute Farms'
* [Agriculture Domain] Mostly written server side tests and moved client side code to server side
- moved client side code to server side for Crop, Water Analysis, Pest, Soil Texture,
- wrote server side tests for Crop, Crop Cycle, Fertilizer, Soil Texture, Pest
- NOTE: none of the server side codes were tested
* [Agriculture Domain] All server side tests working locally
* [Agriculture Domain] Testing
- added sample test for Land Unit, which needs to be modified to test multiple things
- modified tests to be independant of each other
* Land Units tests added and area aggregation code migrated to server side
* added land_unit server side tests and on_trash added to land_unit
* Changing field location for start date
* [Agriculture Domain] deleted unnecessary comments
* [Agriculture Domain] reverted changes
* [Agriculture Domain] Modified the code to replace Pest doctype with Land Unit doctype
- Deleted the Pest doctype and replaced it with the more generic Disease doctype
- Deleted the Detected Pest doctype and replaced it with Detected Disease doctype
* [Agriculture Domain] resolves #11654, resolves #11653
* [Agriculture] Added links to soil analysis, soil texture, plant analysis in crop cycle and land unit
- not working perfectly yet
- docs are fetched but not appended
* [Agricuture] Crop Cycle modifed to link with relevent analysis docs, not fully functional
* [Agriculture] added seperate stage for client side agriculture tests
* [Agriculture] minor modification to crop_cycle.js test
* [Agriculture] fixed tests
* upgrade chromedriver in .travis.yml from 2.32 to 2.33
* [Agriculture] added land unit ui test
* [Agriculture] added Agriculture server side test as a seperate stage in travis
* tesing travis.yml
* [Agriculture] Crop Cycle is able to fetch linked analysis docs
* Modified travis.yml for modular server side testing
* [minor fix][Agriculture] in soil_texture
- fixed multiple soil_texture ternary plot creation on refresh
- fixed error on soil composition change
* Update .travis.yml
* removed location field from linked doctypes
* minor fixes and cleanup of agri
* minor fix in agriculture and domain patches
* permissions added to agriculture
- Agriculture Manager and Agriculture User roles were added to all Agriculture doctypes
* [Agriculture]
- Created Agiculture Analysis Criteria and added sample records to it
- All the analysis doctypes now fetch their fields inside a child table, form Agriculture Analysis Criteria
- Also Fertilizer does the same
This was introduced so that, new parameters could be added on demand
* minor changes requested in Agriculture
* minor changes
* minor fix
* Update desktop.py
* Update .travis.yml
2017-12-06 13:06:27 +00:00
|
|
|
'Agriculture': 'erpnext.domains.agriculture',
|
2017-10-17 07:00:34 +00:00
|
|
|
'Distribution': 'erpnext.domains.distribution',
|
|
|
|
'Education': 'erpnext.domains.education',
|
|
|
|
'Healthcare': 'erpnext.domains.healthcare',
|
|
|
|
'Hospitality': 'erpnext.domains.hospitality',
|
|
|
|
'Manufacturing': 'erpnext.domains.manufacturing',
|
2017-12-13 13:06:08 +00:00
|
|
|
'Non Profit': 'erpnext.domains.non_profit',
|
2017-10-17 07:00:34 +00:00
|
|
|
'Retail': 'erpnext.domains.retail',
|
|
|
|
'Services': 'erpnext.domains.services',
|
|
|
|
}
|
|
|
|
|
2017-08-10 15:36:09 +00:00
|
|
|
website_generators = ["Item Group", "Item", "BOM", "Sales Partner",
|
|
|
|
"Job Opening", "Student Admission"]
|
2015-07-08 07:09:27 +00:00
|
|
|
|
2015-04-16 07:11:42 +00:00
|
|
|
website_context = {
|
2021-02-10 10:18:32 +00:00
|
|
|
"favicon": "/assets/erpnext/images/erpnext-favicon.svg",
|
2020-10-19 08:22:35 +00:00
|
|
|
"splash_image": "/assets/erpnext/images/erpnext-logo.svg"
|
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-09-11 13:19:59 +00:00
|
|
|
{"from_route": "/orders/<path:name>", "to_route": "order",
|
|
|
|
"defaults": {
|
|
|
|
"doctype": "Sales Order",
|
2017-07-28 13:24:22 +00:00
|
|
|
"parents": [{"label": _("Orders"), "route": "orders"}]
|
2015-09-11 13:19:59 +00:00
|
|
|
}
|
|
|
|
},
|
2015-02-23 16:44:12 +00:00
|
|
|
{"from_route": "/invoices", "to_route": "Sales Invoice"},
|
2015-09-11 13:19:59 +00:00
|
|
|
{"from_route": "/invoices/<path:name>", "to_route": "order",
|
|
|
|
"defaults": {
|
|
|
|
"doctype": "Sales Invoice",
|
2017-07-28 13:24:22 +00:00
|
|
|
"parents": [{"label": _("Invoices"), "route": "invoices"}]
|
2015-09-11 13:19:59 +00:00
|
|
|
}
|
|
|
|
},
|
2017-07-21 09:49:47 +00:00
|
|
|
{"from_route": "/supplier-quotations", "to_route": "Supplier Quotation"},
|
|
|
|
{"from_route": "/supplier-quotations/<path:name>", "to_route": "order",
|
2016-09-21 11:19:58 +00:00
|
|
|
"defaults": {
|
|
|
|
"doctype": "Supplier Quotation",
|
2017-09-27 07:23:38 +00:00
|
|
|
"parents": [{"label": _("Supplier Quotation"), "route": "supplier-quotations"}]
|
2016-09-21 11:19:58 +00:00
|
|
|
}
|
|
|
|
},
|
2019-10-09 06:11:33 +00:00
|
|
|
{"from_route": "/purchase-orders", "to_route": "Purchase Order"},
|
|
|
|
{"from_route": "/purchase-orders/<path:name>", "to_route": "order",
|
|
|
|
"defaults": {
|
|
|
|
"doctype": "Purchase Order",
|
|
|
|
"parents": [{"label": _("Purchase Order"), "route": "purchase-orders"}]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{"from_route": "/purchase-invoices", "to_route": "Purchase Invoice"},
|
|
|
|
{"from_route": "/purchase-invoices/<path:name>", "to_route": "order",
|
|
|
|
"defaults": {
|
|
|
|
"doctype": "Purchase Invoice",
|
|
|
|
"parents": [{"label": _("Purchase Invoice"), "route": "purchase-invoices"}]
|
|
|
|
}
|
|
|
|
},
|
2017-07-21 09:49:47 +00:00
|
|
|
{"from_route": "/quotations", "to_route": "Quotation"},
|
|
|
|
{"from_route": "/quotations/<path:name>", "to_route": "order",
|
|
|
|
"defaults": {
|
|
|
|
"doctype": "Quotation",
|
2017-08-10 15:36:09 +00:00
|
|
|
"parents": [{"label": _("Quotations"), "route": "quotations"}]
|
2017-07-21 09:49:47 +00:00
|
|
|
}
|
|
|
|
},
|
2015-02-23 16:44:12 +00:00
|
|
|
{"from_route": "/shipments", "to_route": "Delivery Note"},
|
2015-09-11 13:19:59 +00:00
|
|
|
{"from_route": "/shipments/<path:name>", "to_route": "order",
|
|
|
|
"defaults": {
|
2015-11-26 12:52:03 +00:00
|
|
|
"doctype": "Delivery Note",
|
2017-07-28 13:24:22 +00:00
|
|
|
"parents": [{"label": _("Shipments"), "route": "shipments"}]
|
2015-09-11 13:19:59 +00:00
|
|
|
}
|
2016-02-19 11:57:23 +00:00
|
|
|
},
|
2016-03-03 08:30:35 +00:00
|
|
|
{"from_route": "/rfq", "to_route": "Request for Quotation"},
|
|
|
|
{"from_route": "/rfq/<path:name>", "to_route": "rfq",
|
|
|
|
"defaults": {
|
|
|
|
"doctype": "Request for Quotation",
|
2017-07-28 13:24:22 +00:00
|
|
|
"parents": [{"label": _("Request for Quotation"), "route": "rfq"}]
|
2016-03-03 08:30:35 +00:00
|
|
|
}
|
|
|
|
},
|
2016-07-04 08:58:09 +00:00
|
|
|
{"from_route": "/addresses", "to_route": "Address"},
|
|
|
|
{"from_route": "/addresses/<path:name>", "to_route": "addresses",
|
|
|
|
"defaults": {
|
|
|
|
"doctype": "Address",
|
2017-07-28 13:24:22 +00:00
|
|
|
"parents": [{"label": _("Addresses"), "route": "addresses"}]
|
2016-07-04 08:58:09 +00:00
|
|
|
}
|
|
|
|
},
|
2016-02-19 11:57:23 +00:00
|
|
|
{"from_route": "/jobs", "to_route": "Job Opening"},
|
2016-09-15 09:18:13 +00:00
|
|
|
{"from_route": "/admissions", "to_route": "Student Admission"},
|
2017-07-25 05:23:12 +00:00
|
|
|
{"from_route": "/boms", "to_route": "BOM"},
|
|
|
|
{"from_route": "/timesheets", "to_route": "Timesheet"},
|
2018-11-13 06:37:16 +00:00
|
|
|
{"from_route": "/material-requests", "to_route": "Material Request"},
|
|
|
|
{"from_route": "/material-requests/<path:name>", "to_route": "material_request_info",
|
|
|
|
"defaults": {
|
|
|
|
"doctype": "Material Request",
|
|
|
|
"parents": [{"label": _("Material Request"), "route": "material-requests"}]
|
|
|
|
}
|
|
|
|
},
|
2021-07-01 11:47:34 +00:00
|
|
|
{"from_route": "/project", "to_route": "Project"}
|
2015-02-23 16:44:12 +00:00
|
|
|
]
|
|
|
|
|
2017-03-08 07:03:43 +00:00
|
|
|
standard_portal_menu_items = [
|
2018-07-16 12:38:53 +00:00
|
|
|
{"title": _("Personal Details"), "route": "/personal-details", "reference_doctype": "Patient", "role": "Patient"},
|
2016-04-01 06:23:50 +00:00
|
|
|
{"title": _("Projects"), "route": "/project", "reference_doctype": "Project"},
|
2016-09-23 16:21:51 +00:00
|
|
|
{"title": _("Request for Quotations"), "route": "/rfq", "reference_doctype": "Request for Quotation", "role": "Supplier"},
|
2017-07-21 09:49:47 +00:00
|
|
|
{"title": _("Supplier Quotation"), "route": "/supplier-quotations", "reference_doctype": "Supplier Quotation", "role": "Supplier"},
|
2019-10-09 06:11:33 +00:00
|
|
|
{"title": _("Purchase Orders"), "route": "/purchase-orders", "reference_doctype": "Purchase Order", "role": "Supplier"},
|
|
|
|
{"title": _("Purchase Invoices"), "route": "/purchase-invoices", "reference_doctype": "Purchase Invoice", "role": "Supplier"},
|
2017-07-21 09:49:47 +00:00
|
|
|
{"title": _("Quotations"), "route": "/quotations", "reference_doctype": "Quotation", "role":"Customer"},
|
2016-09-23 16:21:51 +00:00
|
|
|
{"title": _("Orders"), "route": "/orders", "reference_doctype": "Sales Order", "role":"Customer"},
|
|
|
|
{"title": _("Invoices"), "route": "/invoices", "reference_doctype": "Sales Invoice", "role":"Customer"},
|
|
|
|
{"title": _("Shipments"), "route": "/shipments", "reference_doctype": "Delivery Note", "role":"Customer"},
|
|
|
|
{"title": _("Issues"), "route": "/issues", "reference_doctype": "Issue", "role":"Customer"},
|
2016-07-19 08:47:33 +00:00
|
|
|
{"title": _("Addresses"), "route": "/addresses", "reference_doctype": "Address"},
|
2017-09-18 10:30:34 +00:00
|
|
|
{"title": _("Timesheets"), "route": "/timesheets", "reference_doctype": "Timesheet", "role":"Customer"},
|
2017-09-13 07:22:30 +00:00
|
|
|
{"title": _("Lab Test"), "route": "/lab-test", "reference_doctype": "Lab Test", "role":"Patient"},
|
2018-07-16 12:38:53 +00:00
|
|
|
{"title": _("Prescription"), "route": "/prescription", "reference_doctype": "Patient Encounter", "role":"Patient"},
|
2017-09-18 10:30:34 +00:00
|
|
|
{"title": _("Patient Appointment"), "route": "/patient-appointments", "reference_doctype": "Patient Appointment", "role":"Patient"},
|
|
|
|
{"title": _("Fees"), "route": "/fees", "reference_doctype": "Fees", "role":"Student"},
|
2017-10-05 09:01:31 +00:00
|
|
|
{"title": _("Newsletter"), "route": "/newsletters", "reference_doctype": "Newsletter"},
|
2019-10-09 06:11:33 +00:00
|
|
|
{"title": _("Admission"), "route": "/admissions", "reference_doctype": "Student Admission", "role": "Student"},
|
|
|
|
{"title": _("Certification"), "route": "/certification", "reference_doctype": "Certification Application", "role": "Non Profit Portal User"},
|
2018-11-13 06:37:16 +00:00
|
|
|
{"title": _("Material Request"), "route": "/material-requests", "reference_doctype": "Material Request", "role": "Customer"},
|
2019-12-18 10:51:50 +00:00
|
|
|
{"title": _("Appointment Booking"), "route": "/book_appointment"},
|
2016-09-23 16:21:51 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
default_roles = [
|
2017-01-13 18:55:22 +00:00
|
|
|
{'role': 'Customer', 'doctype':'Contact', 'email_field': 'email_id'},
|
|
|
|
{'role': 'Supplier', 'doctype':'Contact', 'email_field': 'email_id'},
|
2017-07-25 05:23:12 +00:00
|
|
|
{'role': 'Student', 'doctype':'Student', 'email_field': 'student_email_id'},
|
2016-03-30 06:59:48 +00:00
|
|
|
]
|
|
|
|
|
2019-06-07 07:18:13 +00:00
|
|
|
sounds = [
|
|
|
|
{"name": "incoming-call", "src": "/assets/erpnext/sounds/incoming-call.mp3", "volume": 0.2},
|
|
|
|
{"name": "call-disconnect", "src": "/assets/erpnext/sounds/call-disconnect.mp3", "volume": 0.2},
|
|
|
|
]
|
|
|
|
|
2021-03-26 11:04:22 +00:00
|
|
|
has_upload_permission = {
|
|
|
|
"Employee": "erpnext.hr.doctype.employee.employee.has_upload_permission"
|
|
|
|
}
|
|
|
|
|
2015-02-23 16:44:12 +00:00
|
|
|
has_website_permission = {
|
|
|
|
"Sales Order": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
2017-07-21 09:49:47 +00:00
|
|
|
"Quotation": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
2015-02-23 16:44:12 +00:00
|
|
|
"Sales Invoice": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
2016-09-21 11:19:58 +00:00
|
|
|
"Supplier Quotation": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
2019-10-09 06:11:33 +00:00
|
|
|
"Purchase Order": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
|
|
|
"Purchase Invoice": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
2018-11-13 06:37:16 +00:00
|
|
|
"Material Request": "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",
|
2017-07-25 05:23:12 +00:00
|
|
|
"Issue": "erpnext.support.doctype.issue.issue.has_website_permission",
|
2017-09-13 07:22:30 +00:00
|
|
|
"Timesheet": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
|
|
|
"Lab Test": "erpnext.healthcare.web_form.lab_test.lab_test.has_website_permission",
|
2018-07-16 12:38:53 +00:00
|
|
|
"Patient Encounter": "erpnext.healthcare.web_form.prescription.prescription.has_website_permission",
|
|
|
|
"Patient Appointment": "erpnext.healthcare.web_form.patient_appointments.patient_appointments.has_website_permission",
|
|
|
|
"Patient": "erpnext.healthcare.web_form.personal_details.personal_details.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 = {
|
2018-11-23 06:07:58 +00:00
|
|
|
"Customer": "erpnext.selling.doctype.customer.customer.get_customer_list",
|
|
|
|
"Healthcare Practitioner": "erpnext.healthcare.doctype.healthcare_practitioner.healthcare_practitioner.get_practitioner_list"
|
2015-03-24 12:04:58 +00:00
|
|
|
}
|
2014-05-02 06:44:03 +00:00
|
|
|
|
|
|
|
doc_events = {
|
2020-11-28 14:54:06 +00:00
|
|
|
"*": {
|
2021-06-14 13:35:52 +00:00
|
|
|
"validate": "erpnext.support.doctype.service_level_agreement.service_level_agreement.apply",
|
2020-11-28 14:54:06 +00:00
|
|
|
"on_submit": "erpnext.healthcare.doctype.patient_history_settings.patient_history_settings.create_medical_record",
|
2021-01-14 18:49:14 +00:00
|
|
|
"on_update_after_submit": "erpnext.healthcare.doctype.patient_history_settings.patient_history_settings.update_medical_record",
|
2020-11-28 14:54:06 +00:00
|
|
|
"on_cancel": "erpnext.healthcare.doctype.patient_history_settings.patient_history_settings.delete_medical_record"
|
|
|
|
},
|
2014-05-02 06:44:03 +00:00
|
|
|
"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": {
|
2017-06-13 09:56:35 +00:00
|
|
|
"after_insert": "frappe.contacts.doctype.contact.contact.update_contact",
|
2014-05-28 13:19:13 +00:00
|
|
|
"validate": "erpnext.hr.doctype.employee.employee.validate_employee_role",
|
2017-03-31 17:31:45 +00:00
|
|
|
"on_update": ["erpnext.hr.doctype.employee.employee.update_user_permissions",
|
|
|
|
"erpnext.portal.utils.set_default_role"]
|
2014-10-21 10:46:30 +00:00
|
|
|
},
|
2021-06-14 13:35:52 +00:00
|
|
|
"Communication": {
|
2021-07-14 06:13:10 +00:00
|
|
|
"on_update": [
|
|
|
|
"erpnext.support.doctype.service_level_agreement.service_level_agreement.update_hold_time",
|
|
|
|
"erpnext.support.doctype.issue.issue.set_first_response_time"
|
|
|
|
]
|
2021-06-14 13:35:52 +00:00
|
|
|
},
|
2021-08-19 12:10:00 +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"
|
|
|
|
},
|
2016-04-22 13:23:21 +00:00
|
|
|
"Website Settings": {
|
|
|
|
"validate": "erpnext.portal.doctype.products_settings.products_settings.home_page_is_products"
|
2016-07-21 14:56:46 +00:00
|
|
|
},
|
2020-11-24 02:39:17 +00:00
|
|
|
"Tax Category": {
|
|
|
|
"validate": "erpnext.regional.india.utils.validate_tax_category"
|
|
|
|
},
|
2018-02-21 05:37:33 +00:00
|
|
|
"Sales Invoice": {
|
2020-03-24 06:01:41 +00:00
|
|
|
"on_submit": [
|
|
|
|
"erpnext.regional.create_transaction_log",
|
|
|
|
"erpnext.regional.italy.utils.sales_invoice_on_submit",
|
|
|
|
"erpnext.erpnext_integrations.taxjar_integration.create_transaction"
|
|
|
|
],
|
|
|
|
"on_cancel": [
|
|
|
|
"erpnext.regional.italy.utils.sales_invoice_on_cancel",
|
|
|
|
"erpnext.erpnext_integrations.taxjar_integration.delete_transaction"
|
|
|
|
],
|
2021-04-07 10:39:58 +00:00
|
|
|
"on_trash": "erpnext.regional.check_deletion_permission",
|
|
|
|
"validate": [
|
2021-04-12 05:25:43 +00:00
|
|
|
"erpnext.regional.india.utils.validate_document_name",
|
|
|
|
"erpnext.regional.india.utils.update_taxable_values"
|
2021-04-07 10:39:58 +00:00
|
|
|
]
|
2018-02-21 05:37:33 +00:00
|
|
|
},
|
2020-06-03 05:29:37 +00:00
|
|
|
"Purchase Invoice": {
|
2020-09-09 15:24:30 +00:00
|
|
|
"validate": [
|
2021-05-14 06:47:41 +00:00
|
|
|
"erpnext.regional.india.utils.validate_reverse_charge_transaction",
|
|
|
|
"erpnext.regional.india.utils.update_itc_availed_fields",
|
2020-09-09 15:24:30 +00:00
|
|
|
"erpnext.regional.united_arab_emirates.utils.update_grand_total_for_rcm",
|
2021-05-14 06:47:41 +00:00
|
|
|
"erpnext.regional.united_arab_emirates.utils.validate_returns",
|
|
|
|
"erpnext.regional.india.utils.update_taxable_values"
|
|
|
|
]
|
2020-06-03 05:29:37 +00:00
|
|
|
},
|
2016-07-21 14:56:46 +00:00
|
|
|
"Payment Entry": {
|
2021-07-15 10:06:54 +00:00
|
|
|
"validate": "erpnext.regional.india.utils.update_place_of_supply",
|
2020-07-23 10:15:03 +00:00
|
|
|
"on_submit": ["erpnext.regional.create_transaction_log", "erpnext.accounts.doctype.payment_request.payment_request.update_payment_req_status", "erpnext.accounts.doctype.dunning.dunning.resolve_dunning"],
|
2018-03-09 07:49:52 +00:00
|
|
|
"on_trash": "erpnext.regional.check_deletion_permission"
|
2017-06-21 11:52:38 +00:00
|
|
|
},
|
|
|
|
'Address': {
|
2021-08-30 07:40:18 +00:00
|
|
|
'validate': [
|
|
|
|
'erpnext.regional.india.utils.validate_gstin_for_india',
|
|
|
|
'erpnext.regional.italy.utils.set_state_code',
|
|
|
|
'erpnext.regional.india.utils.update_gst_category',
|
|
|
|
'erpnext.healthcare.utils.update_address_links'
|
|
|
|
],
|
2018-01-10 12:18:03 +00:00
|
|
|
},
|
2021-02-22 13:58:45 +00:00
|
|
|
'Supplier': {
|
|
|
|
'validate': 'erpnext.regional.india.utils.validate_pan_for_india'
|
|
|
|
},
|
2019-12-10 10:25:05 +00:00
|
|
|
('Sales Invoice', 'Sales Order', 'Delivery Note', 'Purchase Invoice', 'Purchase Order', 'Purchase Receipt'): {
|
|
|
|
'validate': ['erpnext.regional.india.utils.set_place_of_supply']
|
2018-07-03 04:40:04 +00:00
|
|
|
},
|
2019-08-09 13:53:04 +00:00
|
|
|
"Contact": {
|
|
|
|
"on_trash": "erpnext.support.doctype.issue.issue.update_issue",
|
2021-01-12 18:01:40 +00:00
|
|
|
"after_insert": "erpnext.telephony.doctype.call_log.call_log.link_existing_conversations",
|
2021-08-30 07:40:18 +00:00
|
|
|
"validate": ["erpnext.crm.utils.update_lead_phone_numbers", "erpnext.healthcare.utils.update_patient_email_and_phone_numbers"]
|
2019-08-09 13:53:04 +00:00
|
|
|
},
|
2019-07-12 08:26:36 +00:00
|
|
|
"Email Unsubscribe": {
|
|
|
|
"after_insert": "erpnext.crm.doctype.email_campaign.email_campaign.unsubscribe_recipient"
|
2020-03-24 06:01:41 +00:00
|
|
|
},
|
|
|
|
('Quotation', 'Sales Order', 'Sales Invoice'): {
|
|
|
|
'validate': ["erpnext.erpnext_integrations.taxjar_integration.set_sales_tax"]
|
2021-08-20 09:10:12 +00:00
|
|
|
},
|
|
|
|
"Company": {
|
|
|
|
"on_trash": "erpnext.regional.india.utils.delete_gst_settings_for_company"
|
2021-09-03 07:00:57 +00:00
|
|
|
},
|
|
|
|
"Integration Request": {
|
|
|
|
"validate": "erpnext.accounts.doctype.payment_request.payment_request.validate_payment"
|
2016-04-22 13:23:21 +00:00
|
|
|
}
|
2014-05-02 06:44:03 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 07:29:52 +00:00
|
|
|
# On cancel event Payment Entry will be exempted and all linked submittable doctype will get cancelled.
|
|
|
|
# to maintain data integrity we exempted payment entry. it will un-link when sales invoice get cancelled.
|
|
|
|
# if payment entry not in auto cancel exempted doctypes it will cancel payment entry.
|
|
|
|
auto_cancel_exempted_doctypes= [
|
2020-10-23 15:03:30 +00:00
|
|
|
"Payment Entry",
|
|
|
|
"Inpatient Medication Entry"
|
2020-01-13 07:29:52 +00:00
|
|
|
]
|
2019-12-02 12:07:46 +00:00
|
|
|
|
2021-04-13 13:13:57 +00:00
|
|
|
after_migrate = ["erpnext.setup.install.update_select_perm_after_install"]
|
|
|
|
|
2014-05-02 06:44:03 +00:00
|
|
|
scheduler_events = {
|
2020-09-07 13:19:06 +00:00
|
|
|
"cron": {
|
|
|
|
"0/30 * * * *": [
|
2020-09-10 08:27:44 +00:00
|
|
|
"erpnext.utilities.doctype.video.video.update_youtube_data",
|
2020-09-07 13:19:06 +00:00
|
|
|
]
|
|
|
|
},
|
2019-01-17 07:19:45 +00:00
|
|
|
"all": [
|
2020-02-24 16:38:45 +00:00
|
|
|
"erpnext.projects.doctype.project.project.project_status_update_reminder",
|
2020-04-25 12:07:24 +00:00
|
|
|
"erpnext.healthcare.doctype.patient_appointment.patient_appointment.send_appointment_reminder",
|
2020-04-17 19:15:18 +00:00
|
|
|
"erpnext.crm.doctype.social_media_post.social_media_post.process_scheduled_social_media_posts"
|
2019-01-17 07:19:45 +00:00
|
|
|
],
|
2015-07-02 09:11:27 +00:00
|
|
|
"hourly": [
|
2018-03-01 10:33:03 +00:00
|
|
|
'erpnext.hr.doctype.daily_work_summary_group.daily_work_summary_group.trigger_emails',
|
2018-09-05 11:46:57 +00:00
|
|
|
"erpnext.accounts.doctype.subscription.subscription.process_all",
|
2019-01-07 13:31:47 +00:00
|
|
|
"erpnext.erpnext_integrations.doctype.amazon_mws_settings.amazon_mws_settings.schedule_get_order_details",
|
|
|
|
"erpnext.accounts.doctype.gl_entry.gl_entry.rename_gle_sle_docs",
|
2019-07-03 05:04:31 +00:00
|
|
|
"erpnext.erpnext_integrations.doctype.plaid_settings.plaid_settings.automatic_synchronization",
|
2019-01-17 07:19:45 +00:00
|
|
|
"erpnext.projects.doctype.project.project.hourly_reminder",
|
2019-05-10 18:19:42 +00:00
|
|
|
"erpnext.projects.doctype.project.project.collect_project_status",
|
2019-06-25 10:57:06 +00:00
|
|
|
"erpnext.hr.doctype.shift_type.shift_type.process_auto_attendance_for_all_shifts",
|
2021-06-14 13:35:52 +00:00
|
|
|
"erpnext.support.doctype.service_level_agreement.service_level_agreement.set_service_level_agreement_variance"
|
2021-05-27 11:35:36 +00:00
|
|
|
],
|
|
|
|
"hourly_long": [
|
2021-03-24 06:00:53 +00:00
|
|
|
"erpnext.stock.doctype.repost_item_valuation.repost_item_valuation.repost_entries"
|
2015-07-02 09:11:27 +00:00
|
|
|
],
|
2014-05-02 06:44:03 +00:00
|
|
|
"daily": [
|
2014-10-08 06:33:19 +00:00
|
|
|
"erpnext.stock.reorder_item.reorder_item",
|
2014-12-15 06:27:03 +00:00
|
|
|
"erpnext.support.doctype.issue.issue.auto_close_tickets",
|
2017-02-16 14:06:59 +00:00
|
|
|
"erpnext.crm.doctype.opportunity.opportunity.auto_close_opportunity",
|
2016-11-08 07:09:33 +00:00
|
|
|
"erpnext.controllers.accounts_controller.update_invoice_status",
|
2015-01-23 09:52:13 +00:00
|
|
|
"erpnext.accounts.doctype.fiscal_year.fiscal_year.auto_create_fiscal_year",
|
2021-08-24 14:49:22 +00:00
|
|
|
"erpnext.hr.doctype.employee.employee_reminders.send_work_anniversary_reminders",
|
|
|
|
"erpnext.hr.doctype.employee.employee_reminders.send_birthday_reminders",
|
2016-03-09 07:10:56 +00:00
|
|
|
"erpnext.projects.doctype.task.task.set_tasks_as_overdue",
|
2017-10-17 09:47:24 +00:00
|
|
|
"erpnext.assets.doctype.asset.depreciation.post_depreciation_entries",
|
2018-02-21 09:45:43 +00:00
|
|
|
"erpnext.hr.doctype.daily_work_summary_group.daily_work_summary_group.send_summary",
|
2017-07-18 05:05:12 +00:00
|
|
|
"erpnext.stock.doctype.serial_no.serial_no.update_maintenance_status",
|
2017-07-24 17:12:30 +00:00
|
|
|
"erpnext.buying.doctype.supplier_scorecard.supplier_scorecard.refresh_scorecards",
|
2017-07-31 15:15:36 +00:00
|
|
|
"erpnext.setup.doctype.company.company.cache_companies_monthly_sales_history",
|
2018-05-15 09:55:14 +00:00
|
|
|
"erpnext.assets.doctype.asset.asset.update_maintenance_status",
|
2018-05-23 09:36:45 +00:00
|
|
|
"erpnext.assets.doctype.asset.asset.make_post_gl_entry",
|
2018-06-28 18:13:23 +00:00
|
|
|
"erpnext.crm.doctype.contract.contract.update_status_for_contracts",
|
2018-12-25 12:12:31 +00:00
|
|
|
"erpnext.projects.doctype.project.project.update_project_sales_billing",
|
2019-01-22 10:26:39 +00:00
|
|
|
"erpnext.projects.doctype.project.project.send_project_status_email_to_users",
|
2019-03-19 11:17:56 +00:00
|
|
|
"erpnext.quality_management.doctype.quality_review.quality_review.review",
|
2019-05-07 04:57:01 +00:00
|
|
|
"erpnext.support.doctype.service_level_agreement.service_level_agreement.check_agreement_status",
|
2019-07-21 21:53:40 +00:00
|
|
|
"erpnext.crm.doctype.email_campaign.email_campaign.send_email_to_leads_or_contacts",
|
2019-11-15 11:12:32 +00:00
|
|
|
"erpnext.crm.doctype.email_campaign.email_campaign.set_email_campaign_status",
|
2020-04-14 17:35:11 +00:00
|
|
|
"erpnext.selling.doctype.quotation.quotation.set_expired_status",
|
2020-04-15 06:46:31 +00:00
|
|
|
"erpnext.healthcare.doctype.patient_appointment.patient_appointment.update_appointment_status",
|
2020-08-11 10:53:47 +00:00
|
|
|
"erpnext.buying.doctype.supplier_quotation.supplier_quotation.set_expired_status",
|
2021-01-21 11:06:15 +00:00
|
|
|
"erpnext.accounts.doctype.process_statement_of_accounts.process_statement_of_accounts.send_auto_email",
|
|
|
|
"erpnext.non_profit.doctype.membership.membership.set_expired_status"
|
2018-09-05 05:31:35 +00:00
|
|
|
],
|
|
|
|
"daily_long": [
|
2019-10-30 09:13:58 +00:00
|
|
|
"erpnext.setup.doctype.email_digest.email_digest.send",
|
2019-08-05 09:17:02 +00:00
|
|
|
"erpnext.manufacturing.doctype.bom_update_tool.bom_update_tool.update_latest_price_in_all_boms",
|
|
|
|
"erpnext.hr.doctype.leave_ledger_entry.leave_ledger_entry.process_expired_allocation",
|
2020-02-26 05:14:24 +00:00
|
|
|
"erpnext.hr.utils.generate_leave_encashment",
|
2020-11-25 10:35:17 +00:00
|
|
|
"erpnext.hr.utils.allocate_earned_leaves",
|
2021-03-12 10:21:34 +00:00
|
|
|
"erpnext.loan_management.doctype.process_loan_security_shortfall.process_loan_security_shortfall.create_process_loan_security_shortfall",
|
|
|
|
"erpnext.loan_management.doctype.process_loan_interest_accrual.process_loan_interest_accrual.process_loan_interest_accrual_for_term_loans",
|
2020-09-28 13:08:41 +00:00
|
|
|
"erpnext.crm.doctype.lead.lead.daily_open_lead"
|
2018-09-05 05:31:35 +00:00
|
|
|
],
|
2021-08-24 14:49:22 +00:00
|
|
|
"weekly": [
|
|
|
|
"erpnext.hr.doctype.employee.employee_reminders.send_reminders_in_advance_weekly"
|
|
|
|
],
|
|
|
|
"monthly": [
|
|
|
|
"erpnext.hr.doctype.employee.employee_reminders.send_reminders_in_advance_monthly"
|
|
|
|
],
|
2019-05-01 07:19:44 +00:00
|
|
|
"monthly_long": [
|
2020-06-01 06:00:34 +00:00
|
|
|
"erpnext.accounts.deferred_revenue.process_deferred_accounting",
|
2021-03-12 10:21:34 +00:00
|
|
|
"erpnext.loan_management.doctype.process_loan_interest_accrual.process_loan_interest_accrual.process_loan_interest_accrual_for_demand_loans"
|
2014-05-02 06:44:03 +00:00
|
|
|
]
|
|
|
|
}
|
2014-06-26 06:32:55 +00:00
|
|
|
|
2017-07-13 13:07:18 +00:00
|
|
|
email_brand_image = "assets/erpnext/images/erpnext-logo.jpg"
|
|
|
|
|
2017-07-31 10:46:22 +00:00
|
|
|
default_mail_footer = """
|
|
|
|
<span>
|
|
|
|
Sent via
|
|
|
|
<a class="text-muted" href="https://erpnext.com?source=via_email_footer" target="_blank">
|
|
|
|
ERPNext
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
"""
|
2015-02-12 13:28:28 +00:00
|
|
|
|
|
|
|
get_translated_dict = {
|
|
|
|
("doctype", "Global Defaults"): "frappe.geo.country_info.get_translated_dict"
|
|
|
|
}
|
2016-03-28 07:51:43 +00:00
|
|
|
|
|
|
|
bot_parsers = [
|
|
|
|
'erpnext.utilities.bot.FindItemBot',
|
2016-04-01 06:23:50 +00:00
|
|
|
]
|
2016-06-25 14:21:48 +00:00
|
|
|
|
|
|
|
get_site_info = 'erpnext.utilities.get_site_info'
|
2016-11-08 15:05:50 +00:00
|
|
|
|
2017-03-14 09:16:05 +00:00
|
|
|
payment_gateway_enabled = "erpnext.accounts.utils.create_payment_gateway_account"
|
2017-07-13 09:30:56 +00:00
|
|
|
|
2020-04-14 07:32:03 +00:00
|
|
|
communication_doctypes = ["Customer", "Supplier"]
|
|
|
|
|
2020-11-17 22:16:13 +00:00
|
|
|
accounting_dimension_doctypes = ["GL Entry", "Sales Invoice", "Purchase Invoice", "Payment Entry", "Asset",
|
|
|
|
"Expense Claim", "Expense Claim Detail", "Expense Taxes and Charges", "Stock Entry", "Budget", "Payroll Entry", "Delivery Note",
|
|
|
|
"Sales Invoice Item", "Purchase Invoice Item", "Purchase Order Item", "Journal Entry Account", "Material Request Item", "Delivery Note Item",
|
|
|
|
"Purchase Receipt Item", "Stock Entry Detail", "Payment Entry Deduction", "Sales Taxes and Charges", "Purchase Taxes and Charges", "Shipping Rule",
|
|
|
|
"Landed Cost Item", "Asset Value Adjustment", "Loyalty Program", "Fee Schedule", "Fee Structure", "Stock Reconciliation",
|
|
|
|
"Travel Request", "Fees", "POS Profile", "Opening Invoice Creation Tool", "Opening Invoice Creation Tool Item", "Subscription",
|
|
|
|
"Subscription Plan"
|
|
|
|
]
|
|
|
|
|
2017-07-13 09:30:56 +00:00
|
|
|
regional_overrides = {
|
2018-02-21 05:37:33 +00:00
|
|
|
'France': {
|
|
|
|
'erpnext.tests.test_regional.test_method': 'erpnext.regional.france.utils.test_method'
|
|
|
|
},
|
2017-07-13 09:30:56 +00:00
|
|
|
'India': {
|
2017-07-17 12:32:31 +00:00
|
|
|
'erpnext.tests.test_regional.test_method': 'erpnext.regional.india.utils.test_method',
|
|
|
|
'erpnext.controllers.taxes_and_totals.get_itemised_tax_breakup_header': 'erpnext.regional.india.utils.get_itemised_tax_breakup_header',
|
2018-06-05 05:57:53 +00:00
|
|
|
'erpnext.controllers.taxes_and_totals.get_itemised_tax_breakup_data': 'erpnext.regional.india.utils.get_itemised_tax_breakup_data',
|
2018-06-14 12:26:16 +00:00
|
|
|
'erpnext.accounts.party.get_regional_address_details': 'erpnext.regional.india.utils.get_regional_address_details',
|
2021-02-19 09:00:23 +00:00
|
|
|
'erpnext.controllers.taxes_and_totals.get_regional_round_off_accounts': 'erpnext.regional.india.utils.get_regional_round_off_accounts',
|
2018-06-14 12:26:16 +00:00
|
|
|
'erpnext.hr.utils.calculate_annual_eligible_hra_exemption': 'erpnext.regional.india.utils.calculate_annual_eligible_hra_exemption',
|
2020-07-02 15:48:29 +00:00
|
|
|
'erpnext.hr.utils.calculate_hra_exemption_for_period': 'erpnext.regional.india.utils.calculate_hra_exemption_for_period',
|
2021-08-03 10:27:11 +00:00
|
|
|
'erpnext.assets.doctype.asset.asset.get_depreciation_amount': 'erpnext.regional.india.utils.get_depreciation_amount',
|
|
|
|
'erpnext.stock.doctype.item.item.set_item_tax_from_hsn_code': 'erpnext.regional.india.utils.set_item_tax_from_hsn_code'
|
2017-12-28 08:50:13 +00:00
|
|
|
},
|
|
|
|
'United Arab Emirates': {
|
2020-09-09 15:24:30 +00:00
|
|
|
'erpnext.controllers.taxes_and_totals.update_itemised_tax_data': 'erpnext.regional.united_arab_emirates.utils.update_itemised_tax_data',
|
|
|
|
'erpnext.accounts.doctype.purchase_invoice.purchase_invoice.make_regional_gl_entries': 'erpnext.regional.united_arab_emirates.utils.make_regional_gl_entries',
|
2017-12-28 08:50:13 +00:00
|
|
|
},
|
|
|
|
'Saudi Arabia': {
|
|
|
|
'erpnext.controllers.taxes_and_totals.update_itemised_tax_data': 'erpnext.regional.united_arab_emirates.utils.update_itemised_tax_data'
|
2019-03-14 07:01:25 +00:00
|
|
|
},
|
|
|
|
'Italy': {
|
|
|
|
'erpnext.controllers.taxes_and_totals.update_itemised_tax_data': 'erpnext.regional.italy.utils.update_itemised_tax_data',
|
|
|
|
'erpnext.controllers.accounts_controller.validate_regional': 'erpnext.regional.italy.utils.sales_invoice_validate',
|
2017-07-13 09:30:56 +00:00
|
|
|
}
|
2018-05-15 09:55:14 +00:00
|
|
|
}
|
2019-03-20 07:55:48 +00:00
|
|
|
user_privacy_documents = [
|
|
|
|
{
|
|
|
|
'doctype': 'Lead',
|
|
|
|
'match_field': 'email_id',
|
|
|
|
'personal_fields': ['phone', 'mobile_no', 'fax', 'website', 'lead_name'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'doctype': 'Opportunity',
|
|
|
|
'match_field': 'contact_email',
|
|
|
|
'personal_fields': ['contact_mobile', 'contact_display', 'customer_name'],
|
|
|
|
}
|
2019-04-05 05:32:25 +00:00
|
|
|
]
|
2019-09-26 19:29:48 +00:00
|
|
|
|
2019-09-30 08:10:02 +00:00
|
|
|
# ERPNext doctypes for Global Search
|
2019-10-02 11:02:53 +00:00
|
|
|
global_search_doctypes = {
|
|
|
|
"Default": [
|
|
|
|
{"doctype": "Customer", "index": 0},
|
|
|
|
{"doctype": "Supplier", "index": 1},
|
|
|
|
{"doctype": "Item", "index": 2},
|
|
|
|
{"doctype": "Warehouse", "index": 3},
|
|
|
|
{"doctype": "Account", "index": 4},
|
|
|
|
{"doctype": "Employee", "index": 5},
|
|
|
|
{"doctype": "BOM", "index": 6},
|
|
|
|
{"doctype": "Sales Invoice", "index": 7},
|
|
|
|
{"doctype": "Sales Order", "index": 8},
|
|
|
|
{"doctype": "Quotation", "index": 9},
|
|
|
|
{"doctype": "Work Order", "index": 10},
|
2020-12-08 04:13:29 +00:00
|
|
|
{"doctype": "Purchase Order", "index": 11},
|
|
|
|
{"doctype": "Purchase Receipt", "index": 12},
|
|
|
|
{"doctype": "Purchase Invoice", "index": 13},
|
|
|
|
{"doctype": "Delivery Note", "index": 14},
|
|
|
|
{"doctype": "Stock Entry", "index": 15},
|
|
|
|
{"doctype": "Material Request", "index": 16},
|
|
|
|
{"doctype": "Delivery Trip", "index": 17},
|
|
|
|
{"doctype": "Pick List", "index": 18},
|
|
|
|
{"doctype": "Salary Slip", "index": 19},
|
|
|
|
{"doctype": "Leave Application", "index": 20},
|
|
|
|
{"doctype": "Expense Claim", "index": 21},
|
|
|
|
{"doctype": "Payment Entry", "index": 22},
|
|
|
|
{"doctype": "Lead", "index": 23},
|
|
|
|
{"doctype": "Opportunity", "index": 24},
|
|
|
|
{"doctype": "Item Price", "index": 25},
|
|
|
|
{"doctype": "Purchase Taxes and Charges Template", "index": 26},
|
|
|
|
{"doctype": "Sales Taxes and Charges", "index": 27},
|
|
|
|
{"doctype": "Asset", "index": 28},
|
|
|
|
{"doctype": "Project", "index": 29},
|
|
|
|
{"doctype": "Task", "index": 30},
|
|
|
|
{"doctype": "Timesheet", "index": 31},
|
|
|
|
{"doctype": "Issue", "index": 32},
|
|
|
|
{"doctype": "Serial No", "index": 33},
|
|
|
|
{"doctype": "Batch", "index": 34},
|
|
|
|
{"doctype": "Branch", "index": 35},
|
|
|
|
{"doctype": "Department", "index": 36},
|
|
|
|
{"doctype": "Employee Grade", "index": 37},
|
|
|
|
{"doctype": "Designation", "index": 38},
|
|
|
|
{"doctype": "Job Opening", "index": 39},
|
|
|
|
{"doctype": "Job Applicant", "index": 40},
|
|
|
|
{"doctype": "Job Offer", "index": 41},
|
|
|
|
{"doctype": "Salary Structure Assignment", "index": 42},
|
|
|
|
{"doctype": "Appraisal", "index": 43},
|
|
|
|
{"doctype": "Loan", "index": 44},
|
|
|
|
{"doctype": "Maintenance Schedule", "index": 45},
|
|
|
|
{"doctype": "Maintenance Visit", "index": 46},
|
|
|
|
{"doctype": "Warranty Claim", "index": 47},
|
2019-10-02 11:02:53 +00:00
|
|
|
],
|
|
|
|
"Healthcare": [
|
|
|
|
{'doctype': 'Patient', 'index': 1},
|
|
|
|
{'doctype': 'Medical Department', 'index': 2},
|
|
|
|
{'doctype': 'Vital Signs', 'index': 3},
|
|
|
|
{'doctype': 'Healthcare Practitioner', 'index': 4},
|
|
|
|
{'doctype': 'Patient Appointment', 'index': 5},
|
|
|
|
{'doctype': 'Healthcare Service Unit', 'index': 6},
|
|
|
|
{'doctype': 'Patient Encounter', 'index': 7},
|
|
|
|
{'doctype': 'Antibiotic', 'index': 8},
|
|
|
|
{'doctype': 'Diagnosis', 'index': 9},
|
|
|
|
{'doctype': 'Lab Test', 'index': 10},
|
|
|
|
{'doctype': 'Clinical Procedure', 'index': 11},
|
|
|
|
{'doctype': 'Inpatient Record', 'index': 12},
|
|
|
|
{'doctype': 'Sample Collection', 'index': 13},
|
|
|
|
{'doctype': 'Patient Medical Record', 'index': 14},
|
|
|
|
{'doctype': 'Appointment Type', 'index': 15},
|
|
|
|
{'doctype': 'Fee Validity', 'index': 16},
|
|
|
|
{'doctype': 'Practitioner Schedule', 'index': 17},
|
|
|
|
{'doctype': 'Dosage Form', 'index': 18},
|
|
|
|
{'doctype': 'Lab Test Sample', 'index': 19},
|
|
|
|
{'doctype': 'Prescription Duration', 'index': 20},
|
|
|
|
{'doctype': 'Prescription Dosage', 'index': 21},
|
|
|
|
{'doctype': 'Sensitivity', 'index': 22},
|
|
|
|
{'doctype': 'Complaint', 'index': 23},
|
|
|
|
{'doctype': 'Medical Code', 'index': 24},
|
|
|
|
],
|
|
|
|
"Education": [
|
|
|
|
{'doctype': 'Article', 'index': 1},
|
|
|
|
{'doctype': 'Video', 'index': 2},
|
|
|
|
{'doctype': 'Topic', 'index': 3},
|
|
|
|
{'doctype': 'Course', 'index': 4},
|
|
|
|
{'doctype': 'Program', 'index': 5},
|
|
|
|
{'doctype': 'Quiz', 'index': 6},
|
|
|
|
{'doctype': 'Question', 'index': 7},
|
|
|
|
{'doctype': 'Fee Schedule', 'index': 8},
|
|
|
|
{'doctype': 'Fee Structure', 'index': 9},
|
|
|
|
{'doctype': 'Fees', 'index': 10},
|
|
|
|
{'doctype': 'Student Group', 'index': 11},
|
|
|
|
{'doctype': 'Student', 'index': 12},
|
|
|
|
{'doctype': 'Instructor', 'index': 13},
|
|
|
|
{'doctype': 'Course Activity', 'index': 14},
|
|
|
|
{'doctype': 'Quiz Activity', 'index': 15},
|
|
|
|
{'doctype': 'Course Enrollment', 'index': 16},
|
|
|
|
{'doctype': 'Program Enrollment', 'index': 17},
|
|
|
|
{'doctype': 'Student Language', 'index': 18},
|
|
|
|
{'doctype': 'Student Applicant', 'index': 19},
|
|
|
|
{'doctype': 'Assessment Result', 'index': 20},
|
|
|
|
{'doctype': 'Assessment Plan', 'index': 21},
|
|
|
|
{'doctype': 'Grading Scale', 'index': 22},
|
|
|
|
{'doctype': 'Guardian', 'index': 23},
|
|
|
|
{'doctype': 'Student Leave Application', 'index': 24},
|
|
|
|
{'doctype': 'Student Log', 'index': 25},
|
|
|
|
{'doctype': 'Room', 'index': 26},
|
|
|
|
{'doctype': 'Course Schedule', 'index': 27},
|
|
|
|
{'doctype': 'Student Attendance', 'index': 28},
|
|
|
|
{'doctype': 'Announcement', 'index': 29},
|
|
|
|
{'doctype': 'Student Category', 'index': 30},
|
|
|
|
{'doctype': 'Assessment Group', 'index': 31},
|
|
|
|
{'doctype': 'Student Batch Name', 'index': 32},
|
|
|
|
{'doctype': 'Assessment Criteria', 'index': 33},
|
|
|
|
{'doctype': 'Academic Year', 'index': 34},
|
|
|
|
{'doctype': 'Academic Term', 'index': 35},
|
|
|
|
{'doctype': 'School House', 'index': 36},
|
|
|
|
{'doctype': 'Student Admission', 'index': 37},
|
|
|
|
{'doctype': 'Fee Category', 'index': 38},
|
|
|
|
{'doctype': 'Assessment Code', 'index': 39},
|
|
|
|
{'doctype': 'Discussion', 'index': 40},
|
|
|
|
],
|
|
|
|
"Agriculture": [
|
|
|
|
{'doctype': 'Weather', 'index': 1},
|
|
|
|
{'doctype': 'Soil Texture', 'index': 2},
|
|
|
|
{'doctype': 'Water Analysis', 'index': 3},
|
|
|
|
{'doctype': 'Soil Analysis', 'index': 4},
|
|
|
|
{'doctype': 'Plant Analysis', 'index': 5},
|
|
|
|
{'doctype': 'Agriculture Analysis Criteria', 'index': 6},
|
|
|
|
{'doctype': 'Disease', 'index': 7},
|
|
|
|
{'doctype': 'Crop', 'index': 8},
|
|
|
|
{'doctype': 'Fertilizer', 'index': 9},
|
|
|
|
{'doctype': 'Crop Cycle', 'index': 10}
|
|
|
|
],
|
|
|
|
"Non Profit": [
|
|
|
|
{'doctype': 'Certified Consultant', 'index': 1},
|
|
|
|
{'doctype': 'Certification Application', 'index': 2},
|
|
|
|
{'doctype': 'Volunteer', 'index': 3},
|
|
|
|
{'doctype': 'Membership', 'index': 4},
|
|
|
|
{'doctype': 'Member', 'index': 5},
|
|
|
|
{'doctype': 'Donor', 'index': 6},
|
|
|
|
{'doctype': 'Chapter', 'index': 7},
|
|
|
|
{'doctype': 'Grant Application', 'index': 8},
|
|
|
|
{'doctype': 'Volunteer Type', 'index': 9},
|
|
|
|
{'doctype': 'Donor Type', 'index': 10},
|
|
|
|
{'doctype': 'Membership Type', 'index': 11}
|
|
|
|
],
|
|
|
|
"Hospitality": [
|
|
|
|
{'doctype': 'Hotel Room', 'index': 0},
|
|
|
|
{'doctype': 'Hotel Room Reservation', 'index': 1},
|
|
|
|
{'doctype': 'Hotel Room Pricing', 'index': 2},
|
|
|
|
{'doctype': 'Hotel Room Package', 'index': 3},
|
|
|
|
{'doctype': 'Hotel Room Type', 'index': 4}
|
|
|
|
]
|
2020-10-16 09:58:12 +00:00
|
|
|
}
|
2021-01-12 18:01:40 +00:00
|
|
|
|
|
|
|
additional_timeline_content = {
|
|
|
|
'*': ['erpnext.telephony.doctype.call_log.call_log.get_linked_call_logs']
|
|
|
|
}
|