mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Change quotes.balance to quotes.amount in quotes table & approve page
This commit is contained in:
parent
63a0d99d73
commit
e13bebf5e7
@ -81,7 +81,7 @@
|
||||
{{ $quote->formatDate($quote->date, $quote->client->date_format()) }}
|
||||
</td>
|
||||
<td class="px-6 py-4 text-sm leading-5 text-gray-500 whitespace-no-wrap">
|
||||
{{ App\Utils\Number::formatMoney($quote->balance, $quote->client) }}
|
||||
{{ App\Utils\Number::formatMoney($quote->amount, $quote->client) }}
|
||||
</td>
|
||||
<td class="px-6 py-4 text-sm leading-5 text-gray-500 whitespace-no-wrap">
|
||||
{{ $quote->formatDate($quote->due_date, $quote->client->date_format()) }}
|
||||
|
@ -70,7 +70,7 @@
|
||||
{{ ctrans('texts.amount') }}
|
||||
</dt>
|
||||
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
||||
{{ App\Utils\Number::formatMoney($quote->balance, $quote->client) }}
|
||||
{{ App\Utils\Number::formatMoney($quote->amount, $quote->client) }}
|
||||
</dd>
|
||||
</div>
|
||||
</dl>
|
||||
|
Loading…
Reference in New Issue
Block a user