From 5fd4bddcd89768287303f2ac8458c09a3dbd77d8 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 21 Jul 2016 20:21:27 +0300 Subject: [PATCH] Show 0% tax rates in line items --- public/js/pdf.pdfmake.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/pdf.pdfmake.js b/public/js/pdf.pdfmake.js index cb841750c0ee..1d0d5cd5c418 100644 --- a/public/js/pdf.pdfmake.js +++ b/public/js/pdf.pdfmake.js @@ -425,7 +425,7 @@ NINJA.invoiceLines = function(invoice) { str += tax1.toString() + '%'; } if (item.tax_name2) { - if (tax1) { + if (item.tax_name1) { str += ' '; } str += tax2.toString() + '%';