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 | |
Anand Doshi | 75042fd | 2014-05-02 19:43:33 +0530 | [diff] [blame] | 28 | permission_query_conditions = { |
| 29 | "Feed": "erpnext.home.doctype.feed.feed.get_permission_query_conditions", |
| 30 | } |
| 31 | |
| 32 | has_permission = { |
| 33 | "Feed": "erpnext.home.doctype.feed.feed.has_permission", |
| 34 | } |
| 35 | |
| 36 | |
Rushabh Mehta | 4ceb20e | 2014-05-02 12:14:03 +0530 | [diff] [blame] | 37 | doc_events = { |
| 38 | "*": { |
| 39 | "on_update": "erpnext.home.update_feed", |
| 40 | "on_submit": "erpnext.home.update_feed" |
| 41 | }, |
| 42 | "Comment": { |
| 43 | "on_update": "erpnext.home.make_comment_feed" |
| 44 | }, |
| 45 | "Stock Entry": { |
| 46 | "on_submit": "erpnext.stock.doctype.material_request.material_request.update_completed_qty", |
| 47 | "on_cancel": "erpnext.stock.doctype.material_request.material_request.update_completed_qty" |
Anand Doshi | 648062d | 2014-05-05 16:46:14 +0530 | [diff] [blame] | 48 | }, |
| 49 | "User": { |
| 50 | "on_update": "erpnext.hr.doctype.employee.employee.update_user_default" |
Rushabh Mehta | 4ceb20e | 2014-05-02 12:14:03 +0530 | [diff] [blame] | 51 | } |
| 52 | } |
| 53 | |
| 54 | scheduler_events = { |
| 55 | "all": [ |
| 56 | "erpnext.support.doctype.support_ticket.get_support_mails.get_support_mails", |
| 57 | "erpnext.hr.doctype.job_applicant.get_job_applications.get_job_applications", |
| 58 | "erpnext.selling.doctype.lead.get_leads.get_leads" |
| 59 | ], |
| 60 | "daily": [ |
| 61 | "erpnext.accounts.doctype.sales_invoice.sales_invoice.manage_recurring_invoices", |
| 62 | "erpnext.stock.utils.reorder_item", |
| 63 | "erpnext.setup.doctype.email_digest.email_digest.send", |
| 64 | "erpnext.support.doctype.support_ticket.support_ticket.auto_close_tickets" |
| 65 | ], |
| 66 | "daily_long": [ |
| 67 | "erpnext.setup.doctype.backup_manager.backup_manager.take_backups_daily" |
| 68 | ], |
| 69 | "weekly_long": [ |
| 70 | "erpnext.setup.doctype.backup_manager.backup_manager.take_backups_weekly" |
| 71 | ] |
| 72 | } |