Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 1 | from __future__ import unicode_literals |
| 2 | from frappe import _ |
| 3 | |
| 4 | def get_data(): |
| 5 | return [ |
| 6 | { |
| 7 | "label": _("Retail Operations"), |
| 8 | "items": [ |
| 9 | { |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 10 | "type": "doctype", |
| 11 | "name": "POS Profile", |
| 12 | "label": _("Point-of-Sale Profile"), |
| 13 | "description": _("Setup default values for POS Invoices"), |
| 14 | "onboard": 1, |
| 15 | }, |
| 16 | { |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 17 | "type": "page", |
| 18 | "name": "pos", |
| 19 | "label": _("POS"), |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 20 | "description": _("Point of Sale"), |
| 21 | "onboard": 1, |
| 22 | "dependencies": ["POS Profile"] |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 23 | }, |
| 24 | { |
| 25 | "type": "doctype", |
| 26 | "name": "Cashier Closing", |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 27 | "description": _("Cashier Closing"), |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 28 | }, |
| 29 | { |
| 30 | "type": "doctype", |
| 31 | "name": "POS Settings", |
| 32 | "description": _("Setup mode of POS (Online / Offline)") |
| 33 | }, |
| 34 | { |
| 35 | "type": "doctype", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 36 | "name": "Loyalty Program", |
| 37 | "label": _("Loyalty Program"), |
| 38 | "description": _("To make Customer based incentive schemes.") |
| 39 | }, |
| 40 | { |
| 41 | "type": "doctype", |
| 42 | "name": "Loyalty Point Entry", |
| 43 | "label": _("Loyalty Point Entry"), |
| 44 | "description": _("To view logs of Loyalty Points assigned to a Customer.") |
| 45 | } |
| 46 | ] |
| 47 | } |
| 48 | ] |