brotherton-erpnext/erpnext/stock/report/stock_ageing/stock_ageing.js

40 lines
842 B
JavaScript
Raw Normal View History

2013-12-26 05:37:58 +00:00
// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
// License: GNU General Public License v3. See license.txt
2014-02-14 10:17:51 +00:00
frappe.query_reports["Stock Ageing"] = {
2013-12-26 05:37:58 +00:00
"filters": [
{
"fieldname":"company",
2014-04-14 10:55:30 +00:00
"label": __("Company"),
2013-12-26 05:37:58 +00:00
"fieldtype": "Link",
"options": "Company",
2014-02-14 10:17:51 +00:00
"default": frappe.defaults.get_user_default("company"),
2013-12-26 05:37:58 +00:00
"reqd": 1
},
{
"fieldname":"to_date",
2014-04-14 10:55:30 +00:00
"label": __("To Date"),
2013-12-26 05:37:58 +00:00
"fieldtype": "Date",
2014-02-14 10:17:51 +00:00
"default": frappe.datetime.get_today(),
2013-12-26 05:37:58 +00:00
"reqd": 1
},
{
"fieldname":"warehouse",
2014-04-14 10:55:30 +00:00
"label": __("Warehouse"),
2013-12-26 05:37:58 +00:00
"fieldtype": "Link",
"options": "Warehouse"
},
{
"fieldname":"item_code",
2014-04-14 10:55:30 +00:00
"label": __("Item"),
2013-12-26 05:37:58 +00:00
"fieldtype": "Link",
"options": "Item"
},
{
"fieldname":"brand",
2014-04-14 10:55:30 +00:00
"label": __("Brand"),
2013-12-26 05:37:58 +00:00
"fieldtype": "Link",
"options": "Brand"
}
]
}