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

(-)a/admin/columns_settings.yml (+31 lines)
Lines 2237-2242 modules: Link Here
2237
                -
2237
                -
2238
                    columnname: booking_dates
2238
                    columnname: booking_dates
2239
2239
2240
    requests:
2241
      requestspecific_table:
2242
        default_sort_order: 1
2243
        columns:
2244
            -
2245
              columnname: hold
2246
              cannot_be_toggled: 1
2247
            -
2248
              columnname: allowed_pickup_locations
2249
              cannot_be_toggled: 1
2250
            -
2251
              columnname: item_type
2252
            -
2253
              columnname: barcode
2254
            -
2255
              columnname: item_group
2256
            -
2257
              columnname: home_library
2258
            -
2259
              columnname: last_location
2260
            -
2261
              columnname: collection
2262
            -
2263
              columnname: call_number
2264
            -
2265
              columnname: copy_number
2266
            -
2267
              columnname: volume_number
2268
            -
2269
              columnname: information
2270
2240
  opac:
2271
  opac:
2241
    biblio-detail:
2272
    biblio-detail:
2242
      holdingst:
2273
      holdingst:
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-16 / +18 lines)
Lines 813-838 Link Here
813
                        <table id="requestspecific">
813
                        <table id="requestspecific">
814
                            <thead>
814
                            <thead>
815
                                <tr>
815
                                <tr>
816
                                    <th>Hold</th>
816
                                    <th id="hold" data-colname="hold">Hold</th>
817
                                    <th>Allowed pickup locations</th>
817
                                    <th id="allowed_pickup_locations" data-colname="allowed_pickup_locations">Allowed pickup locations</th>
818
                                    [% IF Koha.Preference('item-level_itypes') %]
818
                                    [% IF Koha.Preference('item-level_itypes') %]
819
                                        <th>Item type</th>
819
                                        <th id="item_type" data-colname="item_type">Item type</th>
820
                                    [% END %]
820
                                    [% END %]
821
                                    <th>Barcode</th>
821
                                    <th id="barcode" data-colname="barcode">Barcode</th>
822
                                    [% IF Koha.Preference('EnableItemGroupHolds') && biblio_info.object.item_groups.count %]
822
                                    [% IF Koha.Preference('EnableItemGroupHolds') && biblio_info.object.item_groups.count %]
823
                                        <th>Item group</th>
823
                                        <th id="item_group" data-colname="item_group">Item group</th>
824
                                    [% END %]
824
                                    [% END %]
825
                                    <th>Home library</th>
825
                                    <th id="home_library" data-colname="home_library">Home library</th>
826
                                    <th>Last location</th>
826
                                    <th id="last_location" data-colname="last_location">Last location</th>
827
                                    [% IF itemdata_ccode %]
827
                                    [% IF itemdata_ccode %]
828
                                        <th>Collection</th>
828
                                        <th id="collection" data-colname="collection">Collection</th>
829
                                    [% END %]
829
                                    [% END %]
830
                                    <th>Call number</th>
830
                                    <th id="call_number" data-colname="call_number">Call number</th>
831
                                    <th>Copy number</th>
831
                                    <th id="copy_number" data-colname="copy_number">Copy number</th>
832
                                    [% IF itemdata_enumchron %]
832
                                    [% IF itemdata_enumchron %]
833
                                        <th>Vol no.</th>
833
                                        <th id="volume_number" data-colname="volume_number">Vol no.</th>
834
                                    [% END %]
834
                                    [% END %]
835
                                    <th>Information</th>
835
                                    <th id="information" data-colname="information">Information</th>
836
                                </tr>
836
                                </tr>
837
                            </thead>
837
                            </thead>
838
                            <tbody>
838
                            <tbody>
Lines 1509-1517 Link Here
1509
                });
1509
                });
1510
            [% END %]
1510
            [% END %]
1511
1511
1512
            var my_table = $("#requestspecific").kohaTable({
1512
            $(document).ready(function () {
1513
                paging: false,
1513
                requestspecific_table_settings = [% TablesSettings.GetTableSettings( 'circ', 'requests', 'requestspecific_table', 'json' ) | $raw %];
1514
                dom: '<"top pager"ilf>t',
1514
                $("#requestspecific").kohaTable({
1515
                    "bPaginate":false,
1516
                    "bKohaColumnsUseNames": true,
1517
                }, requestspecific_table_settings);
1515
            });
1518
            });
1516
1519
1517
            $("#club-request-form").on("submit", function() {
1520
            $("#club-request-form").on("submit", function() {
1518
- 

Return to bug 39592