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:
parent
70244ec12e
commit
c9d87c15d3
@ -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 += ' ';
|
||||
}
|
||||
|
@ -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 += ' ';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user