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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-1 / +1 lines)
Lines 377-383 Link Here
377
                }));
377
                }));
378
            }
378
            }
379
379
380
            var pending_orders_table = $("#pending_orders").api({
380
            var pending_orders_table = $("#pending_orders").kohaTable({
381
                "ajax": {
381
                "ajax": {
382
                    "url": '/api/v1/acquisitions/orders?only_active=1'
382
                    "url": '/api/v1/acquisitions/orders?only_active=1'
383
                },
383
                },
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt (-1 / +1 lines)
Lines 332-338 Libraries › Administration › Koha Link Here
332
        $(document).ready(function() {
332
        $(document).ready(function() {
333
333
334
            var libraries_url = '/api/v1/libraries';
334
            var libraries_url = '/api/v1/libraries';
335
            var libraries = $("#libraries").api({
335
            var libraries = $("#libraries").kohaTable({
336
                "ajax": {
336
                "ajax": {
337
                    "url": libraries_url
337
                    "url": libraries_url
338
                },
338
                },
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt (-1 / +1 lines)
Lines 227-233 Link Here
227
            cities_table_url += 'q='+ encodeURIComponent(JSON.stringify(city_name_filter));
227
            cities_table_url += 'q='+ encodeURIComponent(JSON.stringify(city_name_filter));
228
        [% END %]
228
        [% END %]
229
229
230
            var cities_table = $("#table_cities").api({
230
            var cities_table = $("#table_cities").kohaTable({
231
                "ajax": {
231
                "ajax": {
232
                    "url": cities_table_url
232
                    "url": cities_table_url
233
                },
233
                },
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smtp_servers.tt (-1 / +1 lines)
Lines 298-304 Link Here
298
        $(document).ready(function() {
298
        $(document).ready(function() {
299
299
300
            var smtp_servers_url = '/api/v1/config/smtp_servers';
300
            var smtp_servers_url = '/api/v1/config/smtp_servers';
301
            window.smtp_servers = $("#smtp_servers").api({
301
            window.smtp_servers = $("#smtp_servers").kohaTable({
302
                "ajax": {
302
                "ajax": {
303
                    "url": smtp_servers_url
303
                    "url": smtp_servers_url
304
                },
304
                },
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt (-1 / +1 lines)
Lines 425-431 Link Here
425
425
426
426
427
        var cashups_table_url = "/api/v1/cash_registers/[% register.id | html %]/cashups?";
427
        var cashups_table_url = "/api/v1/cash_registers/[% register.id | html %]/cashups?";
428
        var cashups_table = $("#table_cashups").api({
428
        var cashups_table = $("#table_cashups").kohaTable({
429
            "ajax": {
429
            "ajax": {
430
                "url": cashups_table_url
430
                "url": cashups_table_url
431
            },
431
            },
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt (-2 / +1 lines)
Lines 156-162 Link Here
156
        $(document).ready(function() {
156
        $(document).ready(function() {
157
157
158
            var quotes_url = '/api/v1/quotes';
158
            var quotes_url = '/api/v1/quotes';
159
            var quotes = $("#quotes").api({
159
            var quotes = $("#quotes").kohaTable({
160
                "ajax": {
160
                "ajax": {
161
                    "url": quotes_url
161
                    "url": quotes_url
162
                },
162
                },
163
- 

Return to bug 29408