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

(-)a/C4/XSLT.pm (-2 / +1 lines)
Lines 337-343 sub buildKohaItemsNamespace { Link Here
337
        } elsif ( $item->_result->reserves->count && $item->holds->waiting->count ) {
337
        } elsif ( $item->_result->reserves->count && $item->holds->waiting->count ) {
338
            $status    = 'other';
338
            $status    = 'other';
339
            $substatus = 'Hold waiting';
339
            $substatus = 'Hold waiting';
340
        } elsif ( $item->_result->current_branchtransfers->count && $item->get_transfer ) {
340
        } elsif ( $item->_result->current_branchtransfers->count ) {
341
            $status    = 'other';
341
            $status    = 'other';
342
            $substatus = 'In transit';
342
            $substatus = 'In transit';
343
        } elsif ( $item->damaged && !C4::Context->preference('AllowHoldsOnDamagedItems') ) {
343
        } elsif ( $item->damaged && !C4::Context->preference('AllowHoldsOnDamagedItems') ) {
344
- 

Return to bug 28702