1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 05:32:39 +01: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:
Benjamin Beganović 2021-02-09 11:51:22 +01:00 committed by GitHub
commit 2b0e8726ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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>