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

(-)a/catalogue/detail.pl (-1 lines)
Lines 337-343 foreach my $item (@items) { Link Here
337
337
338
    my $recall = Koha::Recalls->find({ itemnumber => $item->{itemnumber} });
338
    my $recall = Koha::Recalls->find({ itemnumber => $item->{itemnumber} });
339
    if (defined $recall && $recall->status ne 'F' && $recall->status ne 'C'){
339
    if (defined $recall && $recall->status ne 'F' && $recall->status ne 'C'){
340
        warn 'item has been recalled';
341
        $item->{recalled} = 1;
340
        $item->{recalled} = 1;
342
        $item->{recall} = $recall;
341
        $item->{recall} = $recall;
343
    }
342
    }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +4 lines)
Lines 318-323 Link Here
318
               <li>This item is awaiting pickup by another patron who recalled it.</li>
318
               <li>This item is awaiting pickup by another patron who recalled it.</li>
319
        [% END %]
319
        [% END %]
320
320
321
        [% IF ( WAITING_RECALL_FOR_A_DIFFERENT_PATRON ) %]
322
            <li>This item is awaiting pickup by another patron who recalled it.</li>
323
        [% END %]
324
321
        [% IF ( UNKNOWN_BARCODE ) %]
325
        [% IF ( UNKNOWN_BARCODE ) %]
322
            <li>The barcode was not found: <span class="ex">[% barcode | html %]</span>
326
            <li>The barcode was not found: <span class="ex">[% barcode | html %]</span>
323
327
324
- 

Return to bug 19532