mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
Merge pull request #4852 from beganovich/v5-0902-update-quotes-table
(v5) Client portal: Change quotes.balance to quotes.amount in quotes table & approve page
This commit is contained in:
commit
2b0e8726ea
@ -81,7 +81,7 @@
|
|||||||
{{ $quote->formatDate($quote->date, $quote->client->date_format()) }}
|
{{ $quote->formatDate($quote->date, $quote->client->date_format()) }}
|
||||||
</td>
|
</td>
|
||||||
<td class="px-6 py-4 text-sm leading-5 text-gray-500 whitespace-no-wrap">
|
<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>
|
||||||
<td class="px-6 py-4 text-sm leading-5 text-gray-500 whitespace-no-wrap">
|
<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()) }}
|
{{ $quote->formatDate($quote->due_date, $quote->client->date_format()) }}
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
{{ ctrans('texts.amount') }}
|
{{ ctrans('texts.amount') }}
|
||||||
</dt>
|
</dt>
|
||||||
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
<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>
|
</dd>
|
||||||
</div>
|
</div>
|
||||||
</dl>
|
</dl>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user