Also export transfers
This commit is contained in:
@ -115,7 +115,12 @@ func GetTransactionRow(transaction GetAllTransactionsForBudgetRow) []string {
|
||||
transaction.Account,
|
||||
"", // Flag
|
||||
transaction.Date.Format("02.01.2006"),
|
||||
transaction.Payee,
|
||||
}
|
||||
|
||||
if transaction.TransferAccount != "" {
|
||||
row = append(row, "Transfer : "+transaction.TransferAccount)
|
||||
} else {
|
||||
row = append(row, transaction.Payee)
|
||||
}
|
||||
|
||||
if transaction.CategoryGroup != "" && transaction.Category != "" {
|
||||
|
Reference in New Issue
Block a user