Fix a bug in the projected cashflow template

This commit is contained in:
2022-05-19 12:40:25 +02:00
parent 903c73b586
commit 597bdf3758

View File

@@ -46,7 +46,7 @@
</tr> </tr>
<tr th:each="entry, i : ${form.expenseTransactions}"> <tr th:each="entry, i : ${form.expenseTransactions}">
<td class="projected-cashflow-transaction"> <td class="projected-cashflow-transaction">
<span th:text="*{expenseTransactions[__${i.index}__].description + ' (' + #temporals.format(expenseTransactions[__${i.index}__].date) + ')'}"/> <span th:text="*{expenseTransactions[__${i.index}__].recurringTransaction.description + ' (' + #temporals.format(expenseTransactions[__${i.index}__].date) + ')'}"/>
<input type="hidden" th:field="*{expenseTransactions[__${i.index}__].recurringTransaction.description}" <input type="hidden" th:field="*{expenseTransactions[__${i.index}__].recurringTransaction.description}"
class="display-none"/> class="display-none"/>
<input type="hidden" th:field="*{expenseTransactions[__${i.index}__].date}" <input type="hidden" th:field="*{expenseTransactions[__${i.index}__].date}"