Skip to content

Commit

Permalink
fix(rup): huds en turno suspendido
Browse files Browse the repository at this point in the history
  • Loading branch information
liquid36 committed Jan 6, 2022
1 parent 1c9de8a commit d856bc9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ export class PuntoInicioComponent implements OnInit, OnDestroy {
(turno.paciente.carpetaEfectores as any) = turno.paciente.carpetaEfectores.filter((ce: any) => ce.organizacion._id === this.auth.organizacion.id);
}

if (turno.estado === 'asignado' || agenda.tipoPrestaciones[0].noNominalizada) {
if (turno.estado === 'asignado' || turno.estado === 'suspendido' || agenda.tipoPrestaciones[0].noNominalizada) {

turno.botonera = {
huds: turno.paciente?.id && this.tieneAccesoHUDS,
Expand Down

0 comments on commit d856bc9

Please sign in to comment.