Himanshu | 0209ef0 | 2018-12-25 17:42:31 +0530 | [diff] [blame] | 1 | from __future__ import unicode_literals |
| 2 | from frappe import _ |
| 3 | |
| 4 | def 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 Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 13 | "onboard": 1, |
Himanshu | 0209ef0 | 2018-12-25 17:42:31 +0530 | [diff] [blame] | 14 | }, |
| 15 | { |
| 16 | "type": "doctype", |
| 17 | "name": "Quality Procedure", |
| 18 | "description":_("Quality Procedure."), |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 19 | "onboard": 1, |
Himanshu | 0209ef0 | 2018-12-25 17:42:31 +0530 | [diff] [blame] | 20 | }, |
| 21 | { |
| 22 | "type": "doctype", |
| 23 | "name": "Quality Procedure", |
| 24 | "icon": "fa fa-sitemap", |
| 25 | "label": _("Tree of Procedures"), |
Himanshu Warekar | 1cb695b | 2019-02-28 11:42:36 +0530 | [diff] [blame] | 26 | "route": "#Tree/Quality Procedure", |
Himanshu | 0209ef0 | 2018-12-25 17:42:31 +0530 | [diff] [blame] | 27 | "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 Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 38 | "onboard": 1, |
Himanshu | 0209ef0 | 2018-12-25 17:42:31 +0530 | [diff] [blame] | 39 | }, |
| 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", |
Himanshu Warekar | 70a2734 | 2019-05-30 01:40:31 +0530 | [diff] [blame] | 62 | "name": "Quality Feedback", |
| 63 | "description":_("Quality Feedback"), |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 64 | "onboard": 1, |
Himanshu | 0209ef0 | 2018-12-25 17:42:31 +0530 | [diff] [blame] | 65 | }, |
| 66 | { |
| 67 | "type": "doctype", |
Himanshu Warekar | 70a2734 | 2019-05-30 01:40:31 +0530 | [diff] [blame] | 68 | "name": "Quality Feedback Template", |
| 69 | "description":_("Quality Feedback Template"), |
Himanshu | 0209ef0 | 2018-12-25 17:42:31 +0530 | [diff] [blame] | 70 | } |
| 71 | ] |
| 72 | }, |
| 73 | ] |