From 9c6f9ef3fdfe4fd2ef0147eb4843cf204d65e6d3 Mon Sep 17 00:00:00 2001 From: Emilio Date: Wed, 26 Nov 2025 11:08:37 -0600 Subject: [PATCH] =?UTF-8?q?Se=20corrigieron=20el=20xlsx,=20validaci=C3=B3n?= =?UTF-8?q?=20de=20contrase=C3=B1as=20y=20cron?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/equipo/equipo.service.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/equipo/equipo.service.ts b/src/equipo/equipo.service.ts index 56143ad..d51a2cb 100644 --- a/src/equipo/equipo.service.ts +++ b/src/equipo/equipo.service.ts @@ -553,17 +553,19 @@ export class EquipoService { escritorios: countEscritorios.map((i) => ({ antiguedad: i.antiguedad, total: i.total, - porcentaje: ((i.total / totalEscrtitorio.total) * 100).toFixed(), + porcentaje: ((i.total / totalEscrtitorio.total) * 100).toFixed(30), })), portatiles: countPortatiles.map((i) => ({ antiguedad: i.antiguedad, total: i.total, - porcentaje: ((i.total / totalPortatiles.total) * 100).toFixed(), + porcentaje: ((i.total / totalPortatiles.total) * 100).toFixed(30), })), altoRendimiento: countAltoRendimiento.map((i) => ({ antiguedad: i.antiguedad, total: i.total, - porcentaje: ((i.total / totalAltoRendimiento.total) * 100).toFixed(), + porcentaje: ((i.total / totalAltoRendimiento.total) * 100).toFixed( + 30, + ), })), }; } catch (error) { @@ -712,7 +714,7 @@ export class EquipoService { const total = Number(item.total) || 0; const porcentaje = totalImpresion > 0 - ? ((total / totalImpresion) * 100).toFixed() + ? ((total / totalImpresion) * 100).toFixed(30) : '0.00'; return { antiguedad: item.antiguedad, @@ -726,7 +728,7 @@ export class EquipoService { const total = Number(item.total) || 0; const porcentaje = totalDigitalizacion > 0 - ? ((total / totalDigitalizacion) * 100).toFixed() + ? ((total / totalDigitalizacion) * 100).toFixed(30) : '0.00'; return { antiguedad: item.antiguedad,