@@ -, +, @@ charge > 0 - Check out an item with no rental charge - Verify no confirmation message appears - Check out an item with rental charge - Verify rental charge shows --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -163,7 +163,7 @@ $(document).ready(function() {
  • The patron has a debt of [% DEBT %].
  • [% END %] -[% IF ( RENTALCHARGE ) %] +[% IF ( RENTALCHARGE > 0 ) %]
  • Rental charge for this item: [% RENTALCHARGE %]
  • [% END %] --