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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (+1 lines)
Lines 840-845 Link Here
840
                                            <th>Hold date</th>
840
                                            <th>Hold date</th>
841
                                            <th>Title</th>
841
                                            <th>Title</th>
842
                                            <th>Call number</th>
842
                                            <th>Call number</th>
843
                                            <th>Item type</th>
843
                                            <th>Barcode</th>
844
                                            <th>Barcode</th>
844
                                            <th>Pickup at</th>
845
                                            <th>Pickup at</th>
845
                                            <th>Expiration</th>
846
                                            <th>Expiration</th>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (+1 lines)
Lines 776-781 Link Here
776
                                                    <th>Hold date</th>
776
                                                    <th>Hold date</th>
777
                                                    <th>Title</th>
777
                                                    <th>Title</th>
778
                                                    <th>Call number</th>
778
                                                    <th>Call number</th>
779
                                                    <th>Item type</th>
779
                                                    <th>Barcode</th>
780
                                                    <th>Barcode</th>
780
                                                    <th>Pickup at</th>
781
                                                    <th>Pickup at</th>
781
                                                    <th>Expiration</th>
782
                                                    <th>Expiration</th>
(-)a/koha-tmpl/intranet-tmpl/prog/js/holds.js (-1 / +9 lines)
Lines 172-177 $(document).ready(function() { Link Here
172
                            return oObj.itemcallnumber && oObj.itemcallnumber.escapeHtml() || "";
172
                            return oObj.itemcallnumber && oObj.itemcallnumber.escapeHtml() || "";
173
                        }
173
                        }
174
                    },
174
                    },
175
                    {
176
                        "mDataProp": function( oObj ) {
177
                            var data = "";
178
                            if ( oObj.itemtype ) {
179
                                data += oObj.itemtype;
180
                            }
181
                            return data;
182
                        }
183
                    },
175
                    {
184
                    {
176
                        "mDataProp": function( oObj ) {
185
                        "mDataProp": function( oObj ) {
177
                            var data = "";
186
                            var data = "";
178
- 

Return to bug 30081