added new Ep to servicio and periodo
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user