fix column total_presupuesto for autonumeric format

This commit is contained in:
amazuecos
2025-02-09 12:34:10 +01:00
parent c3791ac343
commit 8105388563

View File

@ -320,12 +320,7 @@ theTable.on( 'draw.dt', function () {
});
}
for (let coln of priceCols) {
theTable.column(coln, { page: 'current' }).nodes().each( function (cell, i) {
cell.innerHTML = parseFloat(cell.innerHTML).toFixed(2);
});
}
});