Skip to content

Commit

Permalink
hpt fix: alumnos cuota reducida detalle de pagos
Browse files Browse the repository at this point in the history
  • Loading branch information
facundomelgarejo committed Oct 8, 2024
1 parent 5c34505 commit aa7f577
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ function InformarPago() {
cuota.id_cuota === detail ? ( // Verifica cada cuota para mostrar solo las que coinciden
<>
<Td textAlign="center">{cuota.nro_cuota}</Td>
<Td textAlign="center">{'$ ' + new Intl.NumberFormat('es-ES').format(cuota.tipo === "Matrícula" ? (detalleCompromiso?.matricula ?? 0) : (detalleCompromiso?.monto_completo ?? 0) )}</Td>
<Td textAlign="center">{'$ ' + new Intl.NumberFormat('es-ES').format(cuota.tipo === "Matrícula" ? (detalleCompromiso?.matricula ?? 0) : (cuota.cuota_completa ? (detalleCompromiso?.monto_completo) ?? 0 : (detalleCompromiso?.cuota_reducida) ?? 0) )}</Td>
<Td textAlign="center">
{'$ ' + new Intl.NumberFormat('es-ES').format((mostrarMontoConMora(pago.fecha, cuota.cuota_completa) ?? 0) - (cuota.cuota_completa ? (detalleCompromiso?.monto_completo) ?? 0 : (detalleCompromiso?.cuota_reducida) ?? 0) ) }
</Td>
Expand Down

0 comments on commit aa7f577

Please sign in to comment.