1
0
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:
Benjamin Beganović 2021-02-09 11:50:26 +01:00
parent 63a0d99d73
commit e13bebf5e7
2 changed files with 2 additions and 2 deletions

View File

@ -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()) }}

View File

@ -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>