-
Notifications
You must be signed in to change notification settings - Fork 12
Nomencladores
Mariano Botta edited this page Jun 19, 2019
·
1 revision
Listado de prestaciones y código de nomenclador en recupero financiero y sumar.
db.getCollection('conceptoTurneable').aggregate([
{
$lookup:
{
from: 'configuracionPrestacion',
localField: 'conceptId',
foreignField: 'snomed.conceptId',
as: 'config'
}
},
{
$addFields: {
config: { $arrayElemAt: ['$config', 0] }
}
}
, {
$project: {
_id: 0,
conceptId: 1,
fsn: 1,
'recupero_nomenclador': '$config.nomencladorRecuperoFinanciero',
'sumar_id': '$config.nomencladorSUMAR.id',
'sumar_codigo': '$config.nomencladorSUMAR.codigo'
}
}
]).toArray()