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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-return-claims.inc (+2 lines)
Lines 15-20 Link Here
15
            <th class="return-claim-record-title anti-the">Title</th>
15
            <th class="return-claim-record-title anti-the">Title</th>
16
            <th class="return-claim-notes">Notes</th>
16
            <th class="return-claim-notes">Notes</th>
17
            <th class="return-claim-created-on">Created on</th>
17
            <th class="return-claim-created-on">Created on</th>
18
            <th class="return-claim-created-on">Created on</th>
19
            <th class="return-claim-updated-on">Updated on</th>
18
            <th class="return-claim-updated-on">Updated on</th>
20
            <th class="return-claim-updated-on">Updated on</th>
19
            <th class="return-claim-resolution">Resolution</th>
21
            <th class="return-claim-resolution">Resolution</th>
20
            <th class="return-claim-actions NoSort">&nbsp;</th>
22
            <th class="return-claim-actions NoSort">&nbsp;</th>
(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-5 / +16 lines)
Lines 985-1000 $(document).ready(function() { Link Here
985
                        }
985
                        }
986
                    },
986
                    },
987
                    {
987
                    {
988
                        "mDataProp": "created_on",
989
                        "bVisible": false,
990
                    },
991
                    {
992
                        "orderData": 4,
988
                        "mDataProp": function ( oObj ) {
993
                        "mDataProp": function ( oObj ) {
989
                            let created_on = new Date( oObj.created_on );
994
                            if ( oObj.created_on ) {
990
                            return created_on.toLocaleDateString();
995
                                return $date(oObj.created_on, { no_tz_adjust: true });;
996
                            } else {
997
                                return "";
998
                            }
991
                        }
999
                        }
992
                    },
1000
                    },
993
                    {
1001
                    {
1002
                        "mDataProp": "updated_on",
1003
                        "bVisible": false,
1004
                    },
1005
                    {
1006
                        "orderData": 6,
994
                        "mDataProp": function ( oObj ) {
1007
                        "mDataProp": function ( oObj ) {
995
                            if ( oObj.updated_on ) {
1008
                            if ( oObj.updated_on ) {
996
                                let updated_on = new Date( oObj.updated_on );
1009
                                return $date(oObj.updated_on, { no_tz_adjust: true });
997
                                return updated_on.toLocaleDateString();
998
                            } else {
1010
                            } else {
999
                                return "";
1011
                                return "";
1000
                            }
1012
                            }
1001
- 

Return to bug 25023