Properly sort members.
This commit is contained in:
parent
596363c986
commit
75cc2c6d0e
1 changed files with 2 additions and 2 deletions
|
@ -335,7 +335,7 @@
|
|||
|
||||
;; Prints summary table of all fees and credits for all members
|
||||
(define (print-members-fees-table MB)
|
||||
(let ((balances (map member-balance (sort MB member<?)))
|
||||
(let ((balances (map member-balance MB))
|
||||
(members ;; Pass 1
|
||||
(map
|
||||
(lambda (mr)
|
||||
|
@ -357,7 +357,7 @@
|
|||
payment
|
||||
total
|
||||
)))
|
||||
MB)))
|
||||
(sort MB member<?))))
|
||||
(print
|
||||
(table->string
|
||||
(cons
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue