Start with small tweaks as proof of concept.
This commit is contained in:
parent
1147d73b11
commit
8f0d5acf0a
6 changed files with 35 additions and 31 deletions
12
bbstool.scm
12
bbstool.scm
|
@ -143,9 +143,15 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
(if mr
|
||||
(let ()
|
||||
(print-member-table mr)
|
||||
(print-member-calendar-table mr)
|
||||
(print "Total fees: " (member-fees-total mr))
|
||||
)
|
||||
(let* ((fees (member-fees-total mr))
|
||||
(credit (member-credit-total mr))
|
||||
(payments (member-payments-total mr))
|
||||
(balance (- (+ credit payments) fees)))
|
||||
(print "Total fees: " fees)
|
||||
(print "Total credit: " credit)
|
||||
(print "Total payments: " payments)
|
||||
(print "Balance: " balance)
|
||||
))
|
||||
(print-members-base-table MB))
|
||||
(newline))
|
||||
((print-stats)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue