fix: add doctypes to activation
This commit is contained in:
parent
33de842071
commit
064a2c9aed
@ -11,8 +11,39 @@ def get_level():
|
|||||||
activation_level = 0
|
activation_level = 0
|
||||||
sales_data = []
|
sales_data = []
|
||||||
min_count = 0
|
min_count = 0
|
||||||
doctypes = {"Item": 5, "Customer": 5, "Sales Order": 2, "Sales Invoice": 2, "Purchase Order": 2, "Employee": 3, "Lead": 3, "Quotation": 3,
|
doctypes = {
|
||||||
"Payment Entry": 2, "User": 5, "Student": 5, "Instructor": 5, "BOM": 3, "Journal Entry": 3, "Stock Entry": 3}
|
"Asset": 5,
|
||||||
|
"BOM": 3,
|
||||||
|
"Customer": 5,
|
||||||
|
"Delivery Note": 5,
|
||||||
|
"Employee": 3,
|
||||||
|
"Instructor": 5,
|
||||||
|
"Instructor": 5,
|
||||||
|
"Issue": 5,
|
||||||
|
"Item": 5,
|
||||||
|
"Journal Entry": 3,
|
||||||
|
"Lead": 3,
|
||||||
|
"Leave Application": 5,
|
||||||
|
"Material Request": 5,
|
||||||
|
"Opportunity": 5,
|
||||||
|
"Payment Entry": 2,
|
||||||
|
"Project": 5,
|
||||||
|
"Purchase Order": 2,
|
||||||
|
"Purchase Invoice": 5,
|
||||||
|
"Purchase Receipt": 5,
|
||||||
|
"Quotation": 3,
|
||||||
|
"Salary Slip": 5,
|
||||||
|
"Salary Structure": 5,
|
||||||
|
"Sales Order": 2,
|
||||||
|
"Sales Invoice": 2,
|
||||||
|
"Stock Entry": 3,
|
||||||
|
"Student": 5,
|
||||||
|
"Supplier": 5,
|
||||||
|
"Task": 5,
|
||||||
|
"User": 5,
|
||||||
|
"Work Order": 5
|
||||||
|
}
|
||||||
|
|
||||||
for doctype, min_count in iteritems(doctypes):
|
for doctype, min_count in iteritems(doctypes):
|
||||||
count = frappe.db.count(doctype)
|
count = frappe.db.count(doctype)
|
||||||
if count > min_count:
|
if count > min_count:
|
||||||
|
Loading…
Reference in New Issue
Block a user