Fix latest payment for debtors and everywhere else with format.
This commit is contained in:
parent
f6761b1993
commit
6135a09664
1 changed files with 4 additions and 1 deletions
|
@ -68,7 +68,10 @@
|
|||
(let ((payments (brmember-payments mr)))
|
||||
(if (null? payments)
|
||||
"-"
|
||||
(sprintf "~A" (bank-transaction-date (car payments))))))
|
||||
(sprintf "~A"
|
||||
(bank-transaction-date
|
||||
(car
|
||||
(reverse payments)))))))
|
||||
((#\F) ; Fees to be paid (total over all
|
||||
; membership periods)
|
||||
(sprintf "~A" (member-fees-total mr)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue