[Enhancement] Summary link on Accounts Payable and Accounts Receivable
This commit is contained in:
parent
ab42fc006f
commit
f4832cf2b9
@ -53,5 +53,11 @@ frappe.query_reports["Accounts Payable"] = {
|
|||||||
"default": "90",
|
"default": "90",
|
||||||
"reqd": 1
|
"reqd": 1
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
onload: function(report) {
|
||||||
|
report.page.add_inner_button(__("Accounts Payable Summary"), function() {
|
||||||
|
var filters = report.get_values();
|
||||||
|
frappe.set_route('query-report', 'Accounts Payable Summary', {company: filters.company});
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -53,5 +53,12 @@ frappe.query_reports["Accounts Payable Summary"] = {
|
|||||||
"default": "90",
|
"default": "90",
|
||||||
"reqd": 1
|
"reqd": 1
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
|
||||||
|
onload: function(report) {
|
||||||
|
report.page.add_inner_button(__("Accounts Payable"), function() {
|
||||||
|
var filters = report.get_values();
|
||||||
|
frappe.set_route('query-report', 'Accounts Payable', {company: filters.company});
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -53,5 +53,12 @@ frappe.query_reports["Accounts Receivable"] = {
|
|||||||
"default": "90",
|
"default": "90",
|
||||||
"reqd": 1
|
"reqd": 1
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
|
||||||
|
onload: function(report) {
|
||||||
|
report.page.add_inner_button(__("Accounts Receivable Summary"), function() {
|
||||||
|
var filters = report.get_values();
|
||||||
|
frappe.set_route('query-report', 'Accounts Receivable Summary', {company: filters.company});
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -53,5 +53,12 @@ frappe.query_reports["Accounts Receivable Summary"] = {
|
|||||||
"default": "90",
|
"default": "90",
|
||||||
"reqd": 1
|
"reqd": 1
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
|
||||||
|
onload: function(report) {
|
||||||
|
report.page.add_inner_button(__("Accounts Receivable"), function() {
|
||||||
|
var filters = report.get_values();
|
||||||
|
frappe.set_route('query-report', 'Accounts Receivable', {company: filters.company});
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user