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

(-)a/C4/Reserves.pm (-2 / +2 lines)
Lines 1195-1202 sub IsAvailableForItemLevelRequest { Link Here
1195
    # FIXME - a lot of places in the code do this
1195
    # FIXME - a lot of places in the code do this
1196
    #         or something similar - need to be
1196
    #         or something similar - need to be
1197
    #         consolidated
1197
    #         consolidated
1198
    my $itemtype = $item->effective_itemtype;
1198
    my $itemtype = Koha::ItemTypes->find( $item->effective_itemtype );
1199
    my $notforloan_per_itemtype = Koha::ItemTypes->find($itemtype)->notforloan;
1199
    my $notforloan_per_itemtype = defined $itemtype ? $itemtype->notforloan : 0;
1200
1200
1201
    return 0 if
1201
    return 0 if
1202
        $notforloan_per_itemtype ||
1202
        $notforloan_per_itemtype ||
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref (-2 / +1 lines)
Lines 74-80 Cataloging: Link Here
74
        -
74
        -
75
            - Map the MARC subfield
75
            - Map the MARC subfield
76
            - pref: itemcallnumber
76
            - pref: itemcallnumber
77
            - "to an item's callnumber. (This can contain multiple subfields to look in; for instance <code>082ab</code> would look in 082 subfields a and b.)<br />Examples (for MARC21 records): <strong>Dewey</strong>: <code>082ab</code> or <code>092ab</code>; <strong>LOC</strong>: <code>050ab</code> or <code>090ab</code>; <strong>from the item record</strong>: <code>852hi</code>"
77
            - "to an item's callnumber. (This can contain multiple subfields to look in; for instance <code>082ab</code> would look in 082 subfields a and b.)</br>Note: The order of the subfields in the record will be preserved.<br />Examples (for MARC21 records): <strong>Dewey</strong>: <code>082ab</code> or <code>092ab</code>; <strong>LOC</strong>: <code>050ab</code> or <code>090ab</code>; <strong>from the item record</strong>: <code>852hi</code>"
78
        -
78
        -
79
            - Display MARC subfield
79
            - Display MARC subfield
80
            - pref: AlternateHoldingsField
80
            - pref: AlternateHoldingsField
81
- 

Return to bug 9156