Skip to content
Snippets Groups Projects
Commit ae558240 authored by Fernando Gbur dos Santos's avatar Fernando Gbur dos Santos
Browse files

[ADD] Adding filters and dimensions to the route

parent 1f2376a3
No related branches found
No related tags found
3 merge requests!417[ADD] Indicator "Taxa de Atendimento Educacional" updated on production!,!416[ADD] Route almost ready, some tests needed. Comments added and filters that...,!414[ADD] Route almost ready, some tests needed. Comments added and filters that...
...@@ -24,8 +24,6 @@ const rateSchoolNewApp = express.Router(); ...@@ -24,8 +24,6 @@ const rateSchoolNewApp = express.Router();
const libs = `${process.cwd()}/libs`; const libs = `${process.cwd()}/libs`;
const squel = require('squel');
const query = require(`${libs}/middlewares/query`).query; const query = require(`${libs}/middlewares/query`).query;
const response = require(`${libs}/middlewares/response`); const response = require(`${libs}/middlewares/response`);
...@@ -99,36 +97,6 @@ rqf.addField({ ...@@ -99,36 +97,6 @@ rqf.addField({
foreign: 'cod_uf', foreign: 'cod_uf',
foreignTable: 'pnad_novo' foreignTable: 'pnad_novo'
} }
}).addValue({
name: 'years_of_study',
table: 'pnad_novo',
tableField: 'anos_de_estudo',
resultField: 'years_of_study_id',
where: {
relation: '=',
type: 'integer',
field: 'anos_de_estudo'
}
}).addValue({
name: 'instruction_level',
table: 'pnad_novo',
tableField: 'nivel_de_instrucao',
resultField: 'instruction_level_id',
where: {
relation: '=',
type: 'integer',
field: 'nivel_de_instrucao'
}
}).addValue({
name: 'new_pnad_adm_dependency',
table: 'pnad_novo',
tableField: 'dependencia_adm',
resultField: 'new_pnad_adm_dependency_id',
where: {
relation: '=',
type: 'integer',
field: 'dependencia_adm'
}
}).addValue({ }).addValue({
name: 'attends_school', name: 'attends_school',
table: 'pnad_novo', table: 'pnad_novo',
...@@ -139,46 +107,6 @@ rqf.addField({ ...@@ -139,46 +107,6 @@ rqf.addField({
type: 'integer', type: 'integer',
field: 'frequenta_escola' field: 'frequenta_escola'
} }
}).addValue({
name: 'modality',
table: 'pnad_novo',
tableField: 'modalidade',
resultField: 'modality_id',
where: {
relation: '=',
type: 'integer',
field: 'modalidade'
}
}).addValue({
name: 'attended_modality',
table: 'pnad_novo',
tableField: 'nivel_etapa_modalidade_freq',
resultField: 'attended_modality_id',
where: {
relation: '=',
type: 'integer',
field: 'nivel_etapa_modalidade_freq'
}
}).addValue({
name: 'illiteracy',
table: 'pnad_novo',
tableField: 'analfabetismo',
resultField: 'illiteracy_id',
where: {
relation: '=',
type: 'integer',
field: 'analfabetismo'
}
}).addValue({
name: 'modality_shift',
table: 'pnad_novo',
tableField: 'turno_nivel_etapa',
resultField: 'modality_shift_id',
where: {
relation: '=',
type: 'integer',
field: 'turno_nivel_etapa'
}
}).addValue({ }).addValue({
name: 'bolsa_familia', name: 'bolsa_familia',
table: 'pnad_novo', table: 'pnad_novo',
...@@ -209,16 +137,6 @@ rqf.addField({ ...@@ -209,16 +137,6 @@ rqf.addField({
type: 'integer', type: 'integer',
field: 'faixa_etaria' field: 'faixa_etaria'
} }
}).addValue({
name: 'income_range',
table: 'pnad_novo',
tableField: 'faixa_rendimento_aux',
resultField: 'income_range_id',
where: {
relation: '=',
type: 'integer',
field: 'faixa_rendimento_aux'
}
}).addValue({ }).addValue({
name: 'gender', name: 'gender',
table: 'pnad_novo', table: 'pnad_novo',
...@@ -325,8 +243,6 @@ function matchQueries(attendsSchoolObj, populationObj) { ...@@ -325,8 +243,6 @@ function matchQueries(attendsSchoolObj, populationObj) {
match.push(newObj); match.push(newObj);
} }
console.log(match)
return match; return match;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment