1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-09 20:52:56 +01:00

Show 0% tax rates in line items

This commit is contained in:
Hillel Coren 2016-07-21 20:21:27 +03:00
parent 8568f68ad2
commit 5fd4bddcd8

View File

@ -425,7 +425,7 @@ NINJA.invoiceLines = function(invoice) {
str += tax1.toString() + '%'; str += tax1.toString() + '%';
} }
if (item.tax_name2) { if (item.tax_name2) {
if (tax1) { if (item.tax_name1) {
str += ' '; str += ' ';
} }
str += tax2.toString() + '%'; str += tax2.toString() + '%';