Use new cal-format for days and months.
This commit is contained in:
parent
4d92c33b8e
commit
ac1ae9b698
2 changed files with 12 additions and 5 deletions
|
@ -184,7 +184,8 @@ MEMBERS-PRINT-SOURCES=members-print.scm util-dict-list.import.scm \
|
||||||
primes.import.scm mbase.import.scm configuration.import.scm \
|
primes.import.scm mbase.import.scm configuration.import.scm \
|
||||||
bank-account.import.scm members-fees.import.scm \
|
bank-account.import.scm members-fees.import.scm \
|
||||||
members-payments.import.scm util-list.import.scm \
|
members-payments.import.scm util-list.import.scm \
|
||||||
brmember-format.import.scm specification.import.scm
|
brmember-format.import.scm specification.import.scm \
|
||||||
|
cal-format.import.scm
|
||||||
|
|
||||||
members-print.o: members-print.import.scm
|
members-print.o: members-print.import.scm
|
||||||
members-print.import.scm: $(MEMBERS-PRINT-SOURCES)
|
members-print.import.scm: $(MEMBERS-PRINT-SOURCES)
|
||||||
|
|
|
@ -60,7 +60,8 @@
|
||||||
members-fees
|
members-fees
|
||||||
members-payments
|
members-payments
|
||||||
brmember-format
|
brmember-format
|
||||||
specification)
|
specification
|
||||||
|
cal-format)
|
||||||
|
|
||||||
;; Returns nicely formatted table
|
;; Returns nicely formatted table
|
||||||
(define (member-info->table mr)
|
(define (member-info->table mr)
|
||||||
|
@ -97,7 +98,12 @@
|
||||||
#:col-border #t)))
|
#:col-border #t)))
|
||||||
((credit)
|
((credit)
|
||||||
(list k
|
(list k
|
||||||
(table->string v
|
(table->string
|
||||||
|
(map (lambda (c)
|
||||||
|
(list (car c)
|
||||||
|
(cal-format (cadr c))
|
||||||
|
(caddr c)))
|
||||||
|
v)
|
||||||
#:col-border #t)))
|
#:col-border #t)))
|
||||||
((suspend student member)
|
((suspend student member)
|
||||||
(list k
|
(list k
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue