mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 16:34:46 +00:00
[sample] add help for sample tasks and make them into notifications
This commit is contained in:
@@ -8,7 +8,7 @@ def get_notification_config():
|
||||
{
|
||||
"Issue": {"status": "Open"},
|
||||
"Warranty Claim": {"status": "Open"},
|
||||
"Task": {"status": "Overdue"},
|
||||
"Task": {"status": ("in", ("Open", "Overdue"))},
|
||||
"Project": {"status": "Open"},
|
||||
"Item": {"total_projected_qty": ("<", 0)},
|
||||
"Customer": {"status": "Open"},
|
||||
@@ -23,11 +23,11 @@ def get_notification_config():
|
||||
},
|
||||
"Journal Entry": {"docstatus": 0},
|
||||
"Sales Invoice": {
|
||||
"outstanding_amount": (">", 0),
|
||||
"docstatus": ("<", 2)
|
||||
"outstanding_amount": (">", 0),
|
||||
"docstatus": ("<", 2)
|
||||
},
|
||||
"Purchase Invoice": {
|
||||
"outstanding_amount": (">", 0),
|
||||
"outstanding_amount": (">", 0),
|
||||
"docstatus": ("<", 2)
|
||||
},
|
||||
"Payment Entry": {"docstatus": 0},
|
||||
|
||||
Reference in New Issue
Block a user