mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Minor fixes for invoice summaryu
This commit is contained in:
parent
7bf7ae1d31
commit
de87b03952
@ -33,7 +33,7 @@
|
|||||||
<dt class="text-muted-foreground">{{ ctrans('texts.amount_due') }}</dt>
|
<dt class="text-muted-foreground">{{ ctrans('texts.amount_due') }}</dt>
|
||||||
<dd>
|
<dd>
|
||||||
{{ $invoice->client->currency()->code }} ({{ $invoice->client->currency()->symbol }})
|
{{ $invoice->client->currency()->code }} ({{ $invoice->client->currency()->symbol }})
|
||||||
{{ $invoice->partial > 0 ? $invoice->partial : $invoice->balance }}
|
{{ $invoice->partial > 0 ? \App\Utils\Number::formatValue($invoice->partial, $invoice->client->currency()) : \App\Utils\Number::formatValue($invoice->balance, $invoice->client->currency()) }}
|
||||||
</dd>
|
</dd>
|
||||||
</div>
|
</div>
|
||||||
</dl>
|
</dl>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user