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

(-)a/C4/Circulation.pm (+1 lines)
Lines 946-951 sub CanBookBeIssued { Link Here
946
    if ( $item->{'withdrawn'} && $item->{'withdrawn'} > 0 )
946
    if ( $item->{'withdrawn'} && $item->{'withdrawn'} > 0 )
947
    {
947
    {
948
        $issuingimpossible{WTHDRAWN} = 1;
948
        $issuingimpossible{WTHDRAWN} = 1;
949
        $issuingimpossible{item_withdrawn} = $item->{'withdrawn'};
949
    }
950
    }
950
    if (   $item->{'restricted'}
951
    if (   $item->{'restricted'}
951
        && $item->{'restricted'} == 1 )
952
        && $item->{'restricted'} == 1 )
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-2 / +5 lines)
Lines 348-354 Link Here
348
        [% END %]
348
        [% END %]
349
349
350
        [% IF ( WTHDRAWN ) %]
350
        [% IF ( WTHDRAWN ) %]
351
            <li>Item has been withdrawn</li>
351
            <li>
352
                <span>Item has been withdrawn</span>
353
                [% item_withdrawn_lib = AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.withdrawn', authorised_value => item_withdrawn ) %]
354
                [% IF (item_withdrawn_lib) %]<span class="co-withdrawn">([% item_withdrawn_lib | html %])</span>[% END %]
355
            </li>
352
        [% END %]
356
        [% END %]
353
357
354
        [% IF ( RESTRICTED ) %]
358
        [% IF ( RESTRICTED ) %]
355
- 

Return to bug 21877