added new Ep to servicio and periodo

This commit is contained in:
2026-01-15 14:01:56 -06:00
parent 3b25606056
commit 6589b57393
9 changed files with 55 additions and 51 deletions
+3
View File
@@ -31,6 +31,9 @@ export class Recibo {
@Column({ name: 'fecha_recibo', type: 'date', nullable: false })
fecha_recibo: Date;
@Column({ name: 'fecha_registro', type: 'timestamp', nullable: false })
fecha_registro: Date;
@ManyToOne(() => Alumno, (alum) => alum.id_cuenta, { eager: true })
@JoinColumn({ name: 'id_cuenta' })
alum: Alumno;
-1
View File
@@ -25,7 +25,6 @@ export class ReciboService {
}
async findByDateRange(desde: string, hasta: string) {
// Convertimos strings a objetos Date
const fechaDesde = new Date(desde);
const fechaHasta = new Date(hasta);