diff --git a/src/pages/InvoiceIn/Card/InvoiceInVat.vue b/src/pages/InvoiceIn/Card/InvoiceInVat.vue index 06219aa77..13b775c77 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInVat.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInVat.vue @@ -121,7 +121,7 @@ function taxRate(invoiceInTax) { const taxTypeSage = taxRateSelection?.rate ?? 0; const taxableBase = invoiceInTax?.taxableBase ?? 0; - return (taxTypeSage / 100) * taxableBase; + return ((taxTypeSage / 100) * taxableBase).toFixed(2); } const formatOpt = (row, { model, options }, prop) => {