Advertisement
Guest User

Untitled

a guest
Mar 7th, 2015
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. (define (gnc:html-table-add-budget-line-columns!
  2. html-table rownum budget acct period-list)
  3. (let* (
  4. ;; budgeted amount
  5. (bgt-numeric-val (gnc:get-account-periodlist-budget-value budget acct period-list))
  6.  
  7. (display period-list) (newline)
  8. (display (bgt-numeric-val) (newline)
  9.  
  10. ;; actual amount
  11. (act-numeric-abs (gnc:get-account-periodlist-actual-value budget acct period-list))
  12. (act-numeric-val
  13. (if reverse-balance?
  14. (gnc-numeric-neg act-numeric-abs)
  15. act-numeric-abs))
  16.  
  17. (display act-numeric-val) (newline)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement