29 lines
622 B
JavaScript
29 lines
622 B
JavaScript
// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors
|
|
// For license information, please see license.txt
|
|
|
|
frappe.query_reports["Stock Balance"] = {
|
|
"filters": [
|
|
{
|
|
"fieldname":"from_date",
|
|
"label": __("From Date"),
|
|
"fieldtype": "Date",
|
|
"width": "80",
|
|
"default": sys_defaults.year_start_date,
|
|
},
|
|
{
|
|
"fieldname":"to_date",
|
|
"label": __("To Date"),
|
|
"fieldtype": "Date",
|
|
"width": "80",
|
|
"default": frappe.datetime.get_today()
|
|
},
|
|
{
|
|
"fieldname": "item_code",
|
|
"label": __("Item"),
|
|
"fieldtype": "Link",
|
|
"width": "80",
|
|
"options": "Item"
|
|
}
|
|
]
|
|
}
|