5c62368a65
* 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
261 lines
11 KiB
Python
261 lines
11 KiB
Python
from __future__ import unicode_literals
|
|
from frappe import _
|
|
|
|
app_name = "erpnext"
|
|
app_title = "ERPNext"
|
|
app_publisher = "Frappe Technologies Pvt. Ltd."
|
|
app_description = """ERP made simple"""
|
|
app_icon = "fa fa-th"
|
|
app_color = "#e74c3c"
|
|
app_email = "info@erpnext.com"
|
|
app_license = "GNU General Public License (v3)"
|
|
source_link = "https://github.com/frappe/erpnext"
|
|
|
|
develop_version = '9.x.x-develop'
|
|
|
|
error_report_email = "support@erpnext.com"
|
|
|
|
app_include_js = "assets/js/erpnext.min.js"
|
|
app_include_css = "assets/css/erpnext.css"
|
|
web_include_js = "assets/js/erpnext-web.min.js"
|
|
web_include_css = "assets/erpnext/css/website.css"
|
|
|
|
doctype_js = {
|
|
"Communication": "public/js/communication.js",
|
|
}
|
|
|
|
# setup wizard
|
|
setup_wizard_requires = "assets/erpnext/js/setup_wizard.js"
|
|
setup_wizard_complete = "erpnext.setup.setup_wizard.setup_wizard.setup_complete"
|
|
setup_wizard_test = "erpnext.setup.setup_wizard.test_setup_wizard.run_setup_wizard_test"
|
|
|
|
before_install = "erpnext.setup.install.check_setup_wizard_not_completed"
|
|
after_install = "erpnext.setup.install.after_install"
|
|
|
|
boot_session = "erpnext.startup.boot.boot_session"
|
|
notification_config = "erpnext.startup.notifications.get_notification_config"
|
|
get_help_messages = "erpnext.utilities.activation.get_help_messages"
|
|
get_user_progress_slides = "erpnext.utilities.user_progress.get_user_progress_slides"
|
|
update_and_get_user_progress = "erpnext.utilities.user_progress_utils.update_default_domain_actions_and_get_state"
|
|
|
|
on_session_creation = "erpnext.shopping_cart.utils.set_cart_count"
|
|
on_logout = "erpnext.shopping_cart.utils.clear_cart_count"
|
|
|
|
treeviews = ['Account', 'Cost Center', 'Warehouse', 'Item Group', 'Customer Group', 'Sales Person', 'Territory', 'Assessment Group']
|
|
|
|
# website
|
|
update_website_context = "erpnext.shopping_cart.utils.update_website_context"
|
|
my_account_context = "erpnext.shopping_cart.utils.update_my_account_context"
|
|
|
|
email_append_to = ["Job Applicant", "Lead", "Opportunity", "Issue"]
|
|
|
|
calendars = ["Task", "Production Order", "Leave Application", "Sales Order", "Holiday List", "Course Schedule"]
|
|
|
|
|
|
|
|
domains = {
|
|
'Agriculture': 'erpnext.domains.agriculture',
|
|
'Distribution': 'erpnext.domains.distribution',
|
|
'Education': 'erpnext.domains.education',
|
|
'Healthcare': 'erpnext.domains.healthcare',
|
|
'Hospitality': 'erpnext.domains.hospitality',
|
|
'Manufacturing': 'erpnext.domains.manufacturing',
|
|
'Retail': 'erpnext.domains.retail',
|
|
'Services': 'erpnext.domains.services',
|
|
}
|
|
|
|
website_generators = ["Item Group", "Item", "BOM", "Sales Partner",
|
|
"Job Opening", "Student Admission"]
|
|
|
|
website_context = {
|
|
"favicon": "/assets/erpnext/images/favicon.png",
|
|
"splash_image": "/assets/erpnext/images/erp-icon.svg"
|
|
}
|
|
|
|
website_route_rules = [
|
|
{"from_route": "/orders", "to_route": "Sales Order"},
|
|
{"from_route": "/orders/<path:name>", "to_route": "order",
|
|
"defaults": {
|
|
"doctype": "Sales Order",
|
|
"parents": [{"label": _("Orders"), "route": "orders"}]
|
|
}
|
|
},
|
|
{"from_route": "/invoices", "to_route": "Sales Invoice"},
|
|
{"from_route": "/invoices/<path:name>", "to_route": "order",
|
|
"defaults": {
|
|
"doctype": "Sales Invoice",
|
|
"parents": [{"label": _("Invoices"), "route": "invoices"}]
|
|
}
|
|
},
|
|
{"from_route": "/supplier-quotations", "to_route": "Supplier Quotation"},
|
|
{"from_route": "/supplier-quotations/<path:name>", "to_route": "order",
|
|
"defaults": {
|
|
"doctype": "Supplier Quotation",
|
|
"parents": [{"label": _("Supplier Quotation"), "route": "supplier-quotations"}]
|
|
}
|
|
},
|
|
{"from_route": "/quotations", "to_route": "Quotation"},
|
|
{"from_route": "/quotations/<path:name>", "to_route": "order",
|
|
"defaults": {
|
|
"doctype": "Quotation",
|
|
"parents": [{"label": _("Quotations"), "route": "quotations"}]
|
|
}
|
|
},
|
|
{"from_route": "/shipments", "to_route": "Delivery Note"},
|
|
{"from_route": "/shipments/<path:name>", "to_route": "order",
|
|
"defaults": {
|
|
"doctype": "Delivery Note",
|
|
"parents": [{"label": _("Shipments"), "route": "shipments"}]
|
|
}
|
|
},
|
|
{"from_route": "/rfq", "to_route": "Request for Quotation"},
|
|
{"from_route": "/rfq/<path:name>", "to_route": "rfq",
|
|
"defaults": {
|
|
"doctype": "Request for Quotation",
|
|
"parents": [{"label": _("Request for Quotation"), "route": "rfq"}]
|
|
}
|
|
},
|
|
{"from_route": "/addresses", "to_route": "Address"},
|
|
{"from_route": "/addresses/<path:name>", "to_route": "addresses",
|
|
"defaults": {
|
|
"doctype": "Address",
|
|
"parents": [{"label": _("Addresses"), "route": "addresses"}]
|
|
}
|
|
},
|
|
{"from_route": "/jobs", "to_route": "Job Opening"},
|
|
{"from_route": "/admissions", "to_route": "Student Admission"},
|
|
{"from_route": "/boms", "to_route": "BOM"},
|
|
{"from_route": "/timesheets", "to_route": "Timesheet"},
|
|
{"from_route": "/grant-application", "to_route": "Grant Application"},
|
|
{"from_route": "/chapters", "to_route": "Chapter"},
|
|
]
|
|
|
|
standard_portal_menu_items = [
|
|
{"title": _("Projects"), "route": "/project", "reference_doctype": "Project"},
|
|
{"title": _("Request for Quotations"), "route": "/rfq", "reference_doctype": "Request for Quotation", "role": "Supplier"},
|
|
{"title": _("Supplier Quotation"), "route": "/supplier-quotations", "reference_doctype": "Supplier Quotation", "role": "Supplier"},
|
|
{"title": _("Quotations"), "route": "/quotations", "reference_doctype": "Quotation", "role":"Customer"},
|
|
{"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"},
|
|
{"title": _("Addresses"), "route": "/addresses", "reference_doctype": "Address"},
|
|
{"title": _("Timesheets"), "route": "/timesheets", "reference_doctype": "Timesheet", "role":"Customer"},
|
|
{"title": _("Timesheets"), "route": "/timesheets", "reference_doctype": "Timesheet", "role":"Customer"},
|
|
{"title": _("Lab Test"), "route": "/lab-test", "reference_doctype": "Lab Test", "role":"Patient"},
|
|
{"title": _("Prescription"), "route": "/prescription", "reference_doctype": "Consultation", "role":"Patient"},
|
|
{"title": _("Patient Appointment"), "route": "/patient-appointments", "reference_doctype": "Patient Appointment", "role":"Patient"},
|
|
{"title": _("Fees"), "route": "/fees", "reference_doctype": "Fees", "role":"Student"},
|
|
{"title": _("Newsletter"), "route": "/newsletters", "reference_doctype": "Newsletter"},
|
|
{"title": _("Admission"), "route": "/admissions", "reference_doctype": "Student Admission"},
|
|
{"title": _("Grant Application"), "route": "/grant-application", "reference_doctype": "Grant Application", "role": "Non Profit Portal User"},
|
|
{"title": _("Chapter"), "route": "/chapters", "reference_doctype": "Chapter"}
|
|
]
|
|
|
|
default_roles = [
|
|
{'role': 'Customer', 'doctype':'Contact', 'email_field': 'email_id'},
|
|
{'role': 'Supplier', 'doctype':'Contact', 'email_field': 'email_id'},
|
|
{'role': 'Student', 'doctype':'Student', 'email_field': 'student_email_id'},
|
|
]
|
|
|
|
has_website_permission = {
|
|
"Sales Order": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
|
"Quotation": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
|
"Sales Invoice": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
|
"Supplier Quotation": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
|
"Delivery Note": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
|
"Issue": "erpnext.support.doctype.issue.issue.has_website_permission",
|
|
"Timesheet": "erpnext.controllers.website_list_for_contact.has_website_permission",
|
|
"Lab Test": "erpnext.healthcare.web_form.lab_test.lab_test.has_website_permission",
|
|
"Consultation": "erpnext.healthcare.web_form.prescription.prescription.has_website_permission",
|
|
"Patient Appointment": "erpnext.healthcare.web_form.patient_appointments.patient_appointments.has_website_permission"
|
|
}
|
|
|
|
dump_report_map = "erpnext.startup.report_data_map.data_map"
|
|
|
|
before_tests = "erpnext.setup.utils.before_tests"
|
|
|
|
standard_queries = {
|
|
"Customer": "erpnext.selling.doctype.customer.customer.get_customer_list"
|
|
}
|
|
|
|
doc_events = {
|
|
"Stock Entry": {
|
|
"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"
|
|
},
|
|
"User": {
|
|
"after_insert": "frappe.contacts.doctype.contact.contact.update_contact",
|
|
"validate": "erpnext.hr.doctype.employee.employee.validate_employee_role",
|
|
"on_update": ["erpnext.hr.doctype.employee.employee.update_user_permissions",
|
|
"erpnext.portal.utils.set_default_role"]
|
|
},
|
|
("Sales Taxes and Charges Template", 'Price List'): {
|
|
"on_update": "erpnext.shopping_cart.doctype.shopping_cart_settings.shopping_cart_settings.validate_cart_settings"
|
|
},
|
|
|
|
"Website Settings": {
|
|
"validate": "erpnext.portal.doctype.products_settings.products_settings.home_page_is_products"
|
|
},
|
|
"Payment Entry": {
|
|
"on_submit": "erpnext.accounts.doctype.payment_request.payment_request.make_status_as_paid"
|
|
},
|
|
'Address': {
|
|
'validate': 'erpnext.regional.india.utils.validate_gstin_for_india'
|
|
}
|
|
}
|
|
|
|
scheduler_events = {
|
|
"hourly": [
|
|
"erpnext.accounts.doctype.subscription.subscription.make_subscription_entry",
|
|
'erpnext.hr.doctype.daily_work_summary_settings.daily_work_summary_settings.trigger_emails'
|
|
],
|
|
"daily": [
|
|
"erpnext.stock.reorder_item.reorder_item",
|
|
"erpnext.setup.doctype.email_digest.email_digest.send",
|
|
"erpnext.support.doctype.issue.issue.auto_close_tickets",
|
|
"erpnext.crm.doctype.opportunity.opportunity.auto_close_opportunity",
|
|
"erpnext.controllers.accounts_controller.update_invoice_status",
|
|
"erpnext.accounts.doctype.fiscal_year.fiscal_year.auto_create_fiscal_year",
|
|
"erpnext.hr.doctype.employee.employee.send_birthday_reminders",
|
|
"erpnext.projects.doctype.task.task.set_tasks_as_overdue",
|
|
"erpnext.assets.doctype.asset.depreciation.post_depreciation_entries",
|
|
"erpnext.hr.doctype.daily_work_summary_settings.daily_work_summary_settings.send_summary",
|
|
"erpnext.stock.doctype.serial_no.serial_no.update_maintenance_status",
|
|
"erpnext.buying.doctype.supplier_scorecard.supplier_scorecard.refresh_scorecards",
|
|
"erpnext.setup.doctype.company.company.cache_companies_monthly_sales_history",
|
|
"erpnext.manufacturing.doctype.bom_update_tool.bom_update_tool.update_latest_price_in_all_boms"
|
|
]
|
|
}
|
|
|
|
email_brand_image = "assets/erpnext/images/erpnext-logo.jpg"
|
|
|
|
default_mail_footer = """
|
|
<span>
|
|
Sent via
|
|
<a class="text-muted" href="https://erpnext.com?source=via_email_footer" target="_blank">
|
|
ERPNext
|
|
</a>
|
|
</span>
|
|
"""
|
|
|
|
get_translated_dict = {
|
|
("doctype", "Global Defaults"): "frappe.geo.country_info.get_translated_dict"
|
|
}
|
|
|
|
bot_parsers = [
|
|
'erpnext.utilities.bot.FindItemBot',
|
|
]
|
|
|
|
get_site_info = 'erpnext.utilities.get_site_info'
|
|
|
|
payment_gateway_enabled = "erpnext.accounts.utils.create_payment_gateway_account"
|
|
|
|
regional_overrides = {
|
|
'India': {
|
|
'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',
|
|
'erpnext.controllers.taxes_and_totals.get_itemised_tax_breakup_data': 'erpnext.regional.india.utils.get_itemised_tax_breakup_data'
|
|
}
|
|
}
|