Skip to content

Commit

Permalink
fix(mpi): setea fecha de fallecimiento
Browse files Browse the repository at this point in the history
  • Loading branch information
condorpiedra authored and celeste committed Oct 27, 2020
1 parent d4490cb commit 5b36ce2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/core/mpi/components/paciente.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class PacienteComponent implements OnInit {
numeroIdentificacion: null,
edad: null,
edadReal: null,
fechaFallecimiento: undefined,
fechaFallecimiento: null,
direccion: [this.direccion],
estadoCivil: undefined,
fotoId: null,
Expand Down Expand Up @@ -527,6 +527,7 @@ export class PacienteComponent implements OnInit {
this.backUpDatos['fechaNacimiento'] = this.pacienteModel.fechaNacimiento;
this.backUpDatos['foto'] = this.pacienteModel.foto;
this.backUpDatos['cuil'] = this.pacienteModel.cuil;
this.backUpDatos['fechaFallecimiento'] = this.pacienteModel.fechaFallecimiento;
if (this.pacienteModel.direccion) {
this.backUpDatos['direccion'] = this.pacienteModel.direccion[0].valor;
this.backUpDatos['codigoPostal'] = this.pacienteModel.direccion[0].codigoPostal;
Expand All @@ -546,6 +547,7 @@ export class PacienteComponent implements OnInit {
this.pacienteModel.cuil = this.backUpDatos['cuil'];
this.pacienteModel.estado = this.backUpDatos['estado'];
this.pacienteModel.genero = this.backUpDatos['genero'];
this.pacienteModel.fechaFallecimiento = this.backUpDatos['fechaFallecimiento'];
this.validado = false;
}
this.disableValidar = false;
Expand Down

0 comments on commit 5b36ce2

Please sign in to comment.