2014-10-10 18:02:23 +05:30
|
|
|
// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors and contributors
|
|
|
|
// For license information, please see license.txt
|
2013-08-05 14:59:54 +05:30
|
|
|
|
2014-10-10 18:02:23 +05:30
|
|
|
frappe.query_reports["Stock Balance"] = {
|
2013-06-05 11:36:24 +05:30
|
|
|
"filters": [
|
|
|
|
{
|
|
|
|
"fieldname":"from_date",
|
2014-04-14 16:25:30 +05:30
|
|
|
"label": __("From Date"),
|
2013-06-05 11:36:24 +05:30
|
|
|
"fieldtype": "Date",
|
|
|
|
"width": "80",
|
|
|
|
"default": sys_defaults.year_start_date,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fieldname":"to_date",
|
2014-04-14 16:25:30 +05:30
|
|
|
"label": __("To Date"),
|
2013-06-05 11:36:24 +05:30
|
|
|
"fieldtype": "Date",
|
|
|
|
"width": "80",
|
2014-02-14 15:47:51 +05:30
|
|
|
"default": frappe.datetime.get_today()
|
2013-06-05 11:36:24 +05:30
|
|
|
}
|
|
|
|
]
|
2014-10-10 18:02:23 +05:30
|
|
|
}
|