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