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 } ); |