1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 13:42:49 +01:00

Show 0% tax rates in line items

This commit is contained in:
Hillel Coren 2016-07-21 20:19:11 +03:00
parent 70244ec12e
commit c9d87c15d3
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 += ' ';
}