40 lines
761 B
JavaScript
40 lines
761 B
JavaScript
// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
|
|
// For license information, please see license.txt
|
|
/* eslint-disable */
|
|
|
|
frappe.query_reports["Inactive Items"] = {
|
|
"filters": [
|
|
{
|
|
fieldname: "territory",
|
|
label: __("Territory"),
|
|
fieldtype: "Link",
|
|
options: "Territory"
|
|
},
|
|
{
|
|
fieldname: "customer",
|
|
label: __("Customer"),
|
|
fieldtype: "Link",
|
|
options: "Customer"
|
|
},
|
|
{
|
|
fieldname: "item",
|
|
label: __("Item"),
|
|
fieldtype: "Link",
|
|
options: "Item"
|
|
},
|
|
{
|
|
fieldname: "item_group",
|
|
label: __("Item Group"),
|
|
fieldtype: "Link",
|
|
options: "Item Group"
|
|
},
|
|
{
|
|
fieldname: "days",
|
|
label: __("Days Since Last order"),
|
|
fieldtype: "Select",
|
|
options: [30, 60, 90],
|
|
default: 30
|
|
},
|
|
]
|
|
}
|