From f0a48f5e8b9a6870cf640aa828aca3c9cdc5c0d7 Mon Sep 17 00:00:00 2001 From: yoelmarain Date: Sun, 6 Oct 2024 22:43:28 -0300 Subject: [PATCH] Refactor styles from EstadoCuentaAlumno.ts --- .../EstadoCuenta/EstadoCuenta.tsx | 135 +++++++----------- .../InformarPago/InformarPago.tsx | 23 ++- .../Pages-Alumnos/InformarPago/TablaPagos.tsx | 4 +- 3 files changed, 61 insertions(+), 101 deletions(-) diff --git a/FrontAdmin/src/components/Pages-Alumnos/EstadoCuenta/EstadoCuenta.tsx b/FrontAdmin/src/components/Pages-Alumnos/EstadoCuenta/EstadoCuenta.tsx index 08c36b6..abce076 100644 --- a/FrontAdmin/src/components/Pages-Alumnos/EstadoCuenta/EstadoCuenta.tsx +++ b/FrontAdmin/src/components/Pages-Alumnos/EstadoCuenta/EstadoCuenta.tsx @@ -232,81 +232,50 @@ function InformarPago() { return ( - + - - - Apellido y nombre - - - {alumnoInfo.full_name} - - - Número DNI: - - - {alumnoInfo.dni} - - - Legajo: - - - {alumnoInfo.legajo} - - - Email: - - - {alumnoInfo.email} - - - Celular - - - {alumnoInfo.telefono} - - -
- - - Último Compromiso de Pago: - - - {compromisoFirmado && compromisoFirmado.results[0]?.firmo_ultimo_compromiso ? 'Firmado' : 'Pendiente de firma'} - - - Estado: - - - {alumno?.estado_financiero} - - - Ultimo Periodo Cursado - - - {alumnoInfo.ultimo_cursado} - + + + Estado de cuenta al {fechaDeHoy} + - - - - Estado de cuenta - - - - - Estado de cuenta al {fechaDeHoy} - + + + + Último Compromiso de Pago: + + + {compromisoFirmado && compromisoFirmado.results[0]?.firmo_ultimo_compromiso ? 'Firmado' : 'Pendiente de firma'} + + + + + Estado: + + + {alumno?.estado_financiero} + + + + + Ultimo Periodo Cursado + + + {alumnoInfo.ultimo_cursado} + + + + {cuotas.length > 0 ? ( - +
- @@ -314,6 +283,7 @@ function InformarPago() { + @@ -330,7 +300,6 @@ function InformarPago() { : - } @@ -340,21 +309,20 @@ function InformarPago() { ) : ( No existen cuotas para el alumno. )} - - - + {detail != null ? - -
+ Numero Fecha Primer Vto.Valor Pagado Valor Informado Valor AdeudadoDetalle
+ + + Detalle cuota +
- Detalle pago - - - - - - + + + + + + @@ -384,11 +352,10 @@ function InformarPago() {
CuotaValor Original CuotaMoraCuota con MoraFecha de InformeValor PagadoCuotaValor Original CuotaMoraCuota con MoraFecha de InformeValor Pagado
+
: } - -
); diff --git a/FrontAdmin/src/components/Pages-Alumnos/InformarPago/InformarPago.tsx b/FrontAdmin/src/components/Pages-Alumnos/InformarPago/InformarPago.tsx index 4271278..77d7071 100644 --- a/FrontAdmin/src/components/Pages-Alumnos/InformarPago/InformarPago.tsx +++ b/FrontAdmin/src/components/Pages-Alumnos/InformarPago/InformarPago.tsx @@ -1,6 +1,6 @@ import React from "react"; import TablaCuotas from "./TablaPagos"; -import { Flex, Button, Text, Stack, Card, CardBody } from "@chakra-ui/react"; +import { Flex, Button, Text, Stack, Card, CardBody, Box } from "@chakra-ui/react"; import { useDisclosure } from "@chakra-ui/react"; import {useState, useEffect} from 'react'; import {AttachmentIcon} from '@chakra-ui/icons'; @@ -8,7 +8,7 @@ import DrawerInformar from "./DrawerPago"; import {obtenerFechaDeHoy} from '../../../utils/general'; interface Cuota { - id: number; + id_cuota: number; numero: string; monto1erVencimiento: number; monto2doVencimiento: number; @@ -43,25 +43,18 @@ function InformarPago() { - - - - Estado de cuenta al: - {fechaDeHoy} - - - + + Selecciona las cuotas que deseas informar +