brotherton-erpnext/erpnext/config/desktop.py

117 lines
2.9 KiB
Python
Raw Normal View History

# coding=utf-8
from __future__ import unicode_literals
2014-02-14 10:17:51 +00:00
from frappe import _
2014-02-07 12:42:43 +00:00
def get_data():
2016-01-14 12:44:50 +00:00
return [
# Category: "Domains"
{
"module_name": "Manufacturing",
"category": "Domains",
"label": _("Manufacturing"),
"color": "#7f8c8d",
"icon": "octicon octicon-tools",
"type": "module",
"hidden": 1,
"description": "Streamline your production with BOMS, Work Orders and Timesheets."
},
{
"module_name": "Retail",
"category": "Domains",
"label": _("Retail"),
"color": "#7f8c8d",
"icon": "octicon octicon-credit-card",
"type": "module",
"hidden": 1,
2019-01-31 09:20:22 +00:00
"description": "Point of Sale, Cashier Closing and Loyalty Programs."
},
2019-01-24 01:45:53 +00:00
{
"module_name": "Education",
"category": "Domains",
"label": _("Education"),
2019-01-24 01:45:53 +00:00
"color": "#428B46",
"icon": "octicon octicon-mortar-board",
"type": "module",
"hidden": 1,
"description": "Manage Student Admissions, Fees, Subjects and Score Reports."
},
2019-01-24 01:45:53 +00:00
{
"module_name": "Healthcare",
"category": "Domains",
"label": _("Healthcare"),
2019-01-24 01:45:53 +00:00
"color": "#FF888B",
"icon": "fa fa-heartbeat",
"type": "module",
"hidden": 1,
"description": "Patients appointments, procedures and tests, with diagnosis reports and drug prescriptions."
},
{
"module_name": "Agriculture",
"category": "Domains",
"label": _("Agriculture"),
2019-01-24 01:45:53 +00:00
"color": "#8BC34A",
"icon": "octicon octicon-globe",
"type": "module",
"hidden": 1,
"description": "Crop Cycles, Land Areas and Soil and Plant Analysis."
},
{
"module_name": "Hotels",
"category": "Domains",
"label": _("Hotels"),
2019-01-24 01:45:53 +00:00
"color": "#EA81E8",
"icon": "fa fa-bed",
"type": "module",
"hidden": 1,
"description": "Manage Hotel Rooms, Pricing, Reservation and Amenities."
},
2017-09-11 09:43:16 +00:00
{
"module_name": "Non Profit",
"category": "Domains",
"label": _("Non Profit"),
2017-09-11 09:43:16 +00:00
"color": "#DE2B37",
"icon": "octicon octicon-heart",
"type": "module",
2019-01-24 01:45:53 +00:00
"hidden": 1,
"description": "Make benefiting others easier with Volunteers, Memberships, Grants and Chapters."
Quality Management System (#15893) * Added QMS to ERPNext * changes * fixed * code refracted * refracted * some bugs fixed * changes * changes * test case * bug fix unit test * bug fix * refracted code * test warning fix * test case bug fix * removed whitespace * indentation bug fix * unit test bug fix * fixed Tree * bug fix * bug fix * code refactor * fixed procedure tree * removed unnecessary fields * hide fields * removed depricated unit test method * sql injection bug fix * code refactor and added mandatory fields * Removed Add Child from TreeView * Unit Test crashes Fix * code refactor * Fixed Status of Action * removed add button from Chart of Procedure * Fixed Unit Test for Quality Action * Chamged Measurement Unit to UOM * Changed Measurement Unit to UOM * Quality Action Unit Test Fix * Renamed Chart of Procedures to Tree of Procedures * Changes Objective input type to Text * Code Refactor * Quality Action Status option changed to "Close" for consistency * fixed action status indicator * Removed vscode folder * unit tests optimization * unit test fixes * code refactor * gitignore * bug fixes and code refactor * code refactor * unit test changes * changed quality action unit test * code refactor * code refactor * code refactor * indentation * code refactor * corrected typo * Removed jQuery hide() * code refracted * remove grid elements * Removed unnecessary conditions * onload fixed in feedback * code refracted * Removed add row button from Review and Customer Feedback * made autofill feild read only * automated scheduling of review
2018-12-25 12:12:31 +00:00
},
{
"module_name": "Restaurant",
"category": "Domains",
"label": _("Restaurant"),
"color": "#EA81E8",
"icon": "fa fa-cutlery",
"_doctype": "Restaurant",
Quality Management System (#15893) * Added QMS to ERPNext * changes * fixed * code refracted * refracted * some bugs fixed * changes * changes * test case * bug fix unit test * bug fix * refracted code * test warning fix * test case bug fix * removed whitespace * indentation bug fix * unit test bug fix * fixed Tree * bug fix * bug fix * code refactor * fixed procedure tree * removed unnecessary fields * hide fields * removed depricated unit test method * sql injection bug fix * code refactor and added mandatory fields * Removed Add Child from TreeView * Unit Test crashes Fix * code refactor * Fixed Status of Action * removed add button from Chart of Procedure * Fixed Unit Test for Quality Action * Chamged Measurement Unit to UOM * Changed Measurement Unit to UOM * Quality Action Unit Test Fix * Renamed Chart of Procedures to Tree of Procedures * Changes Objective input type to Text * Code Refactor * Quality Action Status option changed to "Close" for consistency * fixed action status indicator * Removed vscode folder * unit tests optimization * unit test fixes * code refactor * gitignore * bug fixes and code refactor * code refactor * unit test changes * changed quality action unit test * code refactor * code refactor * code refactor * indentation * code refactor * corrected typo * Removed jQuery hide() * code refracted * remove grid elements * Removed unnecessary conditions * onload fixed in feedback * code refracted * Removed add row button from Review and Customer Feedback * made autofill feild read only * automated scheduling of review
2018-12-25 12:12:31 +00:00
"type": "module",
"link": "List/Restaurant",
2019-01-24 01:45:53 +00:00
"hidden": 1,
"description": "Menu, Orders and Table Reservations."
2019-01-24 01:45:53 +00:00
},
{
"module_name": "Learn",
"category": "Administration",
"label": _("Learn"),
2019-01-24 01:45:53 +00:00
"color": "#FF888B",
"icon": "octicon octicon-device-camera-video",
"type": "module",
"is_help": True,
"description": "Explore Help Articles and Videos."
},
{
"module_name": 'Marketplace',
"category": "Places",
2019-01-24 01:45:53 +00:00
"label": _('Marketplace'),
"icon": "octicon octicon-star",
2019-01-24 01:45:53 +00:00
"type": 'link',
"link": '#marketplace/home',
2019-01-24 01:45:53 +00:00
"color": '#FF4136',
'standard': 1,
"description": "Publish items to other ERPNext users and start a conversation."
2019-01-24 01:45:53 +00:00
},
]