mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-25 09:38:31 +00:00
fix: sider & translation fixes
This commit is contained in:
@@ -11,7 +11,6 @@ frappe.ui.form.on('South Africa VAT Settings', {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
frm.set_query("account", "vat_accounts", function(doc, cdt, cdn) {
|
frm.set_query("account", "vat_accounts", function(doc, cdt, cdn) {
|
||||||
var row = locals[cdt][cdn];
|
|
||||||
return {
|
return {
|
||||||
filters: {
|
filters: {
|
||||||
company: frm.doc.company,
|
company: frm.doc.company,
|
||||||
|
|||||||
@@ -150,7 +150,7 @@ class VATAuditReport(object):
|
|||||||
|
|
||||||
for rate, section in consolidated_data.items():
|
for rate, section in consolidated_data.items():
|
||||||
rate = int(rate)
|
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}
|
section_head = {"posting_date": label}
|
||||||
total_gross = total_tax = total_net = 0
|
total_gross = total_tax = total_net = 0
|
||||||
self.data.append(section_head)
|
self.data.append(section_head)
|
||||||
|
|||||||
Reference in New Issue
Block a user