From 71a6b93d894b6bfdc170f196cf2a4339bdf7ac65 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 19 Jan 2015 17:35:05 +0530 Subject: [PATCH] [cleanups] --- erpnext/config/website.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 erpnext/config/website.py diff --git a/erpnext/config/website.py b/erpnext/config/website.py new file mode 100644 index 0000000000..45fad66db0 --- /dev/null +++ b/erpnext/config/website.py @@ -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 + } + ] + } + ]