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

(-)a/catalogue/moredetail.pl (-5 / +2 lines)
Lines 273-283 foreach my $item (@items) { Link Here
273
        $item_info->{displays}      = \@displays      if @displays;
273
        $item_info->{displays}      = \@displays      if @displays;
274
    }
274
    }
275
275
276
    $item_info->{homebranch} = $item->effective_homebranch
276
    $item_info->{homebranch}    = $item->effective_homebranch;
277
        if ( C4::Context->preference('UseDisplayModule') && $item->effective_homebranch );
277
    $item_info->{holdingbranch} = $item->effective_holdingbranch;
278
279
    $item_info->{holdingbranch} = $item->effective_holdingbranch
280
        if ( C4::Context->preference('UseDisplayModule') && $item->effective_holdingbranch );
281
278
282
    push @item_data, $item_info;
279
    push @item_data, $item_info;
283
}
280
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt (-2 / +1 lines)
Lines 180-186 Link Here
180
                                [% IF ( item_level_itypes ) %]
180
                                [% IF ( item_level_itypes ) %]
181
                                    <li class="itype"><span class="label">Item type:</span> [% ITEM_DAT.itype | html %]&nbsp;</li>
181
                                    <li class="itype"><span class="label">Item type:</span> [% ITEM_DAT.itype | html %]&nbsp;</li>
182
                                [% END %]
182
                                [% END %]
183
                                [% IF ( ITEM_DAT.ccode) %]
183
                                [% IF ( ITEM_DAT.ccode ) %]
184
                                    <li class="ccode"><span class="label">Collection:</span> [% ITEM_DAT.ccode | html %]</li>
184
                                    <li class="ccode"><span class="label">Collection:</span> [% ITEM_DAT.ccode | html %]</li>
185
                                [% END %]
185
                                [% END %]
186
                                <li class="itemcallnumber"><span class="label">Item call number:</span> [% ITEM_DAT.itemcallnumber | html %]</li>
186
                                <li class="itemcallnumber"><span class="label">Item call number:</span> [% ITEM_DAT.itemcallnumber | html %]</li>
187
- 

Return to bug 14962