Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(mpi): quita versión anterior del controller de mpi #1404

Merged
merged 2 commits into from
May 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions core-v2/mpi/paciente/paciente.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import * as Barrio from '../../../core/tm/schemas/barrio';
import * as configPrivate from '../../../config.private';
import * as config from '../../../config';
import { IContacto } from '../../../shared/Contacto.interface';
import { ParentescoCtr } from '../parentesco/parentesco.routes';


/**
Expand Down Expand Up @@ -359,3 +360,51 @@ export async function updateContacto(contactos, paciente, req) {
await PacienteCtr.update(paciente.id, paciente, req as any);
}
}

export async function agregarHijo(progenitor, hijo, req) {
const poseeFamiliar = progenitor.relaciones.find(rel => {
return rel.referencia.toString() === hijo._id.toString();
});
if (!poseeFamiliar) {
// agrego relacion al hijo
const parentescoProgenitor = await ParentescoCtr.findOne({ nombre: '^progenitor' }, {}, req);
let progenitorRelacion = {
relacion: parentescoProgenitor,
referencia: progenitor._id,
nombre: progenitor.nombre,
apellido: progenitor.apellido,
documento: progenitor.documento ? progenitor.documento : null,
numeroIdentificacion: progenitor.numeroIdentificacion ? progenitor.numeroIdentificacion : null,
fotoId: progenitor.fotoId ? progenitor.fotoId : null,
fechaFallecimiento: progenitor.fechaFallecimiento ? progenitor.fechaFallecimiento : null
};
if (hijo.relaciones && hijo.relaciones.length) {
hijo.relaciones.push(progenitorRelacion);
} else {
hijo.relaciones = [progenitorRelacion];
}
await PacienteCtr.update(hijo.id, hijo, req);
// agrego relacion al padre
const parentescoHijo = await ParentescoCtr.findOne({ nombre: '^hijo' }, {}, req);
let familiarRelacion = {
relacion: parentescoHijo,
referencia: hijo._id,
nombre: hijo.nombre,
apellido: hijo.apellido,
documento: hijo.documento,
numeroIdentificacion: hijo.numeroIdentificacion ? hijo.numeroIdentificacion : null,
fotoId: hijo.fotoId ? hijo.fotoId : null,
fechaFallecimiento: hijo.fechaFallecimiento ? hijo.fechaFallecimiento : null
};
if (progenitor.relaciones && progenitor.relaciones.length) {
progenitor.relaciones.push(familiarRelacion);
} else {
progenitor.relaciones = [familiarRelacion];
}
const pacienteUpdated = await PacienteCtr.update(progenitor.id, progenitor, req);
return pacienteUpdated;
} else {
return null;
}
}

Loading