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

45 lines
1.1 KiB
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
2014-02-14 10:17:51 +00:00
frappe.query_reports["Accounts Payable"] = {
"filters": [
{
"fieldname":"company",
2014-04-14 10:55:30 +00:00
"label": __("Company"),
"fieldtype": "Link",
"options": "Company",
2014-03-14 09:40:42 +00:00
"default": frappe.defaults.get_user_default("company")
},
{
"fieldname":"account",
2014-04-14 10:55:30 +00:00
"label": __("Account"),
"fieldtype": "Link",
"options": "Account",
"get_query": function() {
2014-02-14 10:17:51 +00:00
var company = frappe.query_report.filters_by_name.company.get_value();
return {
2014-05-28 07:26:28 +00:00
"query": "erpnext.controllers.queries.get_account_list",
"filters": {
"report_type": "Balance Sheet",
"company": company,
"master_type": "Supplier"
}
}
}
},
{
"fieldname":"report_date",
2014-04-14 10:55:30 +00:00
"label": __("Date"),
"fieldtype": "Date",
"default": get_today()
},
{
"fieldname":"ageing_based_on",
2014-04-14 10:55:30 +00:00
"label": __("Ageing Based On"),
"fieldtype": "Select",
"options": 'Posting Date' + NEWLINE + 'Due Date',
"default": "Posting Date"
}
]
2014-04-25 13:05:45 +00:00
}