blob: 45fad66db0a4e12caeff56a05c4b73bdc1546fbe [file] [log] [blame]
Rushabh Mehta71a6b932015-01-19 17:35:05 +05301from frappe import _
2
3def get_data():
4 return [
5 {
6 "label": _("Shopping Cart"),
7 "icon": "icon-wrench",
8 "items": [
9 {
10 "type": "doctype",
11 "name": "Shopping Cart Settings",
12 "label": _("Shopping Cart Settings"),
13 "description": _("Settings for online shopping cart such as shipping rules, price list etc."),
14 "hide_count": True
15 }
16 ]
17 }
18 ]