Advertisement
Guest User

Untitled

a guest
Jul 14th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. (define* (add-multicolumn-acct-table
  2. table title accountlist maxindent get-cell-amount-fn cols-data #:key
  3. (omit-zb-bals? #f)
  4. (show-zb-accts? #t)
  5. (disable-indenting? #f)
  6. (hide-accounts? #f)
  7. (hide-grand-total? #f)
  8. (depth-limit #f)
  9. (negate-amounts? #f)
  10. (recursive-bals? #f)
  11. (account-anchor-fn #f)
  12. (get-col-header-fn #f)
  13. (get-cell-orig-amount-fn #f)
  14. (get-cell-anchor-fn #f))
  15. .....)
  16.  
  17. (define (add-to-table title accountlist #:rest)
  18. (add-multicolumn-acct-table 'table title accountlist 5 #f #f #:rest))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement