Skip to content

Commit

Permalink
fix(PER): se corrigen parámetros
Browse files Browse the repository at this point in the history
  • Loading branch information
maring0019 authored and MCele committed Jan 28, 2024
1 parent 8f08aa1 commit e58aa75
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,10 @@ export class ListadoPerinatalComponent implements OnInit {
profesional: this.profesional?.id,
organizacionOrigen: this.organizacion?.id,
paciente: this.paciente || '',
estado: 'AUSENTE'
};
if (this.verAusente) {
params['estado'] = 'AUSENTE';
}
this.documentosService.descargarListadoPerinatal(params, `perinatal ${moment().format('DD-MM-hh-mm-ss')}`).subscribe();
}

Expand Down

0 comments on commit e58aa75

Please sign in to comment.