fix render in column total_presupuesto for autonumeric format

This commit is contained in:
amazuecos
2025-02-09 12:31:38 +01:00
parent eb722ebbca
commit c3791ac343

View File

@ -221,12 +221,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);
});
}
});