https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13961
--- Comment #39 from Kyle M Hall <[email protected]> --- I'm wondering if this is really necessary given the solution provided by Josef. If we implement this, it means adding yet another database query that will only be used in a few cases. That solution from Josef was: --- [% USE Price %] # your normal issue slip content [% SET balance = borrower.account.balance %] [% IF balance > 0 %] Patron has debit of [% balance | $Price %]. [% END %] [% IF balance < 0 %] Patron has credit of [% balance | $Price %]. [% END %] --- Is there a slip where this doesn't work? This functions on any slip with a borrower object. If there is a slip where this doesn't work, it seems more sensible to add the borrower object instead, right? -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
