blob: 1256b2d95728fbd32e9adb819edf3775506f1994 [file] [log] [blame]
Himanshu0209ef02018-12-25 17:42:31 +05301from __future__ import unicode_literals
2from frappe import _
3
4def get_data():
5 return [
6 {
7 "label": _("Goal and Procedure"),
8 "items": [
9 {
10 "type": "doctype",
11 "name": "Quality Goal",
12 "description":_("Quality Goal."),
Prateeksha Singh34234072019-02-07 09:18:24 +053013 "onboard": 1,
Himanshu0209ef02018-12-25 17:42:31 +053014 },
15 {
16 "type": "doctype",
17 "name": "Quality Procedure",
18 "description":_("Quality Procedure."),
Prateeksha Singh34234072019-02-07 09:18:24 +053019 "onboard": 1,
Himanshu0209ef02018-12-25 17:42:31 +053020 },
21 {
22 "type": "doctype",
23 "name": "Quality Procedure",
24 "icon": "fa fa-sitemap",
25 "label": _("Tree of Procedures"),
Himanshu Warekar1cb695b2019-02-28 11:42:36 +053026 "route": "#Tree/Quality Procedure",
Himanshu0209ef02018-12-25 17:42:31 +053027 "description": _("Tree of Quality Procedures."),
28 },
29 ]
30 },
31 {
32 "label": _("Review and Action"),
33 "items": [
34 {
35 "type": "doctype",
36 "name": "Quality Review",
37 "description":_("Quality Review"),
Prateeksha Singh34234072019-02-07 09:18:24 +053038 "onboard": 1,
Himanshu0209ef02018-12-25 17:42:31 +053039 },
40 {
41 "type": "doctype",
42 "name": "Quality Action",
43 "description":_("Quality Action"),
44 }
45 ]
46 },
47 {
48 "label": _("Meeting"),
49 "items": [
50 {
51 "type": "doctype",
52 "name": "Quality Meeting",
53 "description":_("Quality Meeting"),
54 }
55 ]
56 },
57 {
58 "label": _("Feedback"),
59 "items": [
60 {
61 "type": "doctype",
62 "name": "Customer Feedback",
63 "description":_("Customer Feedback"),
Prateeksha Singh34234072019-02-07 09:18:24 +053064 "onboard": 1,
Himanshu0209ef02018-12-25 17:42:31 +053065 },
66 {
67 "type": "doctype",
68 "name": "Customer Feedback Template",
69 "description":_("Customer Feedback Template"),
70 }
71 ]
72 },
73 ]