From c3791ac343883430c94d6f0f7f867134024454d9 Mon Sep 17 00:00:00 2001 From: amazuecos Date: Sun, 9 Feb 2025 12:31:38 +0100 Subject: [PATCH] fix render in column total_presupuesto for autonumeric format --- .../form/presupuestos/admin/viewPresupuestoAdminList.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/admin/viewPresupuestoAdminList.php b/ci4/app/Views/themes/vuexy/form/presupuestos/admin/viewPresupuestoAdminList.php index 33fbe781..40f409b5 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/admin/viewPresupuestoAdminList.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/admin/viewPresupuestoAdminList.php @@ -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); - }); - } });