blob: 7852f3bf3f7b836bd7d9d06c860122714398a766 [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 {
10 "type": "page",
11 "name": "pos",
12 "label": _("POS"),
13 "description": _("Point of Sale")
14 },
15 {
16 "type": "doctype",
17 "name": "Cashier Closing",
18 "description": _("Cashier Closing")
19 },
20 {
21 "type": "doctype",
22 "name": "POS Settings",
23 "description": _("Setup mode of POS (Online / Offline)")
24 },
25 {
26 "type": "doctype",
27 "name": "POS Profile",
28 "label": _("Point-of-Sale Profile"),
29 "description": _("Setup default values for POS Invoices")
30 },
31 {
32 "type": "doctype",
33 "name": "Loyalty Program",
34 "label": _("Loyalty Program"),
35 "description": _("To make Customer based incentive schemes.")
36 },
37 {
38 "type": "doctype",
39 "name": "Loyalty Point Entry",
40 "label": _("Loyalty Point Entry"),
41 "description": _("To view logs of Loyalty Points assigned to a Customer.")
42 }
43 ]
44 }
45 ]