// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. // License: GNU General Public License v3. See license.txt wn.query_reports["Sales Register"] = { "filters": [ { "fieldname":"from_date", "label": wn._("From Date"), "fieldtype": "Date", "default": wn.defaults.get_default("year_start_date"), "width": "80" }, { "fieldname":"to_date", "label": wn._("To Date"), "fieldtype": "Date", "default": get_today() }, { "fieldname":"account", "label": wn._("Account"), "fieldtype": "Link", "options": "Account", "get_query": function() { var company = wn.query_report.filters_by_name.company.get_value(); return { "query": "accounts.utils.get_account_list", "filters": { "is_pl_account": "No", "debit_or_credit": "Debit", "company": company, "master_type": "Customer" } } } }, { "fieldname":"company", "label": wn._("Company"), "fieldtype": "Link", "options": "Company", "default": wn.defaults.get_default("company") } ] }