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

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js (-4 / +4 lines)
Lines 55-61 $(document).ready(function() { Link Here
55
                exempt_fine:    $("#exemptfine").is(':checked')
55
                exempt_fine:    $("#exemptfine").is(':checked')
56
            };
56
            };
57
57
58
            $.post( "/cgi-bin/koha/api/checkin.pl", params, function( data ) {
58
            $.post( "/cgi-bin/koha/svc/checkin.pl", params, function( data ) {
59
                id = "#checkin_" + data.itemnumber;
59
                id = "#checkin_" + data.itemnumber;
60
60
61
                content = "";
61
                content = "";
Lines 84-90 $(document).ready(function() { Link Here
84
                date_due:       $("#newduedate").val()
84
                date_due:       $("#newduedate").val()
85
            };
85
            };
86
86
87
            $.post( "/cgi-bin/koha/api/renew.pl", params, function( data ) {
87
            $.post( "/cgi-bin/koha/svc/renew.pl", params, function( data ) {
88
                var id = "#renew_" + data.itemnumber;
88
                var id = "#renew_" + data.itemnumber;
89
89
90
                var content = "";
90
                var content = "";
Lines 284-290 $(document).ready(function() { Link Here
284
        "bPaginate": false,
284
        "bPaginate": false,
285
        "bProcessing": true,
285
        "bProcessing": true,
286
        "bServerSide": true,
286
        "bServerSide": true,
287
        "sAjaxSource": '/cgi-bin/koha/api/checkouts.pl',
287
        "sAjaxSource": '/cgi-bin/koha/svc/checkouts.pl',
288
        "fnServerData": function ( sSource, aoData, fnCallback ) {
288
        "fnServerData": function ( sSource, aoData, fnCallback ) {
289
            aoData.push( { "name": "borrowernumber", "value": borrowernumber } );
289
            aoData.push( { "name": "borrowernumber", "value": borrowernumber } );
290
290
Lines 394-400 $(document).ready(function() { Link Here
394
                "bPaginate": false,
394
                "bPaginate": false,
395
                "bProcessing": true,
395
                "bProcessing": true,
396
                "bServerSide": true,
396
                "bServerSide": true,
397
                "sAjaxSource": '/cgi-bin/koha/api/checkouts.pl',
397
                "sAjaxSource": '/cgi-bin/koha/svc/checkouts.pl',
398
                "fnServerData": function ( sSource, aoData, fnCallback ) {
398
                "fnServerData": function ( sSource, aoData, fnCallback ) {
399
                    $.each(relatives_borrowernumbers, function( index, value ) {
399
                    $.each(relatives_borrowernumbers, function( index, value ) {
400
                        aoData.push( { "name": "borrowernumber", "value": value } );
400
                        aoData.push( { "name": "borrowernumber", "value": value } );
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/holds.js (-1 / +1 lines)
Lines 111-117 $(document).ready(function() { Link Here
111
                "bPaginate": false,
111
                "bPaginate": false,
112
                "bProcessing": true,
112
                "bProcessing": true,
113
                "bServerSide": true,
113
                "bServerSide": true,
114
                "sAjaxSource": '/cgi-bin/koha/api/holds.pl',
114
                "sAjaxSource": '/cgi-bin/koha/svc/holds.pl',
115
                "fnServerData": function ( sSource, aoData, fnCallback ) {
115
                "fnServerData": function ( sSource, aoData, fnCallback ) {
116
                    aoData.push( { "name": "borrowernumber", "value": borrowernumber } );
116
                    aoData.push( { "name": "borrowernumber", "value": borrowernumber } );
117
117

Return to bug 11703