blob: 0be93f87e718ba5ee686dc1cbee658dfec88b0b8 [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",
23 "name": "Item",
24 "description": _("All Products or Services."),
25 },
26 {
27 "type": "doctype",
28 "name": "Workstation",
29 "description": _("Where manufacturing operations are carried out."),
30 },
Anand Doshic5e057f2014-04-15 16:13:48 +053031
Anand Doshi08ef4672014-05-08 11:43:18 +053032 ]
33 },
34 {
35 "label": _("Tools"),
36 "icon": "icon-wrench",
37 "items": [
38 {
39 "type": "doctype",
40 "name": "Production Planning Tool",
41 "description": _("Generate Material Requests (MRP) and Production Orders."),
42 },
43 {
44 "type": "doctype",
45 "name": "BOM Replace Tool",
46 "description": _("Replace Item / BOM in all BOMs"),
47 },
48 ]
49 },
50 {
51 "label": _("Standard Reports"),
52 "icon": "icon-list",
53 "items": [
54 {
55 "type": "report",
56 "is_query_report": True,
57 "name": "Open Production Orders",
58 "doctype": "Production Order"
59 },
60 {
61 "type": "report",
62 "is_query_report": True,
63 "name": "Production Orders in Progress",
64 "doctype": "Production Order"
65 },
66 {
67 "type": "report",
68 "is_query_report": True,
69 "name": "Issued Items Against Production Order",
70 "doctype": "Production Order"
71 },
72 {
73 "type": "report",
74 "is_query_report": True,
75 "name": "Completed Production Orders",
76 "doctype": "Production Order"
77 },
78 ]
79 },
80 ]