blob: a17b9f554126dab55f3492922153c9648fc2b38e [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."),
13 },
14 {
15 "type": "doctype",
16 "name": "Quality Procedure",
17 "description":_("Quality Procedure."),
18 },
19 {
20 "type": "doctype",
21 "name": "Quality Procedure",
22 "icon": "fa fa-sitemap",
23 "label": _("Tree of Procedures"),
24 "route": "Tree/Quality Procedure",
25 "description": _("Tree of Quality Procedures."),
26 },
27 ]
28 },
29 {
30 "label": _("Review and Action"),
31 "items": [
32 {
33 "type": "doctype",
34 "name": "Quality Review",
35 "description":_("Quality Review"),
36 },
37 {
38 "type": "doctype",
39 "name": "Quality Action",
40 "description":_("Quality Action"),
41 }
42 ]
43 },
44 {
45 "label": _("Meeting"),
46 "items": [
47 {
48 "type": "doctype",
49 "name": "Quality Meeting",
50 "description":_("Quality Meeting"),
51 }
52 ]
53 },
54 {
55 "label": _("Feedback"),
56 "items": [
57 {
58 "type": "doctype",
59 "name": "Customer Feedback",
60 "description":_("Customer Feedback"),
61 },
62 {
63 "type": "doctype",
64 "name": "Customer Feedback Template",
65 "description":_("Customer Feedback Template"),
66 }
67 ]
68 },
69 ]