mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Working on multiple tax rates
This commit is contained in:
parent
ba3aaf47fd
commit
f8256127ec
@ -31399,6 +31399,9 @@ NINJA.invoiceLines = function(invoice) {
|
||||
str += tax1.toString() + '%';
|
||||
}
|
||||
if (tax2) {
|
||||
if (tax1) {
|
||||
str += ' ';
|
||||
}
|
||||
str += tax2.toString() + '%';
|
||||
}
|
||||
row.push({style:["tax", rowStyle], text:str});
|
||||
|
@ -400,6 +400,9 @@ NINJA.invoiceLines = function(invoice) {
|
||||
str += tax1.toString() + '%';
|
||||
}
|
||||
if (tax2) {
|
||||
if (tax1) {
|
||||
str += ' ';
|
||||
}
|
||||
str += tax2.toString() + '%';
|
||||
}
|
||||
row.push({style:["tax", rowStyle], text:str});
|
||||
|
@ -286,8 +286,8 @@
|
||||
|
||||
<ul class="nav nav-tabs" role="tablist" style="border: none">
|
||||
<li role="presentation" class="active"><a href="#notes" aria-controls="notes" role="tab" data-toggle="tab">{{ trans('texts.note_to_client') }}</a></li>
|
||||
<li role="presentation"><a href="#terms" aria-controls="terms" role="tab" data-toggle="tab">{{ trans("texts.{$entityType}_terms") }}</a></li>
|
||||
<li role="presentation"><a href="#footer" aria-controls="footer" role="tab" data-toggle="tab">{{ trans("texts.{$entityType}_footer") }}</a></li>
|
||||
<li role="presentation"><a href="#terms" aria-controls="terms" role="tab" data-toggle="tab">{{ trans("texts.terms") }}</a></li>
|
||||
<li role="presentation"><a href="#footer" aria-controls="footer" role="tab" data-toggle="tab">{{ trans("texts.footer") }}</a></li>
|
||||
@if ($account->isPro())
|
||||
<li role="presentation"><a href="#attached-documents" aria-controls="attached-documents" role="tab" data-toggle="tab">{{ trans("texts.invoice_documents") }}</a></li>
|
||||
@endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user