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 Jan 24, 2025
1 parent 5d544bf commit c1be9f5
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,8 @@ export class BuscadorComponent implements OnInit, OnChanges {
} else {
this.agregarConcepto(concepto);
}

} else {
this.agregarConcepto(concepto);
}
});
}
Expand Down
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 c1be9f5

Please sign in to comment.