mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-22 20:16:22 +00:00
Finalise account tests
This commit is contained in:
@@ -15,8 +15,8 @@
|
||||
<input type="hidden" name="end" value="{{ end.format('Y-m-d') }}"/>
|
||||
<input type="hidden" name="startBalance" value="{{ startBalance }}"/>
|
||||
<input type="hidden" name="endBalance" value="{{ endBalance }}"/>
|
||||
{% for id in transactionIds %}
|
||||
<input type="hidden" name="transactions[]" value="{{ id }}"/>
|
||||
{% for id in selectedIds %}
|
||||
<input type="hidden" name="journals[]" value="{{ id }}"/>
|
||||
{% endfor %}
|
||||
|
||||
<table class="table table-striped table-bordered">
|
||||
@@ -25,7 +25,7 @@
|
||||
<td>{{ formatAmountByAccount(account, startBalance) }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{{ trans('firefly.selected_transactions', {count: transactionIds|length}) }}</td>
|
||||
<td>{{ trans('firefly.selected_transactions', {count: selectedIds|length}) }}</td>
|
||||
<td>{{ formatAmountByAccount(account, amount) }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@@ -102,7 +102,6 @@
|
||||
</td>
|
||||
|
||||
<td>
|
||||
|
||||
{% if journal.date >= start and journal.date <= end %}
|
||||
{% if journal.reconciled %}
|
||||
<i class="fa fa-check" aria-hidden="true"></i>
|
||||
|
Reference in New Issue
Block a user