blob: f982dffc32c6aa3f01481376a56c1367209db2e3 [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 },
58 ]
59 },
60 {
Rushabh Mehta99d09412015-02-24 14:41:12 +053061 "label": _("Setup"),
62 "items": [
63 {
64 "type": "doctype",
65 "name": "Manufacturing Settings",
66 "description": _("Global settings for all manufacturing processes."),
67 }
68 ]
69 },
70 {
Anand Doshi08ef4672014-05-08 11:43:18 +053071 "label": _("Standard Reports"),
72 "icon": "icon-list",
73 "items": [
74 {
75 "type": "report",
76 "is_query_report": True,
77 "name": "Open Production Orders",
78 "doctype": "Production Order"
79 },
80 {
81 "type": "report",
82 "is_query_report": True,
83 "name": "Production Orders in Progress",
84 "doctype": "Production Order"
85 },
86 {
87 "type": "report",
88 "is_query_report": True,
89 "name": "Issued Items Against Production Order",
90 "doctype": "Production Order"
91 },
92 {
93 "type": "report",
94 "is_query_report": True,
95 "name": "Completed Production Orders",
96 "doctype": "Production Order"
97 },
98 ]
99 },
100 ]