2013-11-20 12:59:58 +05:30
|
|
|
// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
2013-08-05 14:59:54 +05:30
|
|
|
// License: GNU General Public License v3. See license.txt"
|
2013-01-09 16:39:27 +05:30
|
|
|
|
|
|
|
wn.module_page["Manufacturing"] = [
|
|
|
|
{
|
|
|
|
title: wn._("Documents"),
|
2013-07-01 17:15:23 +05:30
|
|
|
top: true,
|
2013-01-09 16:39:27 +05:30
|
|
|
icon: "icon-copy",
|
|
|
|
items: [
|
2013-07-01 17:15:23 +05:30
|
|
|
{
|
|
|
|
label: wn._("Bill of Materials"),
|
|
|
|
description: wn._("Bill of Materials (BOM)"),
|
|
|
|
doctype:"BOM"
|
|
|
|
},
|
2013-01-09 16:39:27 +05:30
|
|
|
{
|
|
|
|
label: wn._("Production Order"),
|
|
|
|
description: wn._("Orders released for production."),
|
|
|
|
doctype:"Production Order"
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: wn._("Production Planning (MRP)"),
|
|
|
|
icon: "icon-wrench",
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
"route":"Form/Production Planning Tool/Production Planning Tool",
|
|
|
|
"label":wn._("Production Planning Tool"),
|
2013-02-18 13:49:15 +05:30
|
|
|
"description":wn._("Generate Material Requests (MRP) and Production Orders."),
|
2013-01-09 16:39:27 +05:30
|
|
|
doctype: "Production Planning Tool"
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: wn._("Masters"),
|
|
|
|
icon: "icon-book",
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
label: wn._("Item"),
|
|
|
|
description: wn._("All Products or Services."),
|
|
|
|
doctype:"Item"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: wn._("Workstation"),
|
|
|
|
description: wn._("Where manufacturing operations are carried out."),
|
|
|
|
doctype:"Workstation"
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: wn._("Utility"),
|
|
|
|
icon: "icon-wrench",
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
"route":"Form/BOM Replace Tool/BOM Replace Tool",
|
|
|
|
"label":wn._("BOM Replace Tool"),
|
|
|
|
"description":wn._("Replace Item / BOM in all BOMs"),
|
|
|
|
doctype: "BOM Replace Tool"
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
2013-05-03 18:27:23 +05:30
|
|
|
{
|
|
|
|
title: wn._("Reports"),
|
|
|
|
right: true,
|
|
|
|
icon: "icon-list",
|
|
|
|
items: [
|
2013-08-12 14:18:09 +05:30
|
|
|
{
|
|
|
|
"label":wn._("Open Production Orders"),
|
|
|
|
route: "query-report/Open Production Orders",
|
|
|
|
doctype:"Production Order"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label":wn._("Production Orders in Progress"),
|
|
|
|
route: "query-report/Production Orders in Progress",
|
|
|
|
doctype:"Production Order"
|
|
|
|
},
|
2013-05-03 18:27:23 +05:30
|
|
|
{
|
|
|
|
"label":wn._("Issued Items Against Production Order"),
|
|
|
|
route: "query-report/Issued Items Against Production Order",
|
2013-07-25 16:05:02 +05:30
|
|
|
doctype:"Production Order"
|
2013-05-03 18:27:23 +05:30
|
|
|
},
|
2013-08-12 14:18:09 +05:30
|
|
|
{
|
|
|
|
"label":wn._("Completed Production Orders"),
|
|
|
|
route: "query-report/Completed Production Orders",
|
|
|
|
doctype:"Production Order"
|
|
|
|
},
|
2013-05-03 18:27:23 +05:30
|
|
|
]
|
|
|
|
}
|
2013-01-09 16:39:27 +05:30
|
|
|
]
|
2012-02-23 12:35:32 +05:30
|
|
|
|
2012-12-10 19:28:38 +05:30
|
|
|
pscript['onload_manufacturing-home'] = function(wrapper) {
|
2013-01-09 16:39:27 +05:30
|
|
|
wn.views.moduleview.make(wrapper, "Manufacturing");
|
2012-02-21 19:03:50 +05:30
|
|
|
}
|