fix: sider & translation fixes

This commit is contained in:
Anuja Pawar 2021-07-14 15:49:22 +05:30
parent b37ff0d3cf
commit c5d7a13513
2 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,6 @@ frappe.ui.form.on('South Africa VAT Settings', {
};
});
frm.set_query("account", "vat_accounts", function(doc, cdt, cdn) {
var row = locals[cdt][cdn];
return {
filters: {
company: frm.doc.company,

View File

@ -150,7 +150,7 @@ class VATAuditReport(object):
for rate, section in consolidated_data.items():
rate = int(rate)
label = frappe.bold(_("Standard Rate ") + section_name + " " + str(rate) + "%")
label = frappe.bold(_("Standard Rate") + " " + section_name + " " + str(rate) + "%")
section_head = {"posting_date": label}
total_gross = total_tax = total_net = 0
self.data.append(section_head)