diff --git a/application/views/config_wallet_ilink_hyp/etat_soldes.php b/application/views/config_wallet_ilink_hyp/etat_soldes.php index d198e9c9..c0e7e435 100755 --- a/application/views/config_wallet_ilink_hyp/etat_soldes.php +++ b/application/views/config_wallet_ilink_hyp/etat_soldes.php @@ -200,6 +200,19 @@ 'pageLength', { extend: 'excelHtml5', + customizeData: function (data) { + for (var i = 0; i < data.body.length; i++) { + for (var j = 0; j < data.body[i].length; j++) { + // data.body[i][j] = '\u200C' + data.body[i][j]; + if ([1, 2].includes(j)) { + // Get the value and strip the non numeric characters + // var value = $(this).text(); + value = data.body[i][j].replace(',', ".") + data.body[i][j] = Number(value.replace(/[^0-9\.-]+/g, "")); + } + } + } + }, customize: function (xlsx) { var sheet = xlsx.xl.worksheets['sheet1.xml'], sum = 0; diff --git a/application/views/historique_remboursement.php b/application/views/historique_remboursement.php index 4c7a7550..39931810 100755 --- a/application/views/historique_remboursement.php +++ b/application/views/historique_remboursement.php @@ -111,7 +111,7 @@
-

lang->line('recharge_historic'); ?>

+

lang->line('refund_history'); ?>