se modifico endpoint de cargar

This commit is contained in:
2026-02-04 13:21:47 -06:00
parent 2c91c9cb34
commit 4f0ef219ec
+11 -3
View File
@@ -1230,9 +1230,17 @@ export class ExcelService {
}
}
async buscaAct() {
return await this.servActivosRepo.find({where:{AT:true, Correo:true, Prestamos:true, Red:true}})
}
async buscaAct() {
return await this.servActivosRepo.find({
where: [
{ AT: true },
{ Correo: true },
{ Prestamos: true },
{ Red: true },
],
});
}