[cleanups]

This commit is contained in:
Rushabh Mehta 2015-01-19 17:35:05 +05:30
parent 81e972eac4
commit 71a6b93d89

18
erpnext/config/website.py Normal file
View File

@ -0,0 +1,18 @@
from frappe import _
def get_data():
return [
{
"label": _("Shopping Cart"),
"icon": "icon-wrench",
"items": [
{
"type": "doctype",
"name": "Shopping Cart Settings",
"label": _("Shopping Cart Settings"),
"description": _("Settings for online shopping cart such as shipping rules, price list etc."),
"hide_count": True
}
]
}
]