2015-03-03 09:25:30 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-12-13 10:03:40 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
def get_notification_config():
|
2015-02-25 06:34:49 +00:00
|
|
|
return { "for_doctype":
|
2013-12-13 10:03:40 +00:00
|
|
|
{
|
2015-03-02 07:31:39 +00:00
|
|
|
"Issue": {"status": "Open"},
|
|
|
|
"Warranty Claim": {"status": "Open"},
|
2015-12-10 07:01:36 +00:00
|
|
|
"Task": {"status": "Overdue"},
|
2015-07-17 09:33:18 +00:00
|
|
|
"Project": {"status": "Open"},
|
2016-04-14 12:00:40 +00:00
|
|
|
"Item": {"total_projected_qty": ("<", 0)},
|
2016-04-08 11:56:53 +00:00
|
|
|
"Customer": {"status": "Open"},
|
|
|
|
"Supplier": {"status": "Open"},
|
2015-03-02 07:31:39 +00:00
|
|
|
"Lead": {"status": "Open"},
|
|
|
|
"Contact": {"status": "Open"},
|
2015-04-13 11:28:47 +00:00
|
|
|
"Opportunity": {"status": "Open"},
|
|
|
|
"Quotation": {"docstatus": 0},
|
2015-10-02 07:12:48 +00:00
|
|
|
"Sales Order": {
|
2016-02-22 10:54:23 +00:00
|
|
|
"status": ("not in", ("Completed", "Closed")),
|
2015-10-02 07:12:48 +00:00
|
|
|
"docstatus": ("<", 2)
|
|
|
|
},
|
2015-03-02 07:31:39 +00:00
|
|
|
"Journal Entry": {"docstatus": 0},
|
2016-09-05 09:05:23 +00:00
|
|
|
"Sales Invoice": {
|
|
|
|
"outstanding_amount": (">", 0),
|
|
|
|
"docstatus": ("<", 2)
|
|
|
|
},
|
|
|
|
"Purchase Invoice": {
|
|
|
|
"outstanding_amount": (">", 0),
|
|
|
|
"docstatus": ("<", 2)
|
|
|
|
},
|
2016-11-04 19:44:29 +00:00
|
|
|
"Payment Entry": {"docstatus": 0},
|
2015-03-02 07:31:39 +00:00
|
|
|
"Leave Application": {"status": "Open"},
|
|
|
|
"Expense Claim": {"approval_status": "Draft"},
|
|
|
|
"Job Applicant": {"status": "Open"},
|
2016-09-05 09:05:23 +00:00
|
|
|
"Delivery Note": {
|
|
|
|
"status": ("not in", ("Completed", "Closed")),
|
|
|
|
"docstatus": ("<", 2)
|
|
|
|
},
|
2015-03-02 07:31:39 +00:00
|
|
|
"Stock Entry": {"docstatus": 0},
|
2016-02-27 10:54:34 +00:00
|
|
|
"Material Request": {
|
2016-03-07 14:05:34 +00:00
|
|
|
"docstatus": ("<", 2),
|
2016-02-27 10:54:34 +00:00
|
|
|
"status": ("not in", ("Stopped",)),
|
|
|
|
"per_ordered": ("<", 100)
|
|
|
|
},
|
2016-04-11 12:04:25 +00:00
|
|
|
"Request for Quotation": { "docstatus": 0 },
|
|
|
|
"Supplier Quotation": {"docstatus": 0},
|
2015-10-02 07:12:48 +00:00
|
|
|
"Purchase Order": {
|
2016-02-22 10:54:23 +00:00
|
|
|
"status": ("not in", ("Completed", "Closed")),
|
2015-10-02 07:12:48 +00:00
|
|
|
"docstatus": ("<", 2)
|
|
|
|
},
|
2016-09-05 09:05:23 +00:00
|
|
|
"Purchase Receipt": {
|
|
|
|
"status": ("not in", ("Completed", "Closed")),
|
|
|
|
"docstatus": ("<", 2)
|
|
|
|
},
|
2016-04-14 12:00:40 +00:00
|
|
|
"Production Order": { "status": ("in", ("Draft", "Not Started", "In Process")) },
|
2015-03-02 07:31:39 +00:00
|
|
|
"BOM": {"docstatus": 0},
|
2016-07-06 14:42:58 +00:00
|
|
|
"Timesheet": {"status": "Draft"}
|
2013-12-13 10:03:40 +00:00
|
|
|
}
|
2015-02-25 06:34:49 +00:00
|
|
|
}
|