40 lines
839 B
JavaScript
40 lines
839 B
JavaScript
// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
// License: GNU General Public License v3. See license.txt
|
|
|
|
frappe.query_reports["Stock Ageing"] = {
|
|
"filters": [
|
|
{
|
|
"fieldname":"company",
|
|
"label": __("Company"),
|
|
"fieldtype": "Link",
|
|
"options": "Company",
|
|
"default": frappe.defaults.get_user_default("Company"),
|
|
"reqd": 1
|
|
},
|
|
{
|
|
"fieldname":"to_date",
|
|
"label": __("To Date"),
|
|
"fieldtype": "Date",
|
|
"default": frappe.datetime.get_today(),
|
|
"reqd": 1
|
|
},
|
|
{
|
|
"fieldname":"warehouse",
|
|
"label": __("Warehouse"),
|
|
"fieldtype": "Link",
|
|
"options": "Warehouse"
|
|
},
|
|
{
|
|
"fieldname":"item_code",
|
|
"label": __("Item"),
|
|
"fieldtype": "Link",
|
|
"options": "Item"
|
|
},
|
|
{
|
|
"fieldname":"brand",
|
|
"label": __("Brand"),
|
|
"fieldtype": "Link",
|
|
"options": "Brand"
|
|
}
|
|
]
|
|
} |