blob: 738be7eb17390eddb5a6eafe4fab27c0cdc4909d [file] [log] [blame]
Prateeksha Singh2c147042019-01-29 10:12:17 +05301from __future__ import unicode_literals
2from frappe import _
3
4def get_data():
5 return [
6 {
7 "label": _("Retail Operations"),
8 "items": [
9 {
Prateeksha Singh34234072019-02-07 09:18:24 +053010 "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 Singh2c147042019-01-29 10:12:17 +053017 "type": "page",
18 "name": "pos",
19 "label": _("POS"),
Prateeksha Singh34234072019-02-07 09:18:24 +053020 "description": _("Point of Sale"),
21 "onboard": 1,
22 "dependencies": ["POS Profile"]
Prateeksha Singh2c147042019-01-29 10:12:17 +053023 },
24 {
25 "type": "doctype",
26 "name": "Cashier Closing",
Prateeksha Singh34234072019-02-07 09:18:24 +053027 "description": _("Cashier Closing"),
Prateeksha Singh2c147042019-01-29 10:12:17 +053028 },
29 {
30 "type": "doctype",
31 "name": "POS Settings",
32 "description": _("Setup mode of POS (Online / Offline)")
33 },
34 {
35 "type": "doctype",
Prateeksha Singh2c147042019-01-29 10:12:17 +053036 "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 ]