blob: 45f7b8122afaf877a3f11a342644e75a81fee27b [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Rushabh Mehta30430792013-12-13 15:33:40 +05302# License: GNU General Public License v3. See license.txt
3
4from __future__ import unicode_literals
Rushabh Mehta30430792013-12-13 15:33:40 +05305
6def get_notification_config():
Rushabh Mehtae9138832015-02-25 12:04:49 +05307 return { "for_doctype":
Rushabh Mehta30430792013-12-13 15:33:40 +05308 {
Rushabh Mehta905f8322015-03-02 13:01:39 +05309 "Issue": {"status": "Open"},
10 "Warranty Claim": {"status": "Open"},
Rushabh Mehta13ec41a2015-12-10 12:31:36 +053011 "Task": {"status": "Overdue"},
Rushabh Mehta856ee102015-07-17 15:03:18 +053012 "Project": {"status": "Open"},
Rushabh Mehta905f8322015-03-02 13:01:39 +053013 "Lead": {"status": "Open"},
14 "Contact": {"status": "Open"},
Rushabh Mehtaf579cf92015-04-13 16:58:47 +053015 "Opportunity": {"status": "Open"},
16 "Quotation": {"docstatus": 0},
Rushabh Mehtad10ba852015-10-02 12:42:48 +053017 "Sales Order": {
patilsangrambf2b5112016-02-22 16:24:23 +053018 "status": ("not in", ("Completed", "Closed")),
Rushabh Mehtad10ba852015-10-02 12:42:48 +053019 "docstatus": ("<", 2)
20 },
Rushabh Mehta905f8322015-03-02 13:01:39 +053021 "Journal Entry": {"docstatus": 0},
22 "Sales Invoice": { "outstanding_amount": (">", 0), "docstatus": ("<", 2) },
23 "Purchase Invoice": {"docstatus": 0},
24 "Leave Application": {"status": "Open"},
25 "Expense Claim": {"approval_status": "Draft"},
26 "Job Applicant": {"status": "Open"},
27 "Purchase Receipt": {"docstatus": 0},
28 "Delivery Note": {"docstatus": 0},
29 "Stock Entry": {"docstatus": 0},
Rushabh Mehta44038532016-02-27 16:24:34 +053030 "Material Request": {
31 "status": ("not in", ("Stopped",)),
32 "per_ordered": ("<", 100)
33 },
Rushabh Mehtad10ba852015-10-02 12:42:48 +053034 "Purchase Order": {
patilsangrambf2b5112016-02-22 16:24:23 +053035 "status": ("not in", ("Completed", "Closed")),
Rushabh Mehtad10ba852015-10-02 12:42:48 +053036 "docstatus": ("<", 2)
37 },
Rushabh Mehtae9138832015-02-25 12:04:49 +053038 "Production Order": { "status": "In Process" },
Rushabh Mehta905f8322015-03-02 13:01:39 +053039 "BOM": {"docstatus": 0},
40 "Timesheet": {"docstatus": 0},
41 "Time Log": {"status": "Draft"},
Anand Doshi1a2e6bf2015-08-14 16:52:55 +053042 "Time Log Batch": {"status": "Draft"}
Rushabh Mehta30430792013-12-13 15:33:40 +053043 }
Rushabh Mehtae9138832015-02-25 12:04:49 +053044 }