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
|
;; Prints summary table of all fees and credits for all members
|
||||||
(define (print-members-fees-table MB)
|
(define (print-members-fees-table MB)
|
||||||
(let ((balances (map member-balance (sort MB member<?)))
|
(let ((balances (map member-balance MB))
|
||||||
(members ;; Pass 1
|
(members ;; Pass 1
|
||||||
(map
|
(map
|
||||||
(lambda (mr)
|
(lambda (mr)
|
||||||
|
@ -357,7 +357,7 @@
|
||||||
payment
|
payment
|
||||||
total
|
total
|
||||||
)))
|
)))
|
||||||
MB)))
|
(sort MB member<?))))
|
||||||
(print
|
(print
|
||||||
(table->string
|
(table->string
|
||||||
(cons
|
(cons
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue