Rushabh Mehta | 71a6b93 | 2015-01-19 17:35:05 +0530 | [diff] [blame] | 1 | from frappe import _ |
2 | |||||
3 | def 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 | ] |