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 57-63 $(document).ready(function() { Link Here
57
                exempt_fine:    $("#exemptfine").is(':checked')
57
                exempt_fine:    $("#exemptfine").is(':checked')
58
            };
58
            };
59
59
60
            $.post( "/cgi-bin/koha/svc/checkin.pl", params, function( data ) {
60
            $.post( "/cgi-bin/koha/svc/checkin", params, function( data ) {
61
                id = "#checkin_" + data.itemnumber;
61
                id = "#checkin_" + data.itemnumber;
62
62
63
                content = "";
63
                content = "";
Lines 86-92 $(document).ready(function() { Link Here
86
                date_due:       $("#newduedate").val()
86
                date_due:       $("#newduedate").val()
87
            };
87
            };
88
88
89
            $.post( "/cgi-bin/koha/svc/renew.pl", params, function( data ) {
89
            $.post( "/cgi-bin/koha/svc/renew", params, function( data ) {
90
                var id = "#renew_" + data.itemnumber;
90
                var id = "#renew_" + data.itemnumber;
91
91
92
                var content = "";
92
                var content = "";
Lines 305-311 $(document).ready(function() { Link Here
305
        "bPaginate": false,
305
        "bPaginate": false,
306
        "bProcessing": true,
306
        "bProcessing": true,
307
        "bServerSide": false,
307
        "bServerSide": false,
308
        "sAjaxSource": '/cgi-bin/koha/svc/checkouts.pl',
308
        "sAjaxSource": '/cgi-bin/koha/svc/checkouts',
309
        "fnServerData": function ( sSource, aoData, fnCallback ) {
309
        "fnServerData": function ( sSource, aoData, fnCallback ) {
310
            aoData.push( { "name": "borrowernumber", "value": borrowernumber } );
310
            aoData.push( { "name": "borrowernumber", "value": borrowernumber } );
311
311
Lines 431-437 $(document).ready(function() { Link Here
431
                "bPaginate": false,
431
                "bPaginate": false,
432
                "bProcessing": true,
432
                "bProcessing": true,
433
                "bServerSide": false,
433
                "bServerSide": false,
434
                "sAjaxSource": '/cgi-bin/koha/svc/checkouts.pl',
434
                "sAjaxSource": '/cgi-bin/koha/svc/checkouts',
435
                "fnServerData": function ( sSource, aoData, fnCallback ) {
435
                "fnServerData": function ( sSource, aoData, fnCallback ) {
436
                    $.each(relatives_borrowernumbers, function( index, value ) {
436
                    $.each(relatives_borrowernumbers, function( index, value ) {
437
                        aoData.push( { "name": "borrowernumber", "value": value } );
437
                        aoData.push( { "name": "borrowernumber", "value": value } );
(-)a/svc/checkouts.pl (-2 lines)
Lines 1-7 Link Here
1
#!/usr/bin/perl
1
#!/usr/bin/perl
2
2
3
# This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
4
5
# Copyright 2014 ByWater Solutions
3
# Copyright 2014 ByWater Solutions
6
#
4
#
7
# This file is part of Koha.
5
# This file is part of Koha.
(-)a/svc/holds.pl (-2 lines)
Lines 1-7 Link Here
1
#!/usr/bin/perl
1
#!/usr/bin/perl
2
2
3
# This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
4
5
# Copyright 2014 ByWater Solutions
3
# Copyright 2014 ByWater Solutions
6
#
4
#
7
# This file is part of Koha.
5
# This file is part of Koha.

Return to bug 11703