From c0e549a7a17a0ad94870e9db329b551c8bfdd735 Mon Sep 17 00:00:00 2001 From: Pancho Date: Thu, 6 May 2021 11:01:51 -0300 Subject: [PATCH] feat(ficha-epidemio): vacunas --- .../ficha-epidemiologica-crud.component.html | 13 +++++++------ .../ficha-epidemiologica-crud.component.ts | 10 ++++++++-- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/src/app/modules/epidemiologia/components/ficha-epidemiologica-crud/ficha-epidemiologica-crud.component.html b/src/app/modules/epidemiologia/components/ficha-epidemiologica-crud/ficha-epidemiologica-crud.component.html index 8cf7597a9f..71c941ec6b 100644 --- a/src/app/modules/epidemiologia/components/ficha-epidemiologica-crud/ficha-epidemiologica-crud.component.html +++ b/src/app/modules/epidemiologia/components/ficha-epidemiologica-crud/ficha-epidemiologica-crud.component.html @@ -395,7 +395,7 @@ [label]="field.label?field.label:field.key" grow="auto" name="{{ field.key }}" [(ngModel)]="seccion.fields[field.key]" [readonly]="!editFicha" - (change)="clearDependencias($event,'antecedentesEpidemiologicos',['vacunacionestado','fechadosis','nombrevacunacovid'])"> + (change)="getVacunas(); clearDependencias($event,'antecedentesEpidemiologicos',['vacunacionestado','fechadosis','nombrevacunacovid'])"> - - + + ; public paises$: Observable; public organizacionesInternacion$: Observable; + public vacunas$: Observable; public estaInternado = false; constructor( @@ -194,6 +196,7 @@ export class FichaEpidemiologicaCrudComponent implements OnInit, OnChanges { public serviceInstitucion: InstitucionService, public serviceHistory: FormsHistoryService, private paisService: PaisService, + private vacunasService: VacunasService ) { } @@ -325,7 +328,6 @@ export class FichaEpidemiologicaCrudComponent implements OnInit, OnChanges { apellido: this.paciente.apellido, fechaNacimiento: this.paciente.fechaNacimiento, sexo: this.paciente.sexo, - genero: this.paciente.sexo, estado: this.paciente.estado }, zonaSanitaria: this.zonaSanitaria @@ -589,4 +591,8 @@ export class FichaEpidemiologicaCrudComponent implements OnInit, OnChanges { this.residencias$ = this.serviceInstitucion.get({ tipo: 'Residencia' }); } } + + getVacunas() { + this.vacunas$ = this.vacunasService.getNomivacVacunas({}); + } }