-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
856541f
commit 8f0722a
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import { CamaEstados } from '../modules/rup/internacion/cama-estados.schema'; | ||
import moment = require('moment'); | ||
|
||
async function egresosDuplicados(done) { | ||
const paramInicio = process.argv[3]; | ||
const paramFin = process.argv[4]; | ||
const start = paramInicio ? | ||
moment(new Date(paramInicio).setHours(0, 0, 0, 0)).format('YYYY-MM-DD HH:mm:ss') : | ||
moment(new Date().setHours(0, 0, 0, 0)).subtract(1, 'day').format('YYYY-MM-DD HH:mm:ss'); | ||
const end = paramFin ? | ||
moment(new Date(paramFin).setHours(23, 59, 0, 0)).format('YYYY-MM-DD HH:mm:ss') : | ||
moment(new Date().setHours(23, 59, 0, 0)).subtract(1, 'day').format('YYYY-MM-DD HH:mm:ss'); | ||
|
||
const registroPrevios = CamaEstados.find({ | ||
$and: [{ | ||
ambito: 'internacion', | ||
capa: 'estadistica', | ||
start: { $gte: start }, | ||
end: { $lte: end }, | ||
'estados.extras.idInternacion': { $exists: true }, | ||
'estados.extras.egreso': true | ||
}] | ||
}).cursor({ batchSize: 100 }); | ||
|
||
for await (const registro of registroPrevios) { | ||
const estados = registro.estados; | ||
const estadoSinDuplicar = []; | ||
for (const estado of estados) { | ||
const fecha = moment(estado.fecha).format('YYYY-MM-DD'); | ||
const idInternacion = estado.extras?.idInternacion; | ||
const createdAt = estado.createdAt; | ||
|
||
if (fecha && idInternacion) { | ||
|
||
const existeEstadoIndex = estadoSinDuplicar.findIndex(e => { | ||
const fechaConvertida = moment(e.fecha).format('YYYY-MM-DD'); | ||
return (fechaConvertida === fecha && e.extras.idInternacion.toString() === idInternacion.toString() | ||
&& e.createdAt < createdAt); | ||
}); | ||
|
||
if (existeEstadoIndex >= 0) { | ||
estadoSinDuplicar.splice(existeEstadoIndex, 1); | ||
} | ||
} | ||
estadoSinDuplicar.push(estado); | ||
} | ||
const estadosUnicos = Array.from(estadoSinDuplicar.values()); | ||
|
||
// Actualizar la colección CamaEstados | ||
await CamaEstados.updateOne( | ||
{ _id: registro._id }, | ||
{ $set: { estados: estadosUnicos } } // Reemplaza el array `estados` con `estadosUnicos` | ||
); | ||
} | ||
done(); | ||
} | ||
|
||
export = egresosDuplicados; |