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