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

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

Return to bug 23091