Skip to content

Commit

Permalink
Se agrega cambio por observacion en reglas de solicitudes
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio-Ramirez committed Dec 20, 2024
1 parent db83c29 commit 36595f1
Showing 1 changed file with 27 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,33 @@ export class PrestacionEjecucionComponent implements OnInit, OnDestroy {

agregarSolicitud(concepto, helpSolicitudes: PlexHelpComponent) {
helpSolicitudes.toggle();
this.ejecucionService.agregarConcepto(concepto, true);
if (this.ejecucionService.paciente && concepto) {
const params: any = {
estados: [
'auditoria',
'pendiente',
'ejecucion'
],
idPaciente: this.ejecucionService.paciente.id,
prestacionDestino: concepto.conceptId
};
this.servicioPrestacion.getSolicitudes(params).subscribe(resultado => {
if (resultado.length) {
const existeSolicitud = resultado.find(registro => registro.inicio === 'top');
if (existeSolicitud) {
this.plex.confirm(`El paciente ya tiene una solicitud en curso para ${concepto.term}. ¿Desea continuar?`, 'Paciente con solicitud en curso').then(confirmar => {
if (confirmar) {
this.ejecucionService.agregarConcepto(concepto, true);
}
});
}
} else {
this.ejecucionService.agregarConcepto(concepto, true);
}
});
} else {
this.ejecucionService.agregarConcepto(concepto, true);
}
}

public onCloseTab(index) {
Expand Down

0 comments on commit 36595f1

Please sign in to comment.