blob: 66bc83da188a8e9044658185a9b74f1537a79e7d [file] [log] [blame]
Rushabh Mehta30430792013-12-13 15:33:40 +05301# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
2# License: GNU General Public License v3. See license.txt
3
4from __future__ import unicode_literals
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05305import frappe
Rushabh Mehta30430792013-12-13 15:33:40 +05306
7def get_notification_config():
8 return { "for_doctype":
9 {
Rushabh Mehtabd9b62f2014-11-28 11:45:02 +053010 "Issue": {"status":"Open"},
Rushabh Mehta46e03ea2015-02-17 10:45:50 +053011 "Warranty Claim": {"status":"Open"},
Rushabh Mehta30430792013-12-13 15:33:40 +053012 "Task": {"status":"Open"},
13 "Lead": {"status":"Open"},
14 "Contact": {"status":"Open"},
15 "Opportunity": {"docstatus":0},
16 "Quotation": {"docstatus":0},
17 "Sales Order": {"docstatus":0},
Nabin Hait23d2a532014-12-25 17:14:18 +053018 "Journal Entry": {"docstatus":0},
Rushabh Mehta30430792013-12-13 15:33:40 +053019 "Sales Invoice": {"docstatus":0},
20 "Purchase Invoice": {"docstatus":0},
21 "Leave Application": {"status":"Open"},
22 "Expense Claim": {"approval_status":"Draft"},
23 "Job Applicant": {"status":"Open"},
24 "Purchase Receipt": {"docstatus":0},
25 "Delivery Note": {"docstatus":0},
26 "Stock Entry": {"docstatus":0},
27 "Material Request": {"docstatus":0},
28 "Purchase Order": {"docstatus":0},
29 "Production Order": {"docstatus":0},
30 "BOM": {"docstatus":0},
31 "Timesheet": {"docstatus":0},
32 "Time Log": {"status":"Draft"},
33 "Time Log Batch": {"status":"Draft"},
34 }
35 }