Skip to content

Commit 44dd5b3

Browse files
committed
fix: conversione valore negativi in esportazione fatture in xls
1 parent 728f45f commit 44dd5b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

assets/src/js/functions/datatables.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ function getDatatablesButtons(table) {
263263
data_edit = data.replace('.', ''); // Fix specifico per i numeri italiani
264264
data_edit = data_edit.replace(',', '.');
265265

266-
return data_edit.match(/^[0-9\.]+$/) ? data_edit : data;
266+
return data_edit;
267267
}
268268
}
269269
}

0 commit comments

Comments
 (0)