34 lines
777 B
JavaScript
34 lines
777 B
JavaScript
// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
|
// License: GNU General Public License v3. See license.txt
|
|
|
|
frappe.query_reports["Accounts Payable"] = {
|
|
"filters": [
|
|
{
|
|
"fieldname":"company",
|
|
"label": __("Company"),
|
|
"fieldtype": "Link",
|
|
"options": "Company",
|
|
"default": frappe.defaults.get_user_default("company")
|
|
},
|
|
{
|
|
"fieldname":"supplier",
|
|
"label": __("Supplier"),
|
|
"fieldtype": "Link",
|
|
"options": "Supplier"
|
|
},
|
|
{
|
|
"fieldname":"report_date",
|
|
"label": __("Date"),
|
|
"fieldtype": "Date",
|
|
"default": get_today()
|
|
},
|
|
{
|
|
"fieldname":"ageing_based_on",
|
|
"label": __("Ageing Based On"),
|
|
"fieldtype": "Select",
|
|
"options": 'Posting Date' + NEWLINE + 'Due Date',
|
|
"default": "Posting Date"
|
|
}
|
|
]
|
|
}
|