Merge pull request #14089 from shreyashah115/fixes

[Fix] General Ledger report filters error
This commit is contained in:
rohitwaghchaure 2018-05-16 17:41:19 +05:30 committed by GitHub
commit 19a2260ce7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -17,7 +17,8 @@ frappe.ui.form.on("Journal Entry", {
"from_date": frm.doc.posting_date,
"to_date": frm.doc.posting_date,
"company": frm.doc.company,
group_by_voucher: 0
"finance_book": frm.doc.finance_book,
"group_by_voucher": 0
};
frappe.set_route("query-report", "General Ledger");
}, "fa fa-table");

View File

@ -84,9 +84,7 @@ frappe.query_reports["General Ledger"] = {
var party_type = frappe.query_report_filters_by_name.party_type.get_value();
var parties = frappe.query_report_filters_by_name.party.get_value();
if(!party_type) {
frappe.throw(__("Please select Party Type first"));
}
if(!party_type) return;
const values = parties.split(/\s*,\s*/).filter(d => d);
const txt = parties.match(/[^,\s*]*$/)[0] || '';