Rushabh Mehta | 71a6b93 | 2015-01-19 17:35:05 +0530 | [diff] [blame] | 1 | from frappe import _ |
2 | |||||
3 | def get_data(): | ||||
4 | return [ | ||||
5 | { | ||||
Rushabh Mehta | c78b311 | 2016-03-30 12:29:48 +0530 | [diff] [blame] | 6 | "label": _("Portal"), |
Rushabh Mehta | 71a6b93 | 2015-01-19 17:35:05 +0530 | [diff] [blame] | 7 | "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 | ] |