9 Oct
2020
9 Oct
'20
5:28 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26648 --- Comment #2 from Martin Renvoize <martin.renvoize@ptfs-europe.com> --- 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.