Rushabh Mehta | 4ceb20e | 2014-05-02 12:14:03 +0530 | [diff] [blame] | 1 | app_name = "erpnext" |
| 2 | app_title = "ERPNext" |
| 3 | app_publisher = "Web Notes Technologies Pvt. Ltd. and Contributors" |
| 4 | app_description = "Open Source Enterprise Resource Planning for Small and Midsized Organizations" |
| 5 | app_icon = "icon-th" |
| 6 | app_color = "#e74c3c" |
| 7 | app_version = "4.0.0-wip" |
| 8 | |
| 9 | app_include_js = "assets/js/erpnext.min.js" |
| 10 | app_include_css = "assets/css/erpnext.css" |
| 11 | web_include_js = "assets/js/erpnext-web.min.js" |
| 12 | |
| 13 | after_install = "erpnext.setup.install.after_install" |
| 14 | |
| 15 | boot_session = "erpnext.startup.boot.boot_session" |
| 16 | notification_config = "erpnext.startup.notifications.get_notification_config" |
| 17 | |
| 18 | dump_report_map = "erpnext.startup.report_data_map.data_map" |
| 19 | update_website_context = "erpnext.startup.webutils.update_website_context" |
| 20 | |
| 21 | mail_footer = "erpnext.startup.mail_footer" |
| 22 | |
| 23 | on_session_creation = "erpnext.startup.event_handlers.on_session_creation" |
| 24 | before_tests = "erpnext.setup.utils.before_tests" |
| 25 | |
| 26 | standard_queries = "Customer:erpnext.selling.doctype.customer.customer.get_customer_list" |
| 27 | |
| 28 | doc_events = { |
| 29 | "*": { |
| 30 | "on_update": "erpnext.home.update_feed", |
| 31 | "on_submit": "erpnext.home.update_feed" |
| 32 | }, |
| 33 | "Comment": { |
| 34 | "on_update": "erpnext.home.make_comment_feed" |
| 35 | }, |
| 36 | "Stock Entry": { |
| 37 | "on_submit": "erpnext.stock.doctype.material_request.material_request.update_completed_qty", |
| 38 | "on_cancel": "erpnext.stock.doctype.material_request.material_request.update_completed_qty" |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | scheduler_events = { |
| 43 | "all": [ |
| 44 | "erpnext.support.doctype.support_ticket.get_support_mails.get_support_mails", |
| 45 | "erpnext.hr.doctype.job_applicant.get_job_applications.get_job_applications", |
| 46 | "erpnext.selling.doctype.lead.get_leads.get_leads" |
| 47 | ], |
| 48 | "daily": [ |
| 49 | "erpnext.accounts.doctype.sales_invoice.sales_invoice.manage_recurring_invoices", |
| 50 | "erpnext.stock.utils.reorder_item", |
| 51 | "erpnext.setup.doctype.email_digest.email_digest.send", |
| 52 | "erpnext.support.doctype.support_ticket.support_ticket.auto_close_tickets" |
| 53 | ], |
| 54 | "daily_long": [ |
| 55 | "erpnext.setup.doctype.backup_manager.backup_manager.take_backups_daily" |
| 56 | ], |
| 57 | "weekly_long": [ |
| 58 | "erpnext.setup.doctype.backup_manager.backup_manager.take_backups_weekly" |
| 59 | ] |
| 60 | } |