Anand Doshi | d57e793 | 2015-02-24 12:24:53 +0530 | [diff] [blame] | 1 | from __future__ import unicode_literals |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 2 | from frappe import _ |
| 3 | |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 4 | def get_data(): |
| 5 | return [ |
| 6 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 7 | "label": _("Sales"), |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 8 | "icon": "fa fa-star", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 9 | "items": [ |
| 10 | { |
| 11 | "type": "doctype", |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 12 | "name": "Customer", |
Basawaraj Savalagi | 09bafc6 | 2019-05-13 14:59:19 +0530 | [diff] [blame] | 13 | "description": _("Customer Database."), |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 14 | "onboard": 1, |
| 15 | }, |
| 16 | { |
| 17 | "type": "doctype", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 18 | "name": "Quotation", |
| 19 | "description": _("Quotes to Leads or Customers."), |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 20 | "onboard": 1, |
| 21 | "dependencies": ["Item", "Customer"], |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 22 | }, |
| 23 | { |
| 24 | "type": "doctype", |
| 25 | "name": "Sales Order", |
| 26 | "description": _("Confirmed orders from Customers."), |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 27 | "onboard": 1, |
| 28 | "dependencies": ["Item", "Customer"], |
| 29 | }, |
| 30 | { |
| 31 | "type": "doctype", |
Anurag Mishra | 76795aa | 2019-04-04 11:38:42 +0530 | [diff] [blame] | 32 | "name": "Sales Invoice", |
| 33 | "description": _("Invoices for Costumers."), |
| 34 | "onboard": 1, |
| 35 | "dependencies": ["Item", "Customer"], |
| 36 | }, |
| 37 | { |
| 38 | "type": "doctype", |
Basawaraj Savalagi | 09bafc6 | 2019-05-13 14:59:19 +0530 | [diff] [blame] | 39 | "name": "Blanket Order", |
| 40 | "description": _("Blanket Orders from Costumers."), |
| 41 | "onboard": 1, |
| 42 | "dependencies": ["Item", "Customer"], |
| 43 | }, |
| 44 | { |
| 45 | "type": "doctype", |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 46 | "name": "Sales Partner", |
| 47 | "description": _("Manage Sales Partners."), |
| 48 | "dependencies": ["Item"], |
| 49 | }, |
| 50 | { |
| 51 | "type": "doctype", |
| 52 | "label": _("Sales Person"), |
| 53 | "name": "Sales Person", |
| 54 | "icon": "fa fa-sitemap", |
| 55 | "link": "Tree/Sales Person", |
| 56 | "description": _("Manage Sales Person Tree."), |
| 57 | "dependencies": ["Item", "Customer"], |
| 58 | }, |
| 59 | { |
| 60 | "type": "report", |
| 61 | "is_query_report": True, |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 62 | "name": "Territory Target Variance (Item Group-Wise)", |
Himanshu Warekar | 3315a9f | 2019-02-28 11:51:36 +0530 | [diff] [blame] | 63 | "route": "#query-report/Territory Target Variance Item Group-Wise", |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 64 | "doctype": "Territory", |
| 65 | }, |
| 66 | { |
| 67 | "type": "report", |
| 68 | "is_query_report": True, |
| 69 | "name": "Sales Person Target Variance (Item Group-Wise)", |
Himanshu Warekar | 3315a9f | 2019-02-28 11:51:36 +0530 | [diff] [blame] | 70 | "route": "#query-report/Sales Person Target Variance Item Group-Wise", |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 71 | "doctype": "Sales Person", |
| 72 | "dependencies": ["Sales Person"], |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 73 | }, |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 74 | ] |
| 75 | }, |
| 76 | { |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 77 | "label": _("Items and Pricing"), |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 78 | "items": [ |
| 79 | { |
| 80 | "type": "doctype", |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 81 | "name": "Item", |
| 82 | "description": _("All Products or Services."), |
| 83 | "onboard": 1, |
| 84 | }, |
| 85 | { |
| 86 | "type": "doctype", |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 87 | "name": "Item Price", |
| 88 | "description": _("Multiple Item prices."), |
Himanshu Warekar | 3315a9f | 2019-02-28 11:51:36 +0530 | [diff] [blame] | 89 | "route": "#Report/Item Price", |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 90 | "dependencies": ["Item", "Price List"], |
| 91 | "onboard": 1, |
| 92 | }, |
| 93 | { |
| 94 | "type": "doctype", |
| 95 | "name": "Price List", |
| 96 | "description": _("Price List master."), |
| 97 | "onboard": 1, |
| 98 | }, |
| 99 | { |
| 100 | "type": "doctype", |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 101 | "name": "Item Group", |
| 102 | "icon": "fa fa-sitemap", |
| 103 | "label": _("Item Group"), |
| 104 | "link": "Tree/Item Group", |
| 105 | "description": _("Tree of Item Groups."), |
| 106 | "onboard": 1, |
| 107 | }, |
| 108 | { |
| 109 | "type": "doctype", |
| 110 | "name": "Product Bundle", |
| 111 | "description": _("Bundle items at time of sale."), |
| 112 | "dependencies": ["Item"], |
| 113 | }, |
| 114 | { |
| 115 | "type": "doctype", |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 116 | "name": "Pricing Rule", |
| 117 | "description": _("Rules for applying pricing and discount."), |
| 118 | "dependencies": ["Item"], |
| 119 | }, |
| 120 | { |
| 121 | "type": "doctype", |
| 122 | "name": "Shipping Rule", |
| 123 | "description": _("Rules for adding shipping costs."), |
| 124 | }, |
| 125 | |
| 126 | ] |
| 127 | }, |
| 128 | { |
Prateeksha Singh | 9d4a183 | 2019-02-11 15:14:50 +0530 | [diff] [blame] | 129 | "label": _("Settings"), |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 130 | "icon": "fa fa-cog", |
| 131 | "items": [ |
| 132 | { |
| 133 | "type": "doctype", |
| 134 | "name": "Selling Settings", |
| 135 | "description": _("Default settings for selling transactions."), |
Prateeksha Singh | 8aa4594 | 2019-03-04 14:00:02 +0530 | [diff] [blame] | 136 | "settings": 1, |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 137 | }, |
| 138 | { |
| 139 | "type": "doctype", |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 140 | "name":"Terms and Conditions", |
| 141 | "label": _("Terms and Conditions Template"), |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 142 | "description": _("Template of terms or contract."), |
| 143 | "onboard": 1, |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 144 | }, |
| 145 | { |
| 146 | "type": "doctype", |
| 147 | "name": "Sales Taxes and Charges Template", |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 148 | "description": _("Tax template for selling transactions."), |
| 149 | "onboard": 1, |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 150 | }, |
| 151 | { |
| 152 | "type": "doctype", |
| 153 | "name": "Lead Source", |
| 154 | "description": _("Track Leads by Lead Source.") |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 155 | }, |
| 156 | { |
Saurabh | 52ec0ed | 2016-07-05 18:02:38 +0530 | [diff] [blame] | 157 | "type": "doctype", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 158 | "label": _("Customer Group"), |
Saurabh | 52ec0ed | 2016-07-05 18:02:38 +0530 | [diff] [blame] | 159 | "name": "Customer Group", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 160 | "icon": "fa fa-sitemap", |
Saurabh | 1702273 | 2016-06-21 13:19:17 +0530 | [diff] [blame] | 161 | "link": "Tree/Customer Group", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 162 | "description": _("Manage Customer Group Tree."), |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 163 | }, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 164 | { |
| 165 | "type": "doctype", |
| 166 | "name": "Contact", |
| 167 | "description": _("All Contacts."), |
| 168 | }, |
| 169 | { |
| 170 | "type": "doctype", |
| 171 | "name": "Address", |
| 172 | "description": _("All Addresses."), |
| 173 | }, |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 174 | { |
Saurabh | 52ec0ed | 2016-07-05 18:02:38 +0530 | [diff] [blame] | 175 | "type": "doctype", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 176 | "label": _("Territory"), |
Saurabh | 52ec0ed | 2016-07-05 18:02:38 +0530 | [diff] [blame] | 177 | "name": "Territory", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 178 | "icon": "fa fa-sitemap", |
Saurabh | 1702273 | 2016-06-21 13:19:17 +0530 | [diff] [blame] | 179 | "link": "Tree/Territory", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 180 | "description": _("Manage Territory Tree."), |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 181 | }, |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 182 | { |
| 183 | "type": "doctype", |
| 184 | "name": "Campaign", |
| 185 | "description": _("Sales campaigns."), |
| 186 | }, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 187 | ] |
| 188 | }, |
| 189 | { |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 190 | "label": _("Key Reports"), |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 191 | "icon": "fa fa-table", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 192 | "items": [ |
| 193 | { |
Deepesh Garg | 6714214 | 2018-11-12 16:15:54 +0530 | [diff] [blame] | 194 | "type": "report", |
| 195 | "is_query_report": True, |
| 196 | "name": "Sales Analytics", |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 197 | "doctype": "Sales Order", |
| 198 | "onboard": 1, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 199 | }, |
| 200 | { |
| 201 | "type": "page", |
| 202 | "name": "sales-funnel", |
| 203 | "label": _("Sales Funnel"), |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 204 | "icon": "fa fa-bar-chart", |
Prateeksha Singh | 063af4e | 2019-02-06 17:02:41 +0530 | [diff] [blame] | 205 | "onboard": 1, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 206 | }, |
| 207 | { |
| 208 | "type": "report", |
| 209 | "is_query_report": True, |
| 210 | "name": "Customer Acquisition and Loyalty", |
| 211 | "doctype": "Customer", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 212 | "icon": "fa fa-bar-chart", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 213 | }, |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 214 | { |
| 215 | "type": "report", |
| 216 | "is_query_report": True, |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 217 | "name": "Inactive Customers", |
| 218 | "doctype": "Sales Order" |
| 219 | }, |
| 220 | { |
| 221 | "type": "report", |
| 222 | "is_query_report": True, |
| 223 | "name": "Ordered Items To Be Delivered", |
| 224 | "doctype": "Sales Order" |
| 225 | }, |
| 226 | { |
| 227 | "type": "report", |
| 228 | "is_query_report": True, |
| 229 | "name": "Sales Person-wise Transaction Summary", |
| 230 | "doctype": "Sales Order" |
| 231 | }, |
| 232 | { |
| 233 | "type": "report", |
| 234 | "is_query_report": True, |
| 235 | "name": "Item-wise Sales History", |
| 236 | "doctype": "Item" |
| 237 | }, |
| 238 | { |
| 239 | "type": "report", |
| 240 | "is_query_report": True, |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 241 | "name": "Quotation Trends", |
| 242 | "doctype": "Quotation" |
| 243 | }, |
| 244 | { |
| 245 | "type": "report", |
| 246 | "is_query_report": True, |
| 247 | "name": "Sales Order Trends", |
| 248 | "doctype": "Sales Order" |
| 249 | }, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 250 | ] |
| 251 | }, |
| 252 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 253 | "label": _("Other Reports"), |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 254 | "icon": "fa fa-list", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 255 | "items": [ |
| 256 | { |
| 257 | "type": "report", |
| 258 | "is_query_report": True, |
| 259 | "name": "Lead Details", |
| 260 | "doctype": "Lead" |
| 261 | }, |
| 262 | { |
| 263 | "type": "report", |
| 264 | "is_query_report": True, |
Shreya Shah | 5103454 | 2018-06-05 10:44:36 +0530 | [diff] [blame] | 265 | "name": "Address And Contacts", |
ahmadRagheb | 9017f37 | 2017-06-07 17:38:39 +0300 | [diff] [blame] | 266 | "label": _("Customer Addresses And Contacts"), |
mbauskar | cbc49e2 | 2017-01-19 17:45:22 +0530 | [diff] [blame] | 267 | "doctype": "Address", |
| 268 | "route_options": { |
| 269 | "party_type": "Customer" |
| 270 | } |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 271 | }, |
| 272 | { |
| 273 | "type": "report", |
| 274 | "is_query_report": True, |
Rushabh Mehta | b45a6bc | 2015-06-17 01:54:56 +0530 | [diff] [blame] | 275 | "name": "BOM Search", |
| 276 | "doctype": "BOM" |
| 277 | }, |
| 278 | { |
| 279 | "type": "report", |
| 280 | "is_query_report": True, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 281 | "name": "Available Stock for Packing Items", |
| 282 | "doctype": "Item", |
| 283 | }, |
| 284 | { |
| 285 | "type": "report", |
| 286 | "is_query_report": True, |
| 287 | "name": "Pending SO Items For Purchase Request", |
| 288 | "doctype": "Sales Order" |
| 289 | }, |
Nabin Hait | 7dbcee8 | 2014-10-30 15:49:17 +0530 | [diff] [blame] | 290 | { |
| 291 | "type": "report", |
| 292 | "is_query_report": True, |
| 293 | "name": "Customer Credit Balance", |
| 294 | "doctype": "Customer" |
| 295 | }, |
Nabin Hait | 19ce904 | 2018-05-21 11:07:04 +0530 | [diff] [blame] | 296 | { |
| 297 | "type": "report", |
| 298 | "is_query_report": True, |
| 299 | "name": "Customers Without Any Sales Transactions", |
| 300 | "doctype": "Customer" |
| 301 | }, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 302 | ] |
| 303 | }, |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 304 | { |
| 305 | "label": _("Help"), |
| 306 | "items": [ |
| 307 | { |
| 308 | "type": "help", |
| 309 | "label": _("Customer and Supplier"), |
| 310 | "youtube_id": "anoGi_RpQ20" |
| 311 | }, |
Sambhaji Kolate | fd53991 | 2015-10-27 17:01:27 +0530 | [diff] [blame] | 312 | { |
| 313 | "type": "help", |
| 314 | "label": _("Sales Order to Payment"), |
Rushabh Mehta | d562e95 | 2019-03-22 14:46:12 +0530 | [diff] [blame] | 315 | "youtube_id": "1eP90MWoDQM" |
Sambhaji Kolate | fd53991 | 2015-10-27 17:01:27 +0530 | [diff] [blame] | 316 | }, |
| 317 | { |
| 318 | "type": "help", |
| 319 | "label": _("Point-of-Sale"), |
| 320 | "youtube_id": "4WkelWkbP_c" |
| 321 | }, |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 322 | ] |
| 323 | }, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 324 | ] |