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 989-1004 $(document).ready(function() { Link Here
989
                        }
989
                        }
990
                    },
990
                    },
991
                    {
991
                    {
992
                        "mDataProp": "created_on",
993
                        "bVisible": false,
994
                    },
995
                    {
996
                        "orderData": 4,
992
                        "mDataProp": function ( oObj ) {
997
                        "mDataProp": function ( oObj ) {
993
                            let created_on = new Date( oObj.created_on );
998
                            if ( oObj.created_on ) {
994
                            return created_on.toLocaleDateString();
999
                                return $date(oObj.created_on, { no_tz_adjust: true });;
1000
                            } else {
1001
                                return "";
1002
                            }
995
                        }
1003
                        }
996
                    },
1004
                    },
997
                    {
1005
                    {
1006
                        "mDataProp": "updated_on",
1007
                        "bVisible": false,
1008
                    },
1009
                    {
1010
                        "orderData": 6,
998
                        "mDataProp": function ( oObj ) {
1011
                        "mDataProp": function ( oObj ) {
999
                            if ( oObj.updated_on ) {
1012
                            if ( oObj.updated_on ) {
1000
                                let updated_on = new Date( oObj.updated_on );
1013
                                return $date(oObj.updated_on, { no_tz_adjust: true });
1001
                                return updated_on.toLocaleDateString();
1002
                            } else {
1014
                            } else {
1003
                                return "";
1015
                                return "";
1004
                            }
1016
                            }
1005
- 

Return to bug 25023