brotherton-erpnext/stock/page/stock_home/stock_home.js

254 lines
5.9 KiB
JavaScript
Raw Normal View History

// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
// License: GNU General Public License v3. See license.txt"
2013-01-09 11:09:27 +00:00
wn.module_page["Stock"] = [
{
title: wn._("Documents"),
2013-07-01 11:45:23 +00:00
top: true,
2013-01-09 11:09:27 +00:00
icon: "icon-copy",
items: [
{
label: wn._("Item"),
description: wn._("All Products or Services."),
doctype:"Item"
},
{
label: wn._("Material Request"),
2013-05-27 13:02:20 +00:00
description: wn._("Requests for items."),
doctype:"Material Request"
},
2013-01-09 11:09:27 +00:00
{
label: wn._("Stock Entry"),
2013-05-27 13:02:20 +00:00
description: wn._("Record item movement."),
2013-01-09 11:09:27 +00:00
doctype:"Stock Entry"
},
{
label: wn._("Delivery Note"),
2013-05-27 13:02:20 +00:00
description: wn._("Shipments to customers."),
2013-01-09 11:09:27 +00:00
doctype:"Delivery Note"
},
{
label: wn._("Purchase Receipt"),
description: wn._("Goods received from Suppliers."),
doctype:"Purchase Receipt"
},
]
},
{
title: wn._("Masters"),
icon: "icon-book",
items: [
{
label: wn._("Serial No"),
description: wn._("Single unit of an Item."),
doctype:"Serial No"
},
{
label: wn._("Batch"),
description: wn._("Batch (lot) of an Item."),
doctype:"Batch"
},
{
label: wn._("Warehouse"),
description: wn._("Where items are stored."),
doctype:"Warehouse"
},
]
},
{
title: wn._("Tools"),
icon: "icon-wrench",
items: [
{
"doctype":"Stock Reconciliation",
"label": wn._("Stock Reconciliation"),
description: wn._("Upload stock balance via csv.")
},
{
"doctype":"Installation Note",
"label": wn._("Installation Note"),
description: wn._("Installation record for a Serial No.")
},
{
"label": wn._("Packing Slip"),
"doctype":"Packing Slip",
description: wn._("Split Delivery Note into packages.")
},
{
"doctype":"Price List",
"label": wn._("Price List"),
"description": wn._("Multiple Item Prices")
},
{
"doctype":"Quality Inspection",
"label": wn._("Quality Inspection"),
description: wn._("Incoming quality inspection.")
},
{
"route":"Form/Landed Cost Wizard/Landed Cost Wizard",
2013-01-09 11:09:27 +00:00
"label": wn._("Landed Cost Wizard"),
description: wn._("Distribute transport overhead across items."),
doctype: "Landed Cost Wizard"
},
{
"route":"Form/Stock UOM Replace Utility/Stock UOM Replace Utility",
2013-01-09 11:09:27 +00:00
"label": wn._("UOM Replace Utility"),
description: wn._("Change UOM for an Item."),
2013-01-09 11:09:27 +00:00
"doctype": "Stock UOM Replace Utility"
},
]
},
{
title: wn._("Setup"),
icon: "icon-cog",
items: [
{
"label": wn._("Stock Settings"),
"route": "Form/Stock Settings",
"doctype":"Stock Settings",
2013-06-25 06:16:07 +00:00
"description": "Settings for Stock Module"
},
2013-01-09 11:09:27 +00:00
{
"route":"Sales Browser/Item Group",
"label": wn._("Item Group"),
"doctype": "Item Group",
2013-01-09 11:09:27 +00:00
"description": wn._("Item classification.")
},
{
"doctype":"UOM",
"label": wn._("Unit of Measure") + " (UOM)",
"description": wn._("e.g. Kg, Unit, Nos, m")
},
{
"doctype":"Brand",
"label": wn._("Brand"),
"description": wn._("Brand master.")
}
]
},
{
title: wn._("Main Reports"),
right: true,
icon: "icon-table",
items: [
{
"label":wn._("Stock Ledger"),
page: "stock-ledger"
},
{
"label":wn._("Stock Balance"),
page: "stock-balance"
},
{
"page":"stock-level",
"label": wn._("Stock Level")
},
{
"page":"stock-ageing",
"label": wn._("Stock Ageing")
},
]
},
{
title: wn._("Analytics"),
right: true,
icon: "icon-bar-chart",
items: [
{
"label":wn._("Stock Analytics"),
page: "stock-analytics"
},
]
},
{
title: wn._("Reports"),
right: true,
icon: "icon-list",
items: [
{
"label":wn._("Stock Ledger"),
route: "Report/Stock Ledger Entry/Stock Ledger",
2013-01-09 11:09:27 +00:00
doctype: "Stock Ledger Entry"
},
{
"label":wn._("Ordered Items To Be Delivered"),
route: "query-report/Ordered Items To Be Delivered",
doctype: "Delivery Note"
},
{
"label":wn._("Purchase Order Items To Be Received"),
route: "query-report/Purchase Order Items To Be Received",
doctype: "Purchase Receipt"
},
{
"label":wn._("Item Shortage Report"),
route: "Report/Bin/Item Shortage Report",
doctype: "Purchase Receipt"
},
2013-01-09 11:09:27 +00:00
{
"label":wn._("Serial No Service Contract Expiry"),
route: "Report/Serial No/Serial No Service Contract Expiry",
2013-01-09 11:09:27 +00:00
doctype: "Serial No"
},
{
"label":wn._("Serial No Status"),
route: "Report/Serial No/Serial No Status",
2013-01-09 11:09:27 +00:00
doctype: "Serial No"
},
{
"label":wn._("Serial No Warranty Expiry"),
route: "Report/Serial No/Serial No Warranty Expiry",
2013-01-09 11:09:27 +00:00
doctype: "Serial No"
},
{
"label":wn._("Item-wise Price List Rate"),
route: "Report/Price List/Item-Wise Price List",
doctype: "Price List"
2013-01-09 11:09:27 +00:00
},
{
"label":wn._("Purchase In Transit"),
route: "query-report/Purchase In Transit",
doctype: "Purchase Order"
},
2013-05-13 10:59:28 +00:00
{
"label":wn._("Requested Items To Be Transferred"),
route: "query-report/Requested Items To Be Transferred",
doctype: "Material Request"
2013-05-13 10:59:28 +00:00
},
2013-06-05 06:06:24 +00:00
{
"label":wn._("Batch-Wise Balance History"),
route: "query-report/Batch-Wise Balance History",
doctype: "Batch"
2013-06-05 06:06:24 +00:00
},
{
"label":wn._("Warehouse-Wise Stock Balance"),
route: "query-report/Warehouse-Wise Stock Balance",
doctype: "Warehouse"
2013-06-05 06:06:24 +00:00
},
2013-06-06 13:03:26 +00:00
{
"label":wn._("Item Prices"),
route: "query-report/Item Prices",
doctype: "Price List"
2013-06-07 09:53:56 +00:00
},
{
"label":wn._("Itemwise Recommended Reorder Level"),
route: "query-report/Itemwise Recommended Reorder Level",
doctype: "Item"
},
{
"label":wn._("Delivery Note Trends"),
route: "query-report/Delivery Note Trends",
doctype: "Delivery Note"
},
{
"label":wn._("Purchase Receipt Trends"),
route: "query-report/Purchase Receipt Trends",
doctype: "Purchase Receipt"
},
2013-01-09 11:09:27 +00:00
]
}
]
2012-02-23 07:05:32 +00:00
pscript['onload_stock-home'] = function(wrapper) {
2013-01-09 11:09:27 +00:00
wn.views.moduleview.make(wrapper, "Stock");
}