From 7b7892fca709312f59d574403786b2e684343165 Mon Sep 17 00:00:00 2001 From: Emilio Date: Wed, 26 Nov 2025 10:59:49 -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 --- mariadb/aria_log.00000001 | Bin 5201920 -> 5201920 bytes mariadb/aria_log_control | Bin 52 -> 52 bytes src/equipo/equipo.service.ts | 10 +++++----- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mariadb/aria_log.00000001 b/mariadb/aria_log.00000001 index 93dc80cc7657db987d753876e0d61ba41ad265b7..6332bca5d14a55796026ece4cf47df2c6a8ad82d 100644 GIT binary patch delta 877 zcmYk)w@v~86op}m4N~KP44vNyM?DQR(nK>Yw9-a9E;{I>i*9;w(@P)y4B)}bAVUl@!YE^m zGr=TN_?Tvf+3=imA@Ke@WwALI<_reIPi%GqA8waD20n#dfpvvFfo+9-fft1Xfp3LF zf$BwRbtEvaa4fK)a3XN1a4PVsa3)}0lH);vW`%QsC54c{rb1XCq;Mhdrf?}>U6xi? z0$mE%0;>u)0$U2V0(S~`|B(8r5O{aH9I+?KT9Hzb|A5V-a4)c?@E{OShzdL@JjUS5 KlawCx8cn~W<+RKI delta 178 zcmWl|SyBN2007WQLMds}LR4C0Yn3RWO^W(<8z1iu&e4otGhLyZI6~8#dBdMcVEEsR zfLTFvLc${EEr?pQBxYIMidAdYZAjR(W!sLVlwD~Vd-fg3I&|dNiJVh;1w|!gXU<)? vbmdybjjCHUb$9MHJZNfZd-UYli&q_Qy54>0>H8diWd@^ZGZO!9{f7Pky+u9Y diff --git a/mariadb/aria_log_control b/mariadb/aria_log_control index 2d29802f149386fd43dfada7146dc0077be97538..d9056a2045246b68360ee60f1f8792d55181a7cb 100644 GIT binary patch delta 27 gcmXppnII?j=HAAuj0_BiWBnO`6vIJjAi=-@0DNW!$^ZZW delta 27 gcmXppnII>&tkUNZBLl ({ antiguedad: i.antiguedad, total: i.total, - porcentaje: ((i.total / totalEscrtitorio.total) * 100).toFixed(2), + porcentaje: ((i.total / totalEscrtitorio.total) * 100).toFixed(), })), portatiles: countPortatiles.map((i) => ({ antiguedad: i.antiguedad, total: i.total, - porcentaje: ((i.total / totalPortatiles.total) * 100).toFixed(2), + porcentaje: ((i.total / totalPortatiles.total) * 100).toFixed(), })), altoRendimiento: countAltoRendimiento.map((i) => ({ antiguedad: i.antiguedad, total: i.total, - porcentaje: ((i.total / totalAltoRendimiento.total) * 100).toFixed(2), + porcentaje: ((i.total / totalAltoRendimiento.total) * 100).toFixed(), })), }; } catch (error) { @@ -712,7 +712,7 @@ export class EquipoService { const total = Number(item.total) || 0; const porcentaje = totalImpresion > 0 - ? ((total / totalImpresion) * 100).toFixed(2) + ? ((total / totalImpresion) * 100).toFixed() : '0.00'; return { antiguedad: item.antiguedad, @@ -726,7 +726,7 @@ export class EquipoService { const total = Number(item.total) || 0; const porcentaje = totalDigitalizacion > 0 - ? ((total / totalDigitalizacion) * 100).toFixed(2) + ? ((total / totalDigitalizacion) * 100).toFixed() : '0.00'; return { antiguedad: item.antiguedad,