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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1196-1201 modules: Link Here
1196
              columnname: collection
1196
              columnname: collection
1197
            -
1197
            -
1198
              columnname: document_type
1198
              columnname: document_type
1199
            -
1200
              columnname: shelving_location
1199
            -
1201
            -
1200
              columnname: callnumber
1202
              columnname: callnumber
1201
            -
1203
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt (-3 / +9 lines)
Lines 79-84 Link Here
79
        <th class="hq-title anti-the">Title</th>
79
        <th class="hq-title anti-the">Title</th>
80
        <th class="hq-collection">Collection</th>
80
        <th class="hq-collection">Collection</th>
81
        <th class="hq-itemtype">Item type</th>
81
        <th class="hq-itemtype">Item type</th>
82
        <th class="hq-location">Shelving location</th>
82
        <th class="hq-callnumber">Call number</th>
83
        <th class="hq-callnumber">Call number</th>
83
        <th class="hq-copynumber">Copy number</th>
84
        <th class="hq-copynumber">Copy number</th>
84
        <th class="hq-enumchron">Enumeration</th>
85
        <th class="hq-enumchron">Enumeration</th>
Lines 105-110 Link Here
105
                <input type="text" placeholder="Item type">
106
                <input type="text" placeholder="Item type">
106
            </span>
107
            </span>
107
        </td>
108
        </td>
109
        <td class="hq-location">
110
            <span class="filter_column filter_text">
111
                <input type="text" placeholder="Shelving location">
112
            </span>
113
        </td>
108
        <td class="hq-callnumber">
114
        <td class="hq-callnumber">
109
            <span class="filter_column filter_text">
115
            <span class="filter_column filter_text">
110
                <input type="text" placeholder="Call number">
116
                <input type="text" placeholder="Call number">
Lines 181-187 Link Here
181
            </td>
187
            </td>
182
            <td class="hq-collection">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => itemsloo.ccode ) | html %]</td>
188
            <td class="hq-collection">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => itemsloo.ccode ) | html %]</td>
183
            <td class="hq-itemtype">[% ItemTypes.GetDescription( itemsloo.itype ) | html %]</td>
189
            <td class="hq-itemtype">[% ItemTypes.GetDescription( itemsloo.itype ) | html %]</td>
184
            <td class="hq-callnumber">[% IF ( itemsloo.location ) %]<em>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => itemsloo.location ) | html %]</em> [% END %][% itemsloo.itemcallnumber | html %]</td>
190
            <td class="hq-location">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => itemsloo.location ) | html %]</td>
191
            <td class="hq-callnumber">[% itemsloo.itemcallnumber | html %]</td>
185
            <td class="hq-copynumber">[% itemsloo.copynumber | html %]</td>
192
            <td class="hq-copynumber">[% itemsloo.copynumber | html %]</td>
186
            <td class="hq-enumchron">[% itemsloo.enumchron | html %]</td>
193
            <td class="hq-enumchron">[% itemsloo.enumchron | html %]</td>
187
            <td class="hq-barcode">
194
            <td class="hq-barcode">
Lines 300-306 Link Here
300
307
301
            var columns_settings = [% TablesSettings.GetColumns('circ', 'view_holdsqueue', 'holds-table', 'json') | $raw %];
308
            var columns_settings = [% TablesSettings.GetColumns('circ', 'view_holdsqueue', 'holds-table', 'json') | $raw %];
302
            var holdst = KohaTable("holdst", {
309
            var holdst = KohaTable("holdst", {
303
                "aaSorting": [[ 3, "asc" ]],
310
                "aaSorting": [[ 4, "asc" ]],
304
                "sDom": 'B<"clearfix">t',
311
                "sDom": 'B<"clearfix">t',
305
                "bSortCellsTop": true,
312
                "bSortCellsTop": true,
306
                "bPaginate": false
313
                "bPaginate": false
307
- 

Return to bug 30411