View | Details | Raw Unified | Return to bug 23091
Collapse All | Expand All

(-)a/circ/returns.pl (+6 lines)
Lines 491-496 foreach my $code ( keys %$messages ) { Link Here
491
    elsif ( $code eq 'LostItemFeeRefunded' ) {
491
    elsif ( $code eq 'LostItemFeeRefunded' ) {
492
        $template->param( LostItemFeeRefunded => 1 );
492
        $template->param( LostItemFeeRefunded => 1 );
493
    }
493
    }
494
    elsif ( $code eq 'LostItemFeeCharged' ) {
495
        $template->param( LostItemFeeCharged => 1 );
496
    }
497
    elsif ( $code eq 'LostItemFeeRestored' ) {
498
        $template->param( LostItemFeeRestored => 1 );
499
    }
494
    elsif ( $code eq 'ResFound' ) {
500
    elsif ( $code eq 'ResFound' ) {
495
        ;    # FIXME... anything to do here?
501
        ;    # FIXME... anything to do here?
496
    }
502
    }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-1 / +4 lines)
Lines 263-268 Link Here
263
                                            [% END %]
263
                                            [% END %]
264
                                            [% IF LostItemFeeRefunded and not Koha.Preference('BlockReturnOfLostItems') %]
264
                                            [% IF LostItemFeeRefunded and not Koha.Preference('BlockReturnOfLostItems') %]
265
                                                <p class="problem ret_refund">A refund has been applied to the borrowing patron's account.</p>
265
                                                <p class="problem ret_refund">A refund has been applied to the borrowing patron's account.</p>
266
                                            [% ELSIF LostItemFeeCharged and not Koha.Preference('BlockReturnOfLostItems') %]
267
                                                <p class="problem ret_charged">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.</p>
268
                                            [% ELSIF LostItemFeeRestored and not Koha.Preference('BlockReturnOfLostItems') %]
269
                                                <p class="problem ret_restored">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.</p>
266
                                            [% ELSIF Koha.Preference('BlockReturnOfLostItems') %]
270
                                            [% ELSIF Koha.Preference('BlockReturnOfLostItems') %]
267
                                               <h5>Cannot check in</h5>
271
                                               <h5>Cannot check in</h5>
268
                                               <p><strong>NOT CHECKED IN</strong></p>
272
                                               <p><strong>NOT CHECKED IN</strong></p>
269
- 

Return to bug 23091