mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix view things. [skip ci]
This commit is contained in:
parent
aa42d0f131
commit
d9fa098ae5
@ -21,25 +21,25 @@
|
|||||||
<table class="table table-striped table-bordered">
|
<table class="table table-striped table-bordered">
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ 'submitted_start_balance'|_ }} (date)</td>
|
<td>{{ 'submitted_start_balance'|_ }} (date)</td>
|
||||||
<td>{{ startBalance|formatAmount }}</td>
|
<td>{{ formatAmountByAccount(account, startBalance) }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ trans('firefly.selected_transactions', {count: transactionIds|length}) }}</td>
|
<td>{{ trans('firefly.selected_transactions', {count: transactionIds|length}) }}</td>
|
||||||
<td>{{ amount|formatAmount }}</td>
|
<td>{{ formatAmountByAccount(account, amount) }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ trans('firefly.already_cleared_transactions', {count: clearedIds|length}) }}</td>
|
<td>{{ trans('firefly.already_cleared_transactions', {count: clearedIds|length}) }}</td>
|
||||||
<td>{{ clearedAmount|formatAmount }}</td>
|
<td>{{ formatAmountByAccount(account, clearedAmount) }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ 'submitted_end_balance'|_ }} (date)</td>
|
<td>{{ 'submitted_end_balance'|_ }} (date)</td>
|
||||||
<td>{{ endBalance|formatAmount }}</td>
|
<td>{{ formatAmountByAccount(account, endBalance)}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ 'difference'|_ }}</td>
|
<td>{{ 'difference'|_ }}</td>
|
||||||
<td>
|
<td>
|
||||||
{{ difference|formatAmount }}
|
{{ formatAmountByAccount(account, difference) }}
|
||||||
<input type="hidden" name="difference" value="{{ difference }}" />
|
<input type="hidden" name="difference" value="{{ difference }}" />
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@ -67,10 +67,10 @@
|
|||||||
|
|
||||||
<input type="radio" name="reconcile" value="create">
|
<input type="radio" name="reconcile" value="create">
|
||||||
{% if diffCompare > 0 %}
|
{% if diffCompare > 0 %}
|
||||||
{{ trans('firefly.create_neg_reconcile_transaction', {amount: (difference*-1)|formatAmount})|raw }}
|
{{ trans('firefly.create_neg_reconcile_transaction', {amount: formatAmountByAccount(account, (difference*-1))})|raw }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if diffCompare < 0 %}
|
{% if diffCompare < 0 %}
|
||||||
{{ trans('firefly.create_pos_reconcile_transaction', {amount: (difference*-1)|formatAmount})|raw }}
|
{{ trans('firefly.create_pos_reconcile_transaction', {amount: formatAmountByAccount(account, (difference*-1))})|raw }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user