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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (+1 lines)
Lines 839-844 Link Here
839
                                        <tr>
839
                                        <tr>
840
                                            <th>Hold date</th>
840
                                            <th>Hold date</th>
841
                                            <th>Title</th>
841
                                            <th>Title</th>
842
                                            <th>Item type</th>
842
                                            <th>Call number</th>
843
                                            <th>Call number</th>
843
                                            <th>Barcode</th>
844
                                            <th>Barcode</th>
844
                                            <th>Pickup at</th>
845
                                            <th>Pickup at</th>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (+1 lines)
Lines 775-780 Link Here
775
                                                <tr>
775
                                                <tr>
776
                                                    <th>Hold date</th>
776
                                                    <th>Hold date</th>
777
                                                    <th>Title</th>
777
                                                    <th>Title</th>
778
                                                    <th>Item type</th>
778
                                                    <th>Call number</th>
779
                                                    <th>Call number</th>
779
                                                    <th>Barcode</th>
780
                                                    <th>Barcode</th>
780
                                                    <th>Pickup at</th>
781
                                                    <th>Pickup at</th>
(-)a/koha-tmpl/intranet-tmpl/prog/js/holds.js (+5 lines)
Lines 168-173 $(document).ready(function() { Link Here
168
                            return title;
168
                            return title;
169
                        }
169
                        }
170
                    },
170
                    },
171
                    {
172
                        "mDataProp": function( oObj ) {
173
                            return oObj.itemtype_descr && oObj.itemtype_descr.escapeHtml() || "";
174
                        }
175
                    },
171
                    {
176
                    {
172
                        "mDataProp": function( oObj ) {
177
                        "mDataProp": function( oObj ) {
173
                            return oObj.itemcallnumber && oObj.itemcallnumber.escapeHtml() || "";
178
                            return oObj.itemcallnumber && oObj.itemcallnumber.escapeHtml() || "";
(-)a/svc/holds (-2 / +6 lines)
Lines 132-140 while ( my $h = $holds_rs->next() ) { Link Here
132
    $hold->{not_transfered} = 0;
132
    $hold->{not_transfered} = 0;
133
133
134
    if ($item) {
134
    if ($item) {
135
136
        my $effective_itemtype = $item->effective_itemtype();
137
        my $itemtype_obj = Koha::ItemTypes->find( $effective_itemtype );
138
135
        $hold->{itemnumber}     = $item->itemnumber();
139
        $hold->{itemnumber}     = $item->itemnumber();
136
        $hold->{barcode}        = $item->barcode();
140
        $hold->{barcode}        = $item->barcode();
137
        $hold->{itemtype}       = $item->effective_itemtype();
141
        $hold->{itemtype}       = $effective_itemtype;
142
        $hold->{itemtype_descr} = $itemtype_obj->translated_description;
138
        $hold->{enumchron}      = $item->enumchron();
143
        $hold->{enumchron}      = $item->enumchron();
139
        $hold->{itemcallnumber} = $item->itemcallnumber() || q{};
144
        $hold->{itemcallnumber} = $item->itemcallnumber() || q{};
140
145
141
- 

Return to bug 29982