mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-22 06:29:20 +00:00
28 lines
624 B
JavaScript
28 lines
624 B
JavaScript
// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
|
// License: GNU General Public License v3. See license.txt
|
|
|
|
wn.query_reports["Item-wise Consumption"] = {
|
|
"filters": [
|
|
{
|
|
"fieldname":"supplier",
|
|
"label": wn._("Supplier"),
|
|
"fieldtype": "Link",
|
|
"options": "Supplier",
|
|
"width": "80"
|
|
},
|
|
{
|
|
"fieldname":"from_date",
|
|
"label": wn._("From Date"),
|
|
"fieldtype": "Date",
|
|
"width": "80",
|
|
"default": wn.datetime.month_start()
|
|
},
|
|
{
|
|
"fieldname":"to_date",
|
|
"label": wn._("To Date"),
|
|
"fieldtype": "Date",
|
|
"width": "80",
|
|
"default": wn.datetime.month_end()
|
|
},
|
|
]
|
|
} |