mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Show 0% tax rates in line items
This commit is contained in:
parent
8c15e2a735
commit
8568f68ad2
@ -31461,10 +31461,10 @@ NINJA.invoiceLines = function(invoice) {
|
|||||||
}
|
}
|
||||||
if (showItemTaxes) {
|
if (showItemTaxes) {
|
||||||
var str = ' ';
|
var str = ' ';
|
||||||
if (tax1) {
|
if (item.tax_name1) {
|
||||||
str += tax1.toString() + '%';
|
str += tax1.toString() + '%';
|
||||||
}
|
}
|
||||||
if (tax2) {
|
if (item.tax_name2) {
|
||||||
if (tax1) {
|
if (tax1) {
|
||||||
str += ' ';
|
str += ' ';
|
||||||
}
|
}
|
||||||
|
@ -421,10 +421,10 @@ NINJA.invoiceLines = function(invoice) {
|
|||||||
}
|
}
|
||||||
if (showItemTaxes) {
|
if (showItemTaxes) {
|
||||||
var str = ' ';
|
var str = ' ';
|
||||||
if (tax1) {
|
if (item.tax_name1) {
|
||||||
str += tax1.toString() + '%';
|
str += tax1.toString() + '%';
|
||||||
}
|
}
|
||||||
if (tax2) {
|
if (item.tax_name2) {
|
||||||
if (tax1) {
|
if (tax1) {
|
||||||
str += ' ';
|
str += ' ';
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user