@@ -, +, @@ --- circ/returns.pl | 6 ++++++ koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 4 ++++ 2 files changed, 10 insertions(+) --- a/circ/returns.pl +++ a/circ/returns.pl @@ -485,6 +485,12 @@ foreach my $code ( keys %$messages ) { elsif ( $code eq 'LostItemFeeRefunded' ) { $template->param( LostItemFeeRefunded => 1 ); } + elsif ( $code eq 'LostItemFeeCharged' ) { + $template->param( LostItemFeeCharged => 1 ); + } + elsif ( $code eq 'LostItemFeeRestored' ) { + $template->param( LostItemFeeRestored => 1 ); + } elsif ( $code eq 'ResFound' ) { ; # FIXME... anything to do here? } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -258,6 +258,10 @@ [% END %] [% IF LostItemFeeRefunded and not Koha.Preference('BlockReturnOfLostItems') %]

A refund has been applied to the borrowing patron's account.

+ [% ELSIF LostItemFeeCharged and not Koha.Preference('BlockReturnOfLostItems') %] +

A refund for the lost item charge has been applied to the borrowing patron's account, and new overdue charge has been calculated and applied.

+ [% ELSIF LostItemFeeRestored and not Koha.Preference('BlockReturnOfLostItems') %] +

A refund for the lost item charge has been applied to the borrowing patron's account and if an overdue fine was forgiven when the item was marked as lost, it has been reverted.

[% ELSIF Koha.Preference('BlockReturnOfLostItems') %]
Cannot check in

NOT CHECKED IN

--