Skip to content
Snippets Groups Projects

[hotfix] Fixing 'Não é Capital' value in 'Percentual de Estudantes que Recebem...

Merged Fernando Gbur dos Santos requested to merge development into homologa
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
@@ -120,8 +120,6 @@ studentsReceivingAidTaxApp.get('/cap_code', (req, res, next) => {
});
}
}
req.result.push({id: 99, name: id2str.capitalCode(99)});
next();
}, response('cap_code'));
@@ -586,6 +584,9 @@ function whereCondition(req) {
where += `pnad_novo.faixa_rendimento_aux_tx is not null`;
}
if (dims && dims.includes("cap_code")){
where += `pnad_novo.cod_cap <> 99`;
}
return where;
}
Loading