.src.ledger.Delta.transaction = filename/idx
All checks were successful
cicd / ci (push) Successful in 1m27s
All checks were successful
cicd / ci (push) Successful in 1m27s
This commit is contained in:
@@ -15,9 +15,10 @@ type Delta struct {
|
||||
Currency Currency
|
||||
Description string
|
||||
isSet bool
|
||||
transaction string
|
||||
}
|
||||
|
||||
func newDelta(d, desc, name string, v float64, c string, isSet bool) Delta {
|
||||
func newDelta(transaction string, d, desc, name string, v float64, c string, isSet bool) Delta {
|
||||
return Delta{
|
||||
Date: d,
|
||||
Name: name,
|
||||
@@ -25,6 +26,7 @@ func newDelta(d, desc, name string, v float64, c string, isSet bool) Delta {
|
||||
Currency: Currency(c),
|
||||
Description: desc,
|
||||
isSet: isSet,
|
||||
transaction: transaction,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user