blob: b213f5dd413a495939efcc5071b9e598d31a1a03 [file] [log] [blame]
Anand Doshif5794f12014-03-03 15:05:28 +05301from frappe import _
2
3data = [
4 {
5 "label": _("Documents"),
6 "icon": "icon-star",
7 "items": [
8 {
9 "type": "doctype",
Anand Doshic5e057f2014-04-15 16:13:48 +053010 "name": "BOM",
Anand Doshif5794f12014-03-03 15:05:28 +053011 "description": _("Bill of Materials (BOM)"),
Anand Doshic5e057f2014-04-15 16:13:48 +053012 "label": _("Bill of Material")
Anand Doshif5794f12014-03-03 15:05:28 +053013 },
14 {
15 "type": "doctype",
16 "name": "Production Order",
17 "description": _("Orders released for production."),
18 },
19 {
20 "type": "doctype",
21 "name": "Item",
22 "description": _("All Products or Services."),
23 },
24 {
25 "type": "doctype",
26 "name": "Workstation",
27 "description": _("Where manufacturing operations are carried out."),
28 },
Anand Doshic5e057f2014-04-15 16:13:48 +053029
Anand Doshif5794f12014-03-03 15:05:28 +053030 ]
31 },
32 {
33 "label": _("Tools"),
34 "icon": "icon-wrench",
35 "items": [
36 {
37 "type": "doctype",
38 "name": "Production Planning Tool",
39 "description": _("Generate Material Requests (MRP) and Production Orders."),
40 },
41 {
42 "type": "doctype",
43 "name": "BOM Replace Tool",
44 "description": _("Replace Item / BOM in all BOMs"),
45 },
46 ]
47 },
48 {
49 "label": _("Standard Reports"),
50 "icon": "icon-list",
51 "items": [
52 {
53 "type": "report",
54 "is_query_report": True,
55 "name": "Open Production Orders",
56 "doctype": "Production Order"
57 },
58 {
59 "type": "report",
60 "is_query_report": True,
61 "name": "Production Orders in Progress",
62 "doctype": "Production Order"
63 },
64 {
65 "type": "report",
66 "is_query_report": True,
67 "name": "Issued Items Against Production Order",
68 "doctype": "Production Order"
69 },
70 {
71 "type": "report",
72 "is_query_report": True,
73 "name": "Completed Production Orders",
74 "doctype": "Production Order"
75 },
76 ]
77 },
Anand Doshic5e057f2014-04-15 16:13:48 +053078]