https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26648

--- Comment #2 from Martin Renvoize <[email protected]> ---
Dumping this example here so I don't loose it

[% USE Price %]
[% savings = 0 %]
[% FOREACH checkout IN borrower.checkouts %]
[% savings = checkout.item.price + savings %]
[% END %]

[% FOREACH old_checkout IN borrower.old_checkouts %]
[% IF old_checkout.item %]
[% savings = old_checkout.item.price + savings %]
[% END %]
[% END %]
You have saved [% savings | $Price %] to date by using the library.

-- 
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/

Reply via email to