Prateeksha Singh | 95d8fd3 | 2017-09-04 11:14:04 +0530 | [diff] [blame] | 1 | # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors |
| 2 | # License: GNU General Public License v3. See license.txt |
| 3 | |
Rushabh Mehta | 05ce7ec | 2017-02-22 16:15:43 +0530 | [diff] [blame] | 4 | |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 5 | import frappe |
Rushabh Mehta | 05ce7ec | 2017-02-22 16:15:43 +0530 | [diff] [blame] | 6 | from frappe import _ |
Rushabh Mehta | 6dd461f | 2017-02-16 14:51:48 +0530 | [diff] [blame] | 7 | |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 8 | import erpnext |
| 9 | |
| 10 | |
Rushabh Mehta | 6dd461f | 2017-02-16 14:51:48 +0530 | [diff] [blame] | 11 | def get_level(): |
| 12 | activation_level = 0 |
Sahil Khan | 73e281d | 2019-05-09 14:32:15 +0530 | [diff] [blame] | 13 | sales_data = [] |
| 14 | min_count = 0 |
Abhishek Balam | 123eaea | 2020-09-18 16:30:50 +0530 | [diff] [blame] | 15 | doctypes = { |
| 16 | "Asset": 5, |
Ankush Menat | 4551d7d | 2021-08-19 13:41:10 +0530 | [diff] [blame] | 17 | "BOM": 3, |
| 18 | "Customer": 5, |
Abhishek Balam | 123eaea | 2020-09-18 16:30:50 +0530 | [diff] [blame] | 19 | "Delivery Note": 5, |
Ankush Menat | 4551d7d | 2021-08-19 13:41:10 +0530 | [diff] [blame] | 20 | "Employee": 3, |
| 21 | "Instructor": 5, |
Abhishek Balam | 123eaea | 2020-09-18 16:30:50 +0530 | [diff] [blame] | 22 | "Issue": 5, |
Ankush Menat | 4551d7d | 2021-08-19 13:41:10 +0530 | [diff] [blame] | 23 | "Item": 5, |
| 24 | "Journal Entry": 3, |
Abhishek Balam | 123eaea | 2020-09-18 16:30:50 +0530 | [diff] [blame] | 25 | "Lead": 3, |
| 26 | "Leave Application": 5, |
| 27 | "Material Request": 5, |
Ankush Menat | 4551d7d | 2021-08-19 13:41:10 +0530 | [diff] [blame] | 28 | "Opportunity": 5, |
| 29 | "Payment Entry": 2, |
Abhishek Balam | 123eaea | 2020-09-18 16:30:50 +0530 | [diff] [blame] | 30 | "Project": 5, |
Ankush Menat | 4551d7d | 2021-08-19 13:41:10 +0530 | [diff] [blame] | 31 | "Purchase Order": 2, |
Abhishek Balam | 123eaea | 2020-09-18 16:30:50 +0530 | [diff] [blame] | 32 | "Purchase Invoice": 5, |
| 33 | "Purchase Receipt": 5, |
| 34 | "Quotation": 3, |
| 35 | "Salary Slip": 5, |
| 36 | "Salary Structure": 5, |
Ankush Menat | 4551d7d | 2021-08-19 13:41:10 +0530 | [diff] [blame] | 37 | "Sales Order": 2, |
| 38 | "Sales Invoice": 2, |
Abhishek Balam | 123eaea | 2020-09-18 16:30:50 +0530 | [diff] [blame] | 39 | "Stock Entry": 3, |
Ankush Menat | 4551d7d | 2021-08-19 13:41:10 +0530 | [diff] [blame] | 40 | "Student": 5, |
Abhishek Balam | 123eaea | 2020-09-18 16:30:50 +0530 | [diff] [blame] | 41 | "Supplier": 5, |
| 42 | "Task": 5, |
Ankush Menat | 4551d7d | 2021-08-19 13:41:10 +0530 | [diff] [blame] | 43 | "User": 5, |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 44 | "Work Order": 5, |
Abhishek Balam | 123eaea | 2020-09-18 16:30:50 +0530 | [diff] [blame] | 45 | } |
| 46 | |
Ankush Menat | 8fe5feb | 2021-11-04 19:48:32 +0530 | [diff] [blame] | 47 | for doctype, min_count in doctypes.items(): |
Sahil Khan | 73e281d | 2019-05-09 14:32:15 +0530 | [diff] [blame] | 48 | count = frappe.db.count(doctype) |
| 49 | if count > min_count: |
| 50 | activation_level += 1 |
| 51 | sales_data.append({doctype: count}) |
| 52 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 53 | if frappe.db.get_single_value("System Settings", "setup_complete"): |
Rushabh Mehta | 6dd461f | 2017-02-16 14:51:48 +0530 | [diff] [blame] | 54 | activation_level += 1 |
| 55 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 56 | communication_number = frappe.db.count("Communication", dict(communication_medium="Email")) |
Sahil Khan | 73e281d | 2019-05-09 14:32:15 +0530 | [diff] [blame] | 57 | if communication_number > 10: |
Rushabh Mehta | 6dd461f | 2017-02-16 14:51:48 +0530 | [diff] [blame] | 58 | activation_level += 1 |
Sahil Khan | 73e281d | 2019-05-09 14:32:15 +0530 | [diff] [blame] | 59 | sales_data.append({"Communication": communication_number}) |
Rushabh Mehta | 05ce7ec | 2017-02-22 16:15:43 +0530 | [diff] [blame] | 60 | |
Rushabh Mehta | 6dd461f | 2017-02-16 14:51:48 +0530 | [diff] [blame] | 61 | # recent login |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 62 | if frappe.db.sql( |
| 63 | "select name from tabUser where last_login > date_sub(now(), interval 2 day) limit 1" |
| 64 | ): |
Rushabh Mehta | 6dd461f | 2017-02-16 14:51:48 +0530 | [diff] [blame] | 65 | activation_level += 1 |
| 66 | |
Sahil Khan | 73e281d | 2019-05-09 14:32:15 +0530 | [diff] [blame] | 67 | level = {"activation_level": activation_level, "sales_data": sales_data} |
| 68 | |
| 69 | return level |
Rushabh Mehta | 05ce7ec | 2017-02-22 16:15:43 +0530 | [diff] [blame] | 70 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 71 | |
Rushabh Mehta | 05ce7ec | 2017-02-22 16:15:43 +0530 | [diff] [blame] | 72 | def get_help_messages(): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 73 | """Returns help messages to be shown on Desktop""" |
Rushabh Mehta | 7067ff0 | 2017-03-02 11:14:09 +0530 | [diff] [blame] | 74 | if get_level() > 6: |
| 75 | return [] |
Rushabh Mehta | 05ce7ec | 2017-02-22 16:15:43 +0530 | [diff] [blame] | 76 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 77 | domain = frappe.get_cached_value("Company", erpnext.get_default_company(), "domain") |
Prateeksha Singh | 95d8fd3 | 2017-09-04 11:14:04 +0530 | [diff] [blame] | 78 | messages = [] |
Rushabh Mehta | 05ce7ec | 2017-02-22 16:15:43 +0530 | [diff] [blame] | 79 | |
Rushabh Mehta | e7900b2 | 2017-03-02 11:13:18 +0530 | [diff] [blame] | 80 | message_settings = [ |
| 81 | frappe._dict( |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 82 | doctype="Lead", |
| 83 | title=_("Create Leads"), |
| 84 | description=_("Leads help you get business, add all your contacts and more as your leads"), |
| 85 | action=_("Create Lead"), |
| 86 | route="List/Lead", |
| 87 | domain=("Manufacturing", "Retail", "Services", "Distribution"), |
| 88 | target=3, |
Rushabh Mehta | e7900b2 | 2017-03-02 11:13:18 +0530 | [diff] [blame] | 89 | ), |
| 90 | frappe._dict( |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 91 | doctype="Quotation", |
| 92 | title=_("Create customer quotes"), |
| 93 | description=_("Quotations are proposals, bids you have sent to your customers"), |
| 94 | action=_("Create Quotation"), |
| 95 | route="List/Quotation", |
| 96 | domain=("Manufacturing", "Retail", "Services", "Distribution"), |
| 97 | target=3, |
Rushabh Mehta | e7900b2 | 2017-03-02 11:13:18 +0530 | [diff] [blame] | 98 | ), |
| 99 | frappe._dict( |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 100 | doctype="Sales Order", |
| 101 | title=_("Manage your orders"), |
| 102 | description=_("Create Sales Orders to help you plan your work and deliver on-time"), |
| 103 | action=_("Create Sales Order"), |
| 104 | route="List/Sales Order", |
| 105 | domain=("Manufacturing", "Retail", "Services", "Distribution"), |
| 106 | target=3, |
Rushabh Mehta | e7900b2 | 2017-03-02 11:13:18 +0530 | [diff] [blame] | 107 | ), |
| 108 | frappe._dict( |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 109 | doctype="Purchase Order", |
| 110 | title=_("Create Purchase Orders"), |
| 111 | description=_("Purchase orders help you plan and follow up on your purchases"), |
| 112 | action=_("Create Purchase Order"), |
| 113 | route="List/Purchase Order", |
| 114 | domain=("Manufacturing", "Retail", "Services", "Distribution"), |
| 115 | target=3, |
Rushabh Mehta | e7900b2 | 2017-03-02 11:13:18 +0530 | [diff] [blame] | 116 | ), |
| 117 | frappe._dict( |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 118 | doctype="User", |
| 119 | title=_("Create Users"), |
| 120 | description=_( |
| 121 | "Add the rest of your organization as your users. You can also add invite Customers to your portal by adding them from Contacts" |
| 122 | ), |
| 123 | action=_("Create User"), |
| 124 | route="List/User", |
| 125 | domain=("Manufacturing", "Retail", "Services", "Distribution"), |
| 126 | target=3, |
Rushabh Mehta | e7900b2 | 2017-03-02 11:13:18 +0530 | [diff] [blame] | 127 | ), |
| 128 | frappe._dict( |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 129 | doctype="Timesheet", |
| 130 | title=_("Add Timesheets"), |
| 131 | description=_( |
| 132 | "Timesheets help keep track of time, cost and billing for activites done by your team" |
| 133 | ), |
| 134 | action=_("Create Timesheet"), |
| 135 | route="List/Timesheet", |
| 136 | domain=("Services",), |
| 137 | target=5, |
Rushabh Mehta | e7900b2 | 2017-03-02 11:13:18 +0530 | [diff] [blame] | 138 | ), |
| 139 | frappe._dict( |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 140 | doctype="Student", |
| 141 | title=_("Add Students"), |
| 142 | description=_("Students are at the heart of the system, add all your students"), |
| 143 | action=_("Create Student"), |
| 144 | route="List/Student", |
| 145 | domain=("Education",), |
| 146 | target=5, |
Rushabh Mehta | e7900b2 | 2017-03-02 11:13:18 +0530 | [diff] [blame] | 147 | ), |
| 148 | frappe._dict( |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 149 | doctype="Student Batch", |
| 150 | title=_("Group your students in batches"), |
| 151 | description=_("Student Batches help you track attendance, assessments and fees for students"), |
| 152 | action=_("Create Student Batch"), |
| 153 | route="List/Student Batch", |
| 154 | domain=("Education",), |
| 155 | target=3, |
Rushabh Mehta | e7900b2 | 2017-03-02 11:13:18 +0530 | [diff] [blame] | 156 | ), |
| 157 | frappe._dict( |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 158 | doctype="Employee", |
| 159 | title=_("Create Employee Records"), |
| 160 | description=_("Create Employee records to manage leaves, expense claims and payroll"), |
| 161 | action=_("Create Employee"), |
| 162 | route="List/Employee", |
| 163 | target=3, |
| 164 | ), |
Rushabh Mehta | e7900b2 | 2017-03-02 11:13:18 +0530 | [diff] [blame] | 165 | ] |
| 166 | |
Rushabh Mehta | e7900b2 | 2017-03-02 11:13:18 +0530 | [diff] [blame] | 167 | for m in message_settings: |
| 168 | if not m.domain or domain in m.domain: |
| 169 | m.count = frappe.db.count(m.doctype) |
| 170 | if m.count < m.target: |
| 171 | messages.append(m) |
Rushabh Mehta | 05ce7ec | 2017-02-22 16:15:43 +0530 | [diff] [blame] | 172 | |
Nabin Hait | a2afc4e | 2017-02-27 15:39:29 +0530 | [diff] [blame] | 173 | return messages |