Skip to content

Commit

Permalink
feat(plan-indicaciones): ejecutar prescripcion (#2644)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinebucarey authored May 4, 2022
1 parent a4f8f9b commit 180e99c
Showing 1 changed file with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Plex } from '@andes/plex';
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { BehaviorSubject, forkJoin, Observable } from 'rxjs';
import { ignoreElements, map, tap } from 'rxjs/operators';
import { map, tap } from 'rxjs/operators';
import { HeaderPacienteComponent } from 'src/app/components/paciente/headerPaciente.component';
import { PacienteService } from 'src/app/core/mpi/services/paciente.service';
import { RupEjecucionService } from 'src/app/modules/rup/services/ejecucion.service';
Expand Down Expand Up @@ -287,12 +287,11 @@ export class PlanIndicacionesComponent implements OnInit {


onIndicacionesCellClick(indicacion, hora) {
// queda comentado para la primera version
// if (indicacion.estado.tipo !== 'draft') {
// this.indicacionEventoSelected = indicacion;
// this.horaSelected = hora;
// this.indicacionView = null;
// }
if (indicacion.estado.tipo !== 'draft') {
this.indicacionEventoSelected = indicacion;
this.horaSelected = hora;
this.indicacionView = null;
}
}

onEventos(debeActualizar: boolean) {
Expand Down

0 comments on commit 180e99c

Please sign in to comment.