From 334593fae1c1e852c4c8f5ea3feeecb402decd29 Mon Sep 17 00:00:00 2001 From: yoelmarain Date: Sat, 12 Oct 2024 14:36:46 -0300 Subject: [PATCH 1/4] Refactor table headers in EstadoCuenta and Listado components --- .../EstadoCuenta/EstadoCuenta.tsx | 2 +- .../Pages-Alumnos/InformarPago/DrawerPago.tsx | 10 ++--- .../Pages-Alumnos/InformarPago/TablaPagos.tsx | 2 +- .../Estadisticas/SubPages/Cuotas/Listado.tsx | 45 +++++++++++++------ .../Estadisticas/SubPages/Cuotas/Tabla.tsx | 10 ++--- 5 files changed, 44 insertions(+), 25 deletions(-) diff --git a/FrontAdmin/src/components/Pages-Alumnos/EstadoCuenta/EstadoCuenta.tsx b/FrontAdmin/src/components/Pages-Alumnos/EstadoCuenta/EstadoCuenta.tsx index 49f217cc..13af2951 100644 --- a/FrontAdmin/src/components/Pages-Alumnos/EstadoCuenta/EstadoCuenta.tsx +++ b/FrontAdmin/src/components/Pages-Alumnos/EstadoCuenta/EstadoCuenta.tsx @@ -296,7 +296,7 @@ function InformarPago() { Numero - Fecha Primer Vto. + Fecha Proximo Vto. Valor Actual Valor Pagado Valor Informado diff --git a/FrontAdmin/src/components/Pages-Alumnos/InformarPago/DrawerPago.tsx b/FrontAdmin/src/components/Pages-Alumnos/InformarPago/DrawerPago.tsx index 8e9ed6d9..fb772c98 100644 --- a/FrontAdmin/src/components/Pages-Alumnos/InformarPago/DrawerPago.tsx +++ b/FrontAdmin/src/components/Pages-Alumnos/InformarPago/DrawerPago.tsx @@ -143,9 +143,9 @@ const DrawerInformar: React.FC = ({ isOpen, onClose, cuotas ))} Total a abonar: - {"$" + new Intl.NumberFormat('es-ES').format(total)} + {"$" + new Intl.NumberFormat('es-ES').format(total)} - + {/* Monto Abonado @@ -154,14 +154,14 @@ const DrawerInformar: React.FC = ({ isOpen, onClose, cuotas - + */} - Comentarios + Comentarios setComentarios(e.target.value)} /> - Al seleccionar Guardar se lo redirigira al google forms para que pueda continuar con el informe del pago + Al seleccionar Guardar se lo redirigira al google forms para que pueda continuar con el informe del pago. Revisar tener desactivado el bloqueo de ventanas emergentes diff --git a/FrontAdmin/src/components/Pages-Alumnos/InformarPago/TablaPagos.tsx b/FrontAdmin/src/components/Pages-Alumnos/InformarPago/TablaPagos.tsx index a1d68c5f..a6edaf19 100644 --- a/FrontAdmin/src/components/Pages-Alumnos/InformarPago/TablaPagos.tsx +++ b/FrontAdmin/src/components/Pages-Alumnos/InformarPago/TablaPagos.tsx @@ -94,7 +94,7 @@ function TablaCuotas({ refresh, setCuotasSeleccionadas, cuotasSeleccionadas }: T Cuota - Fecha Primer VTO. + Fecha Proximo VTO. Valor Actual Valor Pagado Valor Informado diff --git a/FrontAdmin/src/components/Pages/Estadisticas/SubPages/Cuotas/Listado.tsx b/FrontAdmin/src/components/Pages/Estadisticas/SubPages/Cuotas/Listado.tsx index b9fe12e1..5db4ea32 100644 --- a/FrontAdmin/src/components/Pages/Estadisticas/SubPages/Cuotas/Listado.tsx +++ b/FrontAdmin/src/components/Pages/Estadisticas/SubPages/Cuotas/Listado.tsx @@ -16,7 +16,7 @@ export default function Listado() { const [totalabonaron, setTotalAbonaron] = useState(0); const [noAbonaron, setNoAbonaron] = useState([]); const [totalNoAbonaron, setTotalNoAbonaron] = useState(0); - const headers = ['Nombre', 'DNI', 'SituaciĆ³n']; + const headers = ['Nombre', 'DNI', 'Estado financiero']; const [limit1] = useState(10); const [offset1, setOffset1] = useState(0); const [limit2] = useState(10); @@ -48,7 +48,6 @@ export default function Listado() { useEffect(() => { - const fetchNoAbonaron = async (fecha: string) => { const data = await NoAbonaronCuota(fecha, limit1, offset1); if (data.results.length > 0) { @@ -56,7 +55,6 @@ export default function Listado() { setTotalNoAbonaron(data.count); } } - if (fecha === undefined) { return; } @@ -65,7 +63,6 @@ export default function Listado() { }, [limit1, offset1]); useEffect(() => { - const fetchAbonaron = async (fecha: string) => { const data = await AbonaronCuota(fecha); if (data.results.length > 0) { @@ -74,12 +71,10 @@ export default function Listado() { } } - if (fecha === undefined) { return; } fetchAbonaron(fecha); - }, [limit2, offset2]); @@ -89,21 +84,45 @@ export default function Listado() { alignItems={"center"} flex={1}> - - Abonaron - No abonaron + + + Abonaron + + + No abonaron + {abonaron.length > 0 ? - - Total: {totalabonaron} - Periodo: {fecha} + + Total: {totalabonaron} + Periodo: {fecha} - +