Kontodetails: <%= account.name %>
Kontostand: <%= account.balance.toFixed(2) %> €
Erstellt am: <%= new Date(account.created_at).toLocaleString('de-DE') %>
Geld einzahlen
Betrag abbuchen
PDF Export
<% if (typeof isAdmin !== 'undefined' && isAdmin) { %>
Konto bearbeiten
<% } %>
Zurück zur Liste
Transaktionshistorie
| Datum | Typ | Betrag | Beschreibung | Artikel | Durchgeführt von |
|---|---|---|---|---|---|
| <%= new Date(transaction.created_at).toLocaleString('de-DE') %> | <%= transaction.type === 'deposit' ? 'Einzahlung' : 'Abbuchung' %> | <%= transaction.amount.toFixed(2) %> € | <%= transaction.description %> | <%= transaction.item_name || '-' %> | <%= transaction.created_by_name || 'System' %> |
| Keine Transaktionen für dieses Konto. | |||||
Konto nicht gefunden.
<% } %>