Skip to content

Commit

Permalink
fix(script VAC-9): reemplaza save por updateOne (#1329)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroce authored Apr 6, 2021
1 parent 40e9315 commit 0fd1642
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions scripts/VAC-9.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ async function ActualizarInscripciones() {
const prestaciones: any[] = await Prestacion.find({ 'ejecucion.registros.concepto.conceptId': '840534001', 'paciente.id': inscripcion.paciente.id });
if (prestaciones.length) {
try {
inscripcion.fechaVacunacion = prestaciones[0].ejecucion.fecha;
inscripcion.idPrestacionVacuna = prestaciones[0].id;
await inscripcion.save();
await InscripcionVacuna.updateOne( { _id: inscripcion.id} , { $set: { fechaVacunacion: prestaciones[0].ejecucion.fecha, idPrestacionVacuna: prestaciones[0].id} });
} catch (e) {
return;
}
Expand Down

0 comments on commit 0fd1642

Please sign in to comment.