From 8105388563ed0bc851f981cb329c08cbaad639f0 Mon Sep 17 00:00:00 2001 From: amazuecos Date: Sun, 9 Feb 2025 12:34:10 +0100 Subject: [PATCH] fix column total_presupuesto for autonumeric format --- .../vuexy/form/presupuestos/cliente/viewPresupuestoList.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoList.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoList.php index 0b24a64e..21629292 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoList.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoList.php @@ -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); - }); - } });