blob: c2dacad495fd574cec228586da79fda87f66554c [file] [log] [blame]
Anand Doshid57e7932015-02-24 12:24:53 +05301from __future__ import unicode_literals
Anand Doshif5794f12014-03-03 15:05:28 +05302from frappe import _
3
Anand Doshi08ef4672014-05-08 11:43:18 +05304def get_data():
5 return [
6 {
7 "label": _("Documents"),
8 "icon": "icon-star",
9 "items": [
10 {
11 "type": "doctype",
12 "name": "BOM",
13 "description": _("Bill of Materials (BOM)"),
14 "label": _("Bill of Material")
15 },
16 {
17 "type": "doctype",
18 "name": "Production Order",
19 "description": _("Orders released for production."),
20 },
21 {
22 "type": "doctype",
Rushabh Mehtaa1da88a2015-02-23 20:18:38 +053023 "name": "Time Log",
24 "description": _("Time Logs for manufacturing."),
25 },
26 {
27 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053028 "name": "Item",
29 "description": _("All Products or Services."),
30 },
31 {
32 "type": "doctype",
33 "name": "Workstation",
Neil Trini Lasradoe84fa672014-11-27 10:49:07 +053034 "description": _("Where manufacturing operations are carried."),
Anand Doshi08ef4672014-05-08 11:43:18 +053035 },
Neil Trini Lasrado637d8042014-10-16 15:05:30 +053036 {
37 "type": "doctype",
38 "name": "Operation",
39 "description": _("Details of the operations carried out."),
40 },
Anand Doshic5e057f2014-04-15 16:13:48 +053041
Anand Doshi08ef4672014-05-08 11:43:18 +053042 ]
43 },
44 {
45 "label": _("Tools"),
46 "icon": "icon-wrench",
47 "items": [
48 {
49 "type": "doctype",
50 "name": "Production Planning Tool",
51 "description": _("Generate Material Requests (MRP) and Production Orders."),
52 },
53 {
54 "type": "doctype",
55 "name": "BOM Replace Tool",
56 "description": _("Replace Item / BOM in all BOMs"),
57 },
Nabin Hait878a1852015-05-26 12:40:57 +053058 {
59 "type": "page",
60 "name": "bom-browser",
61 "icon": "icon-sitemap",
62 "label": _("BOM Browser"),
63 "description": _("Tree of Bill of Materials"),
64 "doctype": "BOM"
65 }
Anand Doshi08ef4672014-05-08 11:43:18 +053066 ]
67 },
68 {
Rushabh Mehta99d09412015-02-24 14:41:12 +053069 "label": _("Setup"),
70 "items": [
71 {
72 "type": "doctype",
73 "name": "Manufacturing Settings",
74 "description": _("Global settings for all manufacturing processes."),
75 }
76 ]
77 },
78 {
Anand Doshi08ef4672014-05-08 11:43:18 +053079 "label": _("Standard Reports"),
80 "icon": "icon-list",
81 "items": [
82 {
83 "type": "report",
84 "is_query_report": True,
85 "name": "Open Production Orders",
86 "doctype": "Production Order"
87 },
88 {
89 "type": "report",
90 "is_query_report": True,
91 "name": "Production Orders in Progress",
92 "doctype": "Production Order"
93 },
94 {
95 "type": "report",
96 "is_query_report": True,
97 "name": "Issued Items Against Production Order",
98 "doctype": "Production Order"
99 },
100 {
101 "type": "report",
102 "is_query_report": True,
103 "name": "Completed Production Orders",
104 "doctype": "Production Order"
105 },
106 ]
107 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530108 {
109 "label": _("Help"),
110 "icon": "icon-facetime-video",
111 "items": [
112 {
113 "type": "help",
114 "label": _("Bill of Materials"),
115 "youtube_id": "hDV0c1OeWLo"
116 },
117 ]
118 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530119 ]