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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-2 / +2 lines)
Lines 426-432 $(document).ready(function() { Link Here
426
                },
426
                },
427
                {
427
                {
428
                    "iDataSort": 10, // Sort on hidden unformatted issuedate column
428
                    "iDataSort": 10, // Sort on hidden unformatted issuedate column
429
                    "mDataProp": "issuedate",
429
                    "mDataProp": "issuedate_formatted",
430
                },
430
                },
431
                {
431
                {
432
                    "mDataProp": function ( oObj ) {
432
                    "mDataProp": function ( oObj ) {
Lines 823-829 $(document).ready(function() { Link Here
823
                    },
823
                    },
824
                    {
824
                    {
825
                        "iDataSort": 7, // Sort on hidden unformatted issuedate column
825
                        "iDataSort": 7, // Sort on hidden unformatted issuedate column
826
                        "mDataProp": "issuedate",
826
                        "mDataProp": "issuedate_formatted",
827
                    },
827
                    },
828
                    {
828
                    {
829
                        "mDataProp": function ( oObj ) {
829
                        "mDataProp": function ( oObj ) {
(-)a/svc/checkouts (-1 / +2 lines)
Lines 288-293 while ( my $c = $sth->fetchrow_hashref() ) { Link Here
288
        return_claim_created_on_formatted => $c->{return_claim_created_on} ? output_pref({ dt => dt_from_string( $c->{return_claim_created_on} ) }) : undef,
288
        return_claim_created_on_formatted => $c->{return_claim_created_on} ? output_pref({ dt => dt_from_string( $c->{return_claim_created_on} ) }) : undef,
289
        return_claim_updated_on_formatted => $c->{return_claim_updated_on} ? output_pref({ dt => dt_from_string( $c->{return_claim_updated_on} ) }) : undef,
289
        return_claim_updated_on_formatted => $c->{return_claim_updated_on} ? output_pref({ dt => dt_from_string( $c->{return_claim_updated_on} ) }) : undef,
290
290
291
        issuedate_formatted => output_pref({ dt => dt_from_string( $c->{issuedate} ) }),
292
291
        lost    => $lost,
293
        lost    => $lost,
292
        claims_returned => $claims_returned,
294
        claims_returned => $claims_returned,
293
        damaged => $damaged,
295
        damaged => $damaged,
294
- 

Return to bug 34292