Browse Source

fix(pos): taxes amount in pos item cart (#26410)

develop
Saqib 3 years ago
committed by GitHub
parent
commit
2098684bc0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      erpnext/selling/page/point_of_sale/pos_item_cart.js

11
erpnext/selling/page/point_of_sale/pos_item_cart.js

@ -472,12 +472,7 @@ erpnext.PointOfSale.ItemCart = class {
const grand_total = cint(frappe.sys_defaults.disable_rounded_total) ? frm.doc.grand_total : frm.doc.rounded_total;
this.render_grand_total(grand_total);
const taxes = frm.doc.taxes.map(t => {
return {
description: t.description, rate: t.rate
};
});
this.render_taxes(frm.doc.total_taxes_and_charges, taxes);
this.render_taxes(frm.doc.taxes);
}
render_net_total(value) {
@ -502,14 +497,14 @@ erpnext.PointOfSale.ItemCart = class {
);
}
render_taxes(value, taxes) {
render_taxes(taxes) {
if (taxes.length) {
const currency = this.events.get_frm().doc.currency;
const taxes_html = taxes.map(t => {
const description = /[0-9]+/.test(t.description) ? t.description : `${t.description} @ ${t.rate}%`;
return `<div class="tax-row">
<div class="tax-label">${description}</div>
<div class="tax-value">${format_currency(value, currency)}</div>
<div class="tax-value">${format_currency(t.tax_amount_after_discount_amount, currency)}</div>
</div>`;
}).join('');
this.$totals_section.find('.taxes-container').css('display', 'flex').html(taxes_html);

Loading…
Cancel
Save