diff --git a/lib/models/ban.cjs b/lib/models/ban.cjs index cf656a0d..64b66448 100644 --- a/lib/models/ban.cjs +++ b/lib/models/ban.cjs @@ -5,13 +5,13 @@ const defaultStatsOfDistrictsDataResult = { nbAdressesCertifiees: 0, nbCommunesCouvertes: 0, populationCouverte: 0, - nbCommunesAvecBanId: 0, - nbAdressesAvecBanId: 0, + nbCommunesIdSocle: 0, + nbAdressesIdSocle: 0, } const defaultStatsOfAddressesDataResult = { - nbNumeroWithBanId: 0, - countDistinctCodeCommune: 0, + nbAdressesAvecBanId: 0, + nbCommunesAvecBanId: 0, } async function getStatsOfDistricts(cog = []) { @@ -70,15 +70,15 @@ async function getStatsOfAddresses(cog) { { $group: { _id: null, - nbNumeroWithBanId: {$sum: 1}, - distinctCodeCommune: {$addToSet: '$codeCommune'} + nbAdressesAvecBanId: {$sum: 1}, + nbCommunesAvecBanId: {$addToSet: '$codeCommune'} } }, { $project: { _id: 0, - nbNumeroWithBanId: '$nbNumeroWithBanId', - countDistinctCodeCommune: {$size: '$distinctCodeCommune'} + nbAdressesAvecBanId: '$nbAdressesAvecBanId', + nbCommunesAvecBanId: {$size: '$nbCommunesAvecBanId'} } }, ]