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

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

Return to bug 23091