Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 1 | from frappe import _ |
| 2 | |
| 3 | data = [ |
| 4 | { |
| 5 | "label": _("Documents"), |
| 6 | "icon": "icon-star", |
| 7 | "items": [ |
| 8 | { |
| 9 | "type": "doctype", |
Anand Doshi | c5e057f | 2014-04-15 16:13:48 +0530 | [diff] [blame] | 10 | "name": "BOM", |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 11 | "description": _("Bill of Materials (BOM)"), |
Anand Doshi | c5e057f | 2014-04-15 16:13:48 +0530 | [diff] [blame] | 12 | "label": _("Bill of Material") |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 13 | }, |
| 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 Doshi | c5e057f | 2014-04-15 16:13:48 +0530 | [diff] [blame] | 29 | |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 30 | ] |
| 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 Doshi | c5e057f | 2014-04-15 16:13:48 +0530 | [diff] [blame] | 78 | ] |