working on tag handling in accounting module

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2026-04-10 00:02:54 +02:00
parent 85efb0ec02
commit ec3add70c6
11 changed files with 114 additions and 31 deletions
@@ -62,6 +62,7 @@
{/each}
<th>{t('other party')}</th>
<th>{t('purpose')}</th>
<th>{t('tags')}</th>
</tr>
</thead>
<tbody>
@@ -78,7 +79,7 @@
{/if}
</td>
{/each}
<td>
<td class="party">
{#if !transaction.source.id}
{transaction.source.value}
{/if}
@@ -86,7 +87,10 @@
{transaction.destination.value}
{/if}
</td>
<td>{transaction.purpose}</td>
<td class="purpose">{transaction.purpose}</td>
<td class="tags">
{transaction.tags.join(', ')}
</td>
</tr>
{/each}
<tr>
@@ -109,5 +113,7 @@
</table>
</fieldset>
<span class="warn">TODO: Bearbeiten von Umsätzen</span>
<EntryForm {account} {onSave} />
{/if}