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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt (-23 / +2 lines)
Lines 200-225 Link Here
200
                    [% END # /UNLESS subscription.cannotdisplay %]
200
                    [% END # /UNLESS subscription.cannotdisplay %]
201
                [% END  # /FOREACH subscription %]
201
                [% END  # /FOREACH subscription %]
202
            </tbody>
202
            </tbody>
203
            <tfoot>
204
                <tr>
205
                    <td></td>
206
                    <td><input type="text" class="dt-filter" data-column_num="1" placeholder="Search ISSN" /></td>
207
                    <td><input type="text" class="dt-filter" data-column_num="2" placeholder="Search title" /></td>
208
                    <td><input type="text" class="dt-filter" data-column_num="3" placeholder="Search notes" /></td>
209
                    <td><input type="text" class="dt-filter" data-column_num="4" placeholder="Search library" /></td>
210
                    <td><input type="text" class="dt-filter" data-column_num="5" placeholder="Search location" /></td>
211
                    <td><input type="text" class="dt-filter" data-column_num="6" placeholder="Search callnumber" /></td>
212
                    [% SET column_num = 6 %]
213
                    [% UNLESS closed %]
214
                        <td><input type="text" class="dt-filter" data-column_num="7" placeholder="Search expiration date" /></td>
215
                        [% SET column_num = column_num + 1 %]
216
                    [% END %]
217
                    [% FOR field IN additional_fields_for_subscription %]
218
                        <td><input type="text" class="dt-filter" data-column_num="[% loop.count + column_num | html %]" placeholder="Search [% field.name | html %]" /></td>
219
                    [% END %]
220
                    <td></td>
221
                </tr>
222
            </tfoot>
223
        </table>
203
        </table>
224
    </div>
204
    </div>
225
[% END # /BLOCK subscriptions_table %]
205
[% END # /BLOCK subscriptions_table %]
Lines 337-349 Link Here
337
            var osrlt = $("#opened_panel table").kohaTable({
317
            var osrlt = $("#opened_panel table").kohaTable({
338
                pagingType: "full",
318
                pagingType: "full",
339
                order: [[2, "asc"]],
319
                order: [[2, "asc"]],
340
            });
320
            }, null, true);
341
321
342
            var csrlt = $("#closed_panel table").kohaTable({
322
            var csrlt = $("#closed_panel table").kohaTable({
343
                // FIXME sort function of additional_fields!
323
                // FIXME sort function of additional_fields!
344
                order: [[2, "asc"]],
324
                order: [[2, "asc"]],
345
                pagingType: "full",
325
                pagingType: "full",
346
            });
326
            }, null, true);
347
327
348
            var manarlt = $("#mana_results_datatable").kohaTable({
328
            var manarlt = $("#mana_results_datatable").kohaTable({
349
                pagingType: "full",
329
                pagingType: "full",
350
- 

Return to bug 39814