Prepare next development iteration for v21
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
v20->v21:
|
||||
- Hide columns 'Spending current period' and 'Average spending' on mobile
|
||||
|
||||
v19 -> v20:
|
||||
- Fix a bug that caused the server startup to fail
|
||||
|
||||
v18 -> v19:
|
||||
- Fix a bug in recurring transaction handling that caused a recurring transaction with Holiday/Weekend type
|
||||
'previous workday' and a planned occurrence on a Sunday to be due on Friday and Saturday
|
||||
|
||||
@@ -75,12 +75,14 @@
|
||||
<a th:href="@{/accountDetails(key=${acc.key})}" th:text="${acc.key}"/>
|
||||
</td>
|
||||
<td th:text="${#numbers.formatDecimal(acc.currentBalance/100D, 1, 'DEFAULT', 2, 'DEFAULT') + currencySymbol}"/>
|
||||
<td th:if="${acc.spendingCurrentExpensePeriod != null}"
|
||||
<td class="hideable-column"
|
||||
th:if="${acc.spendingCurrentExpensePeriod != null}"
|
||||
th:text="${#numbers.formatDecimal(acc.spendingCurrentExpensePeriod/100D, 1, 'DEFAULT', 2, 'DEFAULT') + currencySymbol}"/>
|
||||
<td th:if="${acc.averageSpendingExpensePeriod != null}"
|
||||
<td class="hideable-column"
|
||||
th:if="${acc.averageSpendingExpensePeriod != null}"
|
||||
th:text="${#numbers.formatDecimal(acc.averageSpendingExpensePeriod/100D, 1, 'DEFAULT', 2, 'DEFAULT') + currencySymbol}"/>
|
||||
<td th:if="${acc.spendingCurrentExpensePeriod == null}">-</td>
|
||||
<td th:if="${acc.averageSpendingExpensePeriod == null}">-</td>
|
||||
<td class="hideable-column" th:if="${acc.spendingCurrentExpensePeriod == null}">-</td>
|
||||
<td class="hideable-column" th:if="${acc.averageSpendingExpensePeriod == null}">-</td>
|
||||
<td class="hideable-column" th:text="${acc.accountGroup?.name}"/>
|
||||
<td class="hideable-column" th:text="#{'financer.account-type.' + ${acc.type}}"/>
|
||||
<td class="hideable-column" th:text="#{'financer.account-status.' + ${acc.status}}"/>
|
||||
|
||||
Reference in New Issue
Block a user