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

(-)a/circ/returns.pl (+1 lines)
Lines 292-297 if ($barcode) { Link Here
292
            biblionumber     => $biblio->biblionumber,
292
            biblionumber     => $biblio->biblionumber,
293
            additional_materials => $materials,
293
            additional_materials => $materials,
294
            issue            => $checkout,
294
            issue            => $checkout,
295
            item_withdrawn   => $item->withdrawn,
295
        );
296
        );
296
    } # FIXME else we should not call AddReturn but set BadBarcode directly instead
297
    } # FIXME else we should not call AddReturn but set BadBarcode directly instead
297
298
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-2 / +5 lines)
Lines 565-571 Link Here
565
                   <h5>Cannot check in</h5>
565
                   <h5>Cannot check in</h5>
566
                   <p><strong>NOT CHECKED IN</strong></p>
566
                   <p><strong>NOT CHECKED IN</strong></p>
567
                [% END %]
567
                [% END %]
568
               <p class="problem">Item is withdrawn.</p>
568
               <p class="problem">
569
                   <span>Item is withdrawn</span>
570
                   [% item_withdrawn_lib = AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.withdrawn', authorised_value => item_withdrawn ) %]
571
                   [% IF (item_withdrawn_lib) %]<span class="ci-withdrawn">([% item_withdrawn_lib | html %])</span>[% END %]
572
               </p>
569
            [% END %]
573
            [% END %]
570
            [% IF ( errmsgloo.debarred ) %]
574
            [% IF ( errmsgloo.debarred ) %]
571
                <p class="problem"><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% errmsgloo.debarborrowernumber | uri %]">[% errmsgloo.debarname | html %]([% errmsgloo.debarcardnumber | html %])</a> is now debarred until [% errmsgloo.debarred | $KohaDates %].</p>
575
                <p class="problem"><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% errmsgloo.debarborrowernumber | uri %]">[% errmsgloo.debarname | html %]([% errmsgloo.debarcardnumber | html %])</a> is now debarred until [% errmsgloo.debarred | $KohaDates %].</p>
572
- 

Return to bug 21883