From 7d23e4286e6c8ccf46d115382679b63b43b46a43 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 2 Nov 2015 10:45:18 +0530 Subject: [PATCH] [minor] move item to top in stock module page --- erpnext/change_log/current/desktop.md | 2 ++ erpnext/config/desktop.py | 4 ++-- erpnext/config/stock.py | 10 +++++----- erpnext/hooks.py | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) create mode 100644 erpnext/change_log/current/desktop.md diff --git a/erpnext/change_log/current/desktop.md b/erpnext/change_log/current/desktop.md new file mode 100644 index 0000000000..9b4667b819 --- /dev/null +++ b/erpnext/change_log/current/desktop.md @@ -0,0 +1,2 @@ +- **Desktop Reorganization:** To Do, Calendar, Messages, Notes, Activty have been moved into module **Tools** +- Integrations and Installer has been moved into **Setup** diff --git a/erpnext/config/desktop.py b/erpnext/config/desktop.py index 498d100a12..c3fe141ff8 100644 --- a/erpnext/config/desktop.py +++ b/erpnext/config/desktop.py @@ -64,9 +64,9 @@ def get_data(): "type": "module" }, "Learn": { - "color": "#FCB868", + "color": "#FF888B", "force_show": True, - "icon": "icon-facetime-video", + "icon": "octicon octicon-device-camera-video", "type": "module", "is_help": True } diff --git a/erpnext/config/stock.py b/erpnext/config/stock.py index dab009df3b..a4a7202008 100644 --- a/erpnext/config/stock.py +++ b/erpnext/config/stock.py @@ -7,6 +7,11 @@ def get_data(): "label": _("Documents"), "icon": "icon-star", "items": [ + { + "type": "doctype", + "name": "Item", + "description": _("All Products or Services."), + }, { "type": "doctype", "name": "Material Request", @@ -32,11 +37,6 @@ def get_data(): "name": "Installation Note", "description": _("Installation record for a Serial No.") }, - { - "type": "doctype", - "name": "Item", - "description": _("All Products or Services."), - }, { "type": "doctype", "name": "Warehouse", diff --git a/erpnext/hooks.py b/erpnext/hooks.py index 471b69220f..2c647e8803 100644 --- a/erpnext/hooks.py +++ b/erpnext/hooks.py @@ -30,7 +30,7 @@ blogs. app_icon = "icon-th" app_color = "#e74c3c" app_version = "6.6.7" -github_link = "https://github.com/frappe/erpnext" +source_link = "https://github.com/frappe/erpnext" error_report_email = "support@erpnext.com"