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

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js (-1 / +6 lines)
Lines 139-145 $(document).ready(function() { Link Here
139
                    }
139
                    }
140
                }
140
                }
141
            },
141
            },
142
            { 
143
                "mDataProp": "date_due",
144
                "bVisible": false,
145
            },
142
            {
146
            {
147
                "iDataSort": 1, // Sort on hidden unformatted date due column
143
                "mDataProp": function( oObj ) {
148
                "mDataProp": function( oObj ) {
144
                    var today = new Date();
149
                    var today = new Date();
145
                    var due = new Date( oObj.date_due );
150
                    var due = new Date( oObj.date_due );
Lines 283-289 $(document).ready(function() { Link Here
283
        },
288
        },
284
        "bPaginate": false,
289
        "bPaginate": false,
285
        "bProcessing": true,
290
        "bProcessing": true,
286
        "bServerSide": true,
291
        "bServerSide": false,
287
        "sAjaxSource": '/cgi-bin/koha/svc/checkouts.pl',
292
        "sAjaxSource": '/cgi-bin/koha/svc/checkouts.pl',
288
        "fnServerData": function ( sSource, aoData, fnCallback ) {
293
        "fnServerData": function ( sSource, aoData, fnCallback ) {
289
            aoData.push( { "name": "borrowernumber", "value": borrowernumber } );
294
            aoData.push( { "name": "borrowernumber", "value": borrowernumber } );
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +1 lines)
Lines 677-682 No patron matched <span class="ex">[% message %]</span> Link Here
677
                <tr>
677
                <tr>
678
                    <th scope="col">&nbsp;</th>
678
                    <th scope="col">&nbsp;</th>
679
                    <th scope="col">Due date</th>
679
                    <th scope="col">Due date</th>
680
                    <th scope="col">Due date</th>
680
                    <th scope="col">Title</th>
681
                    <th scope="col">Title</th>
681
                    <th scope="col">Item type</th>
682
                    <th scope="col">Item type</th>
682
                    <th scope="col">Checked out on</th>
683
                    <th scope="col">Checked out on</th>
683
- 

Return to bug 11703