Skip to content
Snippets Groups Projects

Merge new updates into master

1 file
+ 11
12
Compare changes
  • Side-by-side
  • Inline
+ 11
12
@@ -71,7 +71,7 @@ rqf.addField({
name: 'dims',
field: true,
where: false
}).addValueToField({
}).addValueToField({ // working
name: 'state',
table: 'estado',
tableField: ['sigla', 'id'],
@@ -90,13 +90,12 @@ rqf.addField({
}, 'filter').addValueToField({
name: 'city',
table: 'municipio',
tableField: 'nome',
resultField: 'city_name',
tableField: ['nome', 'id'],
resultField: ['city_name', 'city_id'],
where: {
relation: '=',
type: 'integer',
field: 'id',
table: 'numero_estudantes_aee'
field: 'id'
},
join: {
primary: 'id',
@@ -130,7 +129,7 @@ rqf.addField({
field: 'id'
},
}, 'filter').addValueToField({
name: 'locale_id',
name: 'locale_id', // working
table: 'numero_estudantes_aee',
tableField: 'localizacao_id',
resultField: 'locale_id',
@@ -140,7 +139,7 @@ rqf.addField({
field: 'localizacao_id'
}
}, 'filter').addValue({
name: 'ethnic_group',
name: 'ethnic_group', // working
table: 'numero_estudantes_aee',
tableField: 'cor_raca_id',
resultField: 'ethnic_group_id',
@@ -150,7 +149,7 @@ rqf.addField({
field: 'cor_raca_id'
}
}).addValue({
name: 'adm_dependency',
name: 'adm_dependency', // working
table: 'numero_estudantes_aee',
tableField: 'dependencia_adm_id',
resultField: 'adm_dependency_id',
@@ -160,7 +159,7 @@ rqf.addField({
field: 'dependencia_adm_id'
}
}).addValue({
name:'age_range_all',
name:'age_range_all', // working
table: 'numero_estudantes_aee',
tableField: 'faixa_etaria_31_03',
resultField: 'age_range_all_id',
@@ -170,7 +169,7 @@ rqf.addField({
field: 'faixa_etaria_31_03'
}
}).addValue({
name: 'gender',
name: 'gender', // working
table: 'numero_estudantes_aee',
tableField: 'sexo',
resultField: 'gender_id',
@@ -180,7 +179,7 @@ rqf.addField({
field: 'sexo'
}
}).addValue({
name: 'activity_days',
name: 'activity_days', // working
table: 'numero_estudantes_aee',
tableField: 'dias_atividade',
resultField: 'activity_days_id',
@@ -190,7 +189,7 @@ rqf.addField({
field: 'dias_atividade'
}
}).addField({
name: 'special_service',
name: 'special_service', // working
table: 'numero_estudantes_aee',
tableField: 'disc_atendimento_especiais',
resultField: 'special_service_id',
Loading