0209ef0fc5
* 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
69 lines
1.3 KiB
Python
69 lines
1.3 KiB
Python
from __future__ import unicode_literals
|
|
from frappe import _
|
|
|
|
def get_data():
|
|
return [
|
|
{
|
|
"label": _("Goal and Procedure"),
|
|
"items": [
|
|
{
|
|
"type": "doctype",
|
|
"name": "Quality Goal",
|
|
"description":_("Quality Goal."),
|
|
},
|
|
{
|
|
"type": "doctype",
|
|
"name": "Quality Procedure",
|
|
"description":_("Quality Procedure."),
|
|
},
|
|
{
|
|
"type": "doctype",
|
|
"name": "Quality Procedure",
|
|
"icon": "fa fa-sitemap",
|
|
"label": _("Tree of Procedures"),
|
|
"route": "Tree/Quality Procedure",
|
|
"description": _("Tree of Quality Procedures."),
|
|
},
|
|
]
|
|
},
|
|
{
|
|
"label": _("Review and Action"),
|
|
"items": [
|
|
{
|
|
"type": "doctype",
|
|
"name": "Quality Review",
|
|
"description":_("Quality Review"),
|
|
},
|
|
{
|
|
"type": "doctype",
|
|
"name": "Quality Action",
|
|
"description":_("Quality Action"),
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"label": _("Meeting"),
|
|
"items": [
|
|
{
|
|
"type": "doctype",
|
|
"name": "Quality Meeting",
|
|
"description":_("Quality Meeting"),
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"label": _("Feedback"),
|
|
"items": [
|
|
{
|
|
"type": "doctype",
|
|
"name": "Customer Feedback",
|
|
"description":_("Customer Feedback"),
|
|
},
|
|
{
|
|
"type": "doctype",
|
|
"name": "Customer Feedback Template",
|
|
"description":_("Customer Feedback Template"),
|
|
}
|
|
]
|
|
},
|
|
] |