Skip to content

Commit

Permalink
TOP - Corregir mensaje de solicitud en curso que no corresponde
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio-Ramirez committed Dec 11, 2024
1 parent c3c2ac1 commit 7aa3686
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
23 changes: 12 additions & 11 deletions src/app/modules/rup/components/ejecucion/buscador.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ export class BuscadorComponent implements OnInit, OnChanges {

if (this.semanticTags) {
this.results[busquedaActual]['todos'] = [];
this.filtroActual =this.semanticTags[0] as any;
this.filtroActual = this.semanticTags[0] as any;
}
}
}
Expand Down Expand Up @@ -430,18 +430,19 @@ export class BuscadorComponent implements OnInit, OnChanges {
};
this.servicioPrestacion.getSolicitudes(params).subscribe(resultado => {
if (resultado.length) {
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.agregarConcepto(concepto);
}
});
this.plex.toast('danger', `El paciente ya tiene una solicitud en curso para ${concepto.term}`);
} else {
this.agregarConcepto(concepto);
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.agregarConcepto(concepto);
}
});
} else {
this.agregarConcepto(concepto);
}

}
});
} else {
this.agregarConcepto(concepto);
}
}

Expand Down
3 changes: 2 additions & 1 deletion src/app/modules/rup/components/ejecucion/buscador.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,8 @@ <h4 class="pt-3 pb-3 text-center">No se han encontrado resultados.</h4>
</div>
<div class="col-6 p-0 m-0">
<div class="d-flex justify-content-end">
<plex-badge size="sm" [type]="item | semanticClass: filtroActual === 'planes' || item.esSolicitud">
<plex-badge size="sm"
[type]="item | semanticClass: filtroActual === 'planes' || item.esSolicitud">
{{ (item.esSolicitud || filtroActual === 'planes') ? 'solicitud' :
item.semanticTag }}
</plex-badge>
Expand Down

0 comments on commit 7aa3686

Please sign in to comment.