2015-02-24 12:24:53 +05:30
|
|
|
from __future__ import unicode_literals
|
2014-03-03 15:05:28 +05:30
|
|
|
from frappe import _
|
|
|
|
|
2014-05-08 11:43:18 +05:30
|
|
|
def get_data():
|
|
|
|
return [
|
|
|
|
{
|
2016-03-08 18:06:21 +05:30
|
|
|
"label": _("Stock Transactions"),
|
2014-05-08 11:43:18 +05:30
|
|
|
"items": [
|
2015-11-02 10:45:18 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 18:06:21 +05:30
|
|
|
"name": "Stock Entry",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Delivery Note",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Purchase Receipt",
|
2015-11-02 10:45:18 +05:30
|
|
|
},
|
2014-05-08 11:43:18 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Material Request",
|
|
|
|
},
|
2016-03-08 18:06:21 +05:30
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Stock Reports"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Stock Ledger",
|
|
|
|
"doctype": "Stock Ledger Entry",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Stock Balance",
|
|
|
|
"doctype": "Stock Ledger Entry"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Stock Projected Qty",
|
|
|
|
"doctype": "Item",
|
|
|
|
},
|
2017-02-01 18:17:35 +05:30
|
|
|
{
|
|
|
|
"type": "page",
|
|
|
|
"name": "stock-balance",
|
|
|
|
"label": _("Stock Summary")
|
|
|
|
},
|
2016-03-08 18:06:21 +05:30
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Stock Ageing",
|
|
|
|
"doctype": "Item",
|
|
|
|
},
|
2017-12-12 15:05:03 +05:30
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Item Price Stock",
|
|
|
|
"doctype": "Item",
|
|
|
|
}
|
2016-03-08 18:06:21 +05:30
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Items and Pricing"),
|
|
|
|
"items": [
|
2014-05-08 11:43:18 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 18:06:21 +05:30
|
|
|
"name": "Item",
|
2014-05-08 11:43:18 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-03-28 11:51:44 +05:30
|
|
|
"name": "Item Alternative",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 18:06:21 +05:30
|
|
|
"name": "Product Bundle",
|
2014-05-08 11:43:18 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 18:06:21 +05:30
|
|
|
"name": "Price List",
|
|
|
|
},
|
|
|
|
{
|
2016-07-05 18:02:38 +05:30
|
|
|
"type": "doctype",
|
|
|
|
"name": "Item Group",
|
2016-12-07 11:08:48 +05:30
|
|
|
"icon": "fa fa-sitemap",
|
2016-03-08 18:06:21 +05:30
|
|
|
"label": _("Item Group"),
|
2016-06-21 13:19:17 +05:30
|
|
|
"link": "Tree/Item Group",
|
2014-05-08 11:43:18 +05:30
|
|
|
},
|
2014-09-23 14:53:30 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 18:06:21 +05:30
|
|
|
"name": "Item Price",
|
2014-09-23 14:53:30 +05:30
|
|
|
},
|
2014-05-08 11:43:18 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 18:06:21 +05:30
|
|
|
"name": "Shipping Rule",
|
2014-05-08 11:43:18 +05:30
|
|
|
},
|
2016-03-08 18:06:21 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Pricing Rule",
|
|
|
|
},
|
2017-08-29 18:15:57 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Item Variant Settings",
|
|
|
|
},
|
2016-03-08 18:06:21 +05:30
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Serial No and Batch"),
|
|
|
|
"items": [
|
2014-05-08 11:43:18 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Serial No",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Batch",
|
|
|
|
},
|
2016-03-08 18:06:21 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Installation Note",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"name": "Serial No Service Contract Expiry",
|
|
|
|
"doctype": "Serial No"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"name": "Serial No Status",
|
|
|
|
"doctype": "Serial No"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"name": "Serial No Warranty Expiry",
|
|
|
|
"doctype": "Serial No"
|
|
|
|
},
|
2014-05-08 11:43:18 +05:30
|
|
|
]
|
|
|
|
},
|
2017-11-08 10:58:09 +08:00
|
|
|
{
|
|
|
|
"label": _("Fulfilment"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Delivery Trip",
|
|
|
|
"description": _("Delivery Trip service tours to customers.")
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2014-05-08 11:43:18 +05:30
|
|
|
{
|
|
|
|
"label": _("Tools"),
|
2016-12-07 11:08:48 +05:30
|
|
|
"icon": "fa fa-wrench",
|
2014-05-08 11:43:18 +05:30
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Stock Reconciliation",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Packing Slip",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Quality Inspection",
|
|
|
|
},
|
2018-02-22 11:03:48 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Quality Inspection Template",
|
|
|
|
},
|
2014-05-08 11:43:18 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
2014-09-01 18:14:44 +05:30
|
|
|
"name": "Landed Cost Voucher",
|
2015-08-10 15:51:13 +05:30
|
|
|
}
|
2014-05-08 11:43:18 +05:30
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Setup"),
|
2016-12-07 11:08:48 +05:30
|
|
|
"icon": "fa fa-cog",
|
2014-05-08 11:43:18 +05:30
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Stock Settings",
|
|
|
|
},
|
|
|
|
{
|
2016-03-08 18:06:21 +05:30
|
|
|
"type": "doctype",
|
|
|
|
"name": "Warehouse",
|
2014-05-08 11:43:18 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "UOM",
|
|
|
|
"label": _("Unit of Measure") + " (UOM)",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 18:06:21 +05:30
|
|
|
"name": "Item Attribute",
|
2014-05-08 11:43:18 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Brand",
|
2017-11-14 16:36:25 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Item Variant Settings",
|
2014-05-08 11:43:18 +05:30
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2016-03-08 18:06:21 +05:30
|
|
|
"label": _("Analytics"),
|
2016-12-07 11:08:48 +05:30
|
|
|
"icon": "fa fa-table",
|
2014-05-08 11:43:18 +05:30
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "report",
|
2016-03-08 18:06:21 +05:30
|
|
|
"is_query_report": False,
|
|
|
|
"name": "Item-wise Price List Rate",
|
|
|
|
"doctype": "Item Price",
|
2014-05-08 11:43:18 +05:30
|
|
|
},
|
|
|
|
{
|
2018-11-12 17:05:31 +05:30
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Stock Analytics",
|
|
|
|
"doctype": "Stock Entry"
|
2014-05-08 11:43:18 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
2016-03-08 18:06:21 +05:30
|
|
|
"name": "Delivery Note Trends",
|
|
|
|
"doctype": "Delivery Note"
|
2014-05-08 11:43:18 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
2016-03-08 18:06:21 +05:30
|
|
|
"name": "Purchase Receipt Trends",
|
|
|
|
"doctype": "Purchase Receipt"
|
2014-05-08 11:43:18 +05:30
|
|
|
},
|
2016-03-08 18:06:21 +05:30
|
|
|
|
2014-05-08 11:43:18 +05:30
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2016-03-08 18:06:21 +05:30
|
|
|
"label": _("Reports"),
|
2016-12-07 11:08:48 +05:30
|
|
|
"icon": "fa fa-list",
|
2014-05-08 11:43:18 +05:30
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Ordered Items To Be Delivered",
|
|
|
|
"doctype": "Delivery Note"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Purchase Order Items To Be Received",
|
|
|
|
"doctype": "Purchase Receipt"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"name": "Item Shortage Report",
|
|
|
|
"route": "Report/Bin/Item Shortage Report",
|
|
|
|
"doctype": "Purchase Receipt"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Requested Items To Be Transferred",
|
|
|
|
"doctype": "Material Request"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Batch-Wise Balance History",
|
|
|
|
"doctype": "Batch"
|
|
|
|
},
|
2016-12-21 12:32:12 +05:30
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Batch Item Expiry Status",
|
|
|
|
"doctype": "Stock Ledger Entry"
|
|
|
|
},
|
2014-05-08 11:43:18 +05:30
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Item Prices",
|
|
|
|
"doctype": "Price List"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Itemwise Recommended Reorder Level",
|
|
|
|
"doctype": "Item"
|
|
|
|
},
|
2017-11-17 12:00:29 +05:30
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Item Variant Details",
|
|
|
|
"doctype": "Item"
|
|
|
|
}
|
2014-05-08 11:43:18 +05:30
|
|
|
]
|
|
|
|
},
|
2015-05-25 18:30:53 +05:30
|
|
|
{
|
|
|
|
"label": _("Help"),
|
2016-12-07 11:08:48 +05:30
|
|
|
"icon": "fa fa-facetime-video",
|
2015-05-25 18:30:53 +05:30
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "help",
|
|
|
|
"label": _("Items and Pricing"),
|
|
|
|
"youtube_id": "qXaEwld4_Ps"
|
|
|
|
},
|
2015-10-27 17:01:27 +05:30
|
|
|
{
|
|
|
|
"type": "help",
|
|
|
|
"label": _("Item Variants"),
|
|
|
|
"youtube_id": "OGBETlCzU5o"
|
|
|
|
},
|
2015-05-25 18:30:53 +05:30
|
|
|
{
|
|
|
|
"type": "help",
|
|
|
|
"label": _("Opening Stock Balance"),
|
2015-05-29 16:26:07 +05:30
|
|
|
"youtube_id": "0yPgrtfeCTs"
|
2015-05-25 18:30:53 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "help",
|
2015-10-27 17:01:27 +05:30
|
|
|
"label": _("Making Stock Entries"),
|
|
|
|
"youtube_id": "Njt107hlY3I"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "help",
|
|
|
|
"label": _("Serialized Inventory"),
|
|
|
|
"youtube_id": "gvOVlEwFDAk"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "help",
|
|
|
|
"label": _("Batch Inventory"),
|
|
|
|
"youtube_id": "J0QKl7ABPKM"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "help",
|
|
|
|
"label": _("Managing Subcontracting"),
|
|
|
|
"youtube_id": "ThiMCC2DtKo"
|
2015-05-25 18:30:53 +05:30
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|
2014-05-08 11:43:18 +05:30
|
|
|
]
|