Show 0% tax rates in line items

This commit is contained in:
Hillel Coren 2016-07-21 20:18:32 +03:00
parent 8c15e2a735
commit 8568f68ad2
2 changed files with 4 additions and 4 deletions

View File

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

View File

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