brotherton-erpnext/accounts/report/gross_profit/gross_profit.js

26 lines
657 B
JavaScript
Raw Normal View History

2013-11-20 07:29:58 +00:00
// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
// License: GNU General Public License v3. See license.txt
wn.query_reports["Gross Profit"] = {
"filters": [
{
"fieldname":"company",
2013-09-30 21:11:48 +00:00
"label": wn._("Company"),
"fieldtype": "Link",
"options": "Company",
"default": wn.defaults.get_user_default("company")
},
2013-03-22 07:46:10 +00:00
{
"fieldname":"from_date",
2013-09-30 21:11:48 +00:00
"label": wn._("From Date"),
2013-03-22 07:46:10 +00:00
"fieldtype": "Date",
"default": wn.defaults.get_user_default("year_start_date")
},
{
"fieldname":"to_date",
2013-09-30 21:11:48 +00:00
"label": wn._("To Date"),
2013-03-22 07:46:10 +00:00
"fieldtype": "Date",
"default": wn.defaults.get_user_default("year_end_date")
},
]
}