ledger.Delta.Payee = true

This commit is contained in:
bel
2024-07-20 20:25:37 -06:00
parent 1d18cb50c5
commit 59205fba4c
4 changed files with 14 additions and 4 deletions

View File

@@ -94,6 +94,7 @@ func (t transaction) deltas() Deltas {
sums[recipient.currency] += recipient.value
result = append(result, newDelta(
t.name,
true,
t.date,
t.description,
recipient.name,
@@ -111,6 +112,7 @@ func (t transaction) deltas() Deltas {
} else {
result = append(result, newDelta(
t.name,
false,
t.date,
t.description,
t.payee,