Skip to content
Snippets Groups Projects
Commit 67f46fd6 authored by jpko19's avatar jpko19
Browse files

Update names in pee_por_categoria

parent e1790b44
No related branches found
No related tags found
4 merge requests!329Update enrollment - new filters,!326Dev,!325Update names in pee_por_categoria,!309Merge new updates into master
/*
Copyright (C) 2016 Centro de Computacao Cientifica e Software Livre
Departamento de Informatica - Universidade Federal do Parana - C3SL/UFPR
This file is part of simcaq-node.
simcaq-node is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
simcaq-node is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with simcaq-node. If not, see <https://www.gnu.org/licenses/>.
*/
module.exports = function pee(id) {
switch(id){
case true:
return 'Sim';
case false:
return 'Não';
}
};
\ No newline at end of file
...@@ -94,6 +94,7 @@ const enterSituation = require(`${libs}/convert/enterSituation`); ...@@ -94,6 +94,7 @@ const enterSituation = require(`${libs}/convert/enterSituation`);
const enrollmentSituation = require(`${libs}/convert/enrollmentSituation`); const enrollmentSituation = require(`${libs}/convert/enrollmentSituation`);
const diffLocation = require(`${libs}/convert/diffLocation`); const diffLocation = require(`${libs}/convert/diffLocation`);
const peePorCategoria = require(`${libs}/convert/peePorCategoria`); const peePorCategoria = require(`${libs}/convert/peePorCategoria`);
const pee = require(`${libs}/convert/booleanVariable`);
const ids = { const ids = {
gender_id: gender, gender_id: gender,
...@@ -179,7 +180,8 @@ const ids = { ...@@ -179,7 +180,8 @@ const ids = {
enter_situation: enterSituation, enter_situation: enterSituation,
enrollment_situation: enrollmentSituation, enrollment_situation: enrollmentSituation,
diff_location_id: diffLocation, diff_location_id: diffLocation,
pee_por_categoria: peePorCategoria pee_por_categoria: peePorCategoria,
pee_id: pee
}; };
function transform(removeId=false) { function transform(removeId=false) {
...@@ -292,5 +294,6 @@ module.exports = { ...@@ -292,5 +294,6 @@ module.exports = {
enterSituation, enterSituation,
enrollmentSituation, enrollmentSituation,
diffLocation, diffLocation,
peePorCategoria peePorCategoria,
pee
}; };
...@@ -242,9 +242,8 @@ enrollmentApp.get('/special_class', (req, res, next) => { ...@@ -242,9 +242,8 @@ enrollmentApp.get('/special_class', (req, res, next) => {
enrollmentApp.get('/pee', (req, res, next) => { enrollmentApp.get('/pee', (req, res, next) => {
req.result = [ req.result = [
{id: null, name: 'Não Declarado'}, {id: true, name: id2str.booleanVariable(true)},
{id: false, name: 'Não'}, {id: false, name: id2str.booleanVariable(false)}
{id: true, name: 'Sim'}
]; ];
next(); next();
}, response('pee')) }, response('pee'))
...@@ -762,7 +761,7 @@ rqf.addField({ ...@@ -762,7 +761,7 @@ rqf.addField({
name: 'pee', name: 'pee',
table: 'matricula', table: 'matricula',
tableField: 'possui_necessidade_especial', tableField: 'possui_necessidade_especial',
resultField: 'pee', resultField: 'pee_id',
where: { where: {
relation: '=', relation: '=',
type: 'boolean', type: 'boolean',
...@@ -784,19 +783,19 @@ enrollmentApp.get('/', rqf.parse(), (req, res, next) => { ...@@ -784,19 +783,19 @@ enrollmentApp.get('/', rqf.parse(), (req, res, next) => {
if('pee_por_categoria' in req.dims){ if('pee_por_categoria' in req.dims){
delete req.dims.pee_por_categoria delete req.dims.pee_por_categoria
req.pee_por_categoria = true req.pee_por_categoria = true
req.sql.field('SUM(CASE WHEN cegueira = true THEN 1 ELSE 0 END)', 'total_cegueira') req.sql.field('SUM(CASE WHEN cegueira = true THEN 1 ELSE 0 END)', 'Cegueira')
.field('SUM(CASE WHEN baixa_visao = true THEN 1 ELSE 0 END)', 'total_baixa_visao') .field('SUM(CASE WHEN baixa_visao = true THEN 1 ELSE 0 END)', 'Baixa visão')
.field('SUM(CASE WHEN surdez = true THEN 1 ELSE 0 END)', 'total_surdez') .field('SUM(CASE WHEN surdez = true THEN 1 ELSE 0 END)', 'Surdez')
.field('SUM(CASE WHEN deficiencia_auditiva = true THEN 1 ELSE 0 END)', 'total_deficiencia_auditiva') .field('SUM(CASE WHEN deficiencia_auditiva = true THEN 1 ELSE 0 END)', 'Deficiência auditiva')
.field('SUM(CASE WHEN surdo_cegueira = true THEN 1 ELSE 0 END)', 'total_surdo_cegueira') .field('SUM(CASE WHEN surdo_cegueira = true THEN 1 ELSE 0 END)', 'Surdocegueira')
.field('SUM(CASE WHEN deficiencia_fisica = true THEN 1 ELSE 0 END)', 'total_deficiencia_fisica') .field('SUM(CASE WHEN deficiencia_fisica = true THEN 1 ELSE 0 END)', 'Deficiênciasica')
.field('SUM(CASE WHEN deficiencia_intelectual = true THEN 1 ELSE 0 END)', 'total_deficiencia_intelectual') .field('SUM(CASE WHEN deficiencia_intelectual = true THEN 1 ELSE 0 END)', 'Deficiência intelectual')
.field('SUM(CASE WHEN deficiencia_multiplas = true THEN 1 ELSE 0 END)', 'total_deficiencia_multiplas') .field('SUM(CASE WHEN deficiencia_multiplas = true THEN 1 ELSE 0 END)', 'Deficiências múltiplas')
.field('SUM(CASE WHEN autismo = true THEN 1 ELSE 0 END)', 'total_autismo') .field('SUM(CASE WHEN autismo = true THEN 1 ELSE 0 END)', 'Autismo')
.field('SUM(CASE WHEN sindrome_asperger = true THEN 1 ELSE 0 END)', 'total_sindrome_asperger') .field('SUM(CASE WHEN sindrome_asperger = true THEN 1 ELSE 0 END)', 'ndrome de Asperger')
.field('SUM(CASE WHEN sindrome_rett = true THEN 1 ELSE 0 END)', 'total_sindrome_rett') .field('SUM(CASE WHEN sindrome_rett = true THEN 1 ELSE 0 END)', 'ndrome de Rett')
.field('SUM(CASE WHEN transtorno_desintegrativo_da_infancia = true THEN 1 ELSE 0 END)', 'total_transtorno_desintegrativo_da_infancia') .field('SUM(CASE WHEN transtorno_desintegrativo_da_infancia = true THEN 1 ELSE 0 END)', 'Transtorno desintegrativo da infância')
.field('SUM(CASE WHEN superdotado = true THEN 1 ELSE 0 END)', 'total_superdotado') .field('SUM(CASE WHEN superdotado = true THEN 1 ELSE 0 END)', 'Superdotado')
.field('matricula.ano_censo', 'year') .field('matricula.ano_censo', 'year')
.from('matricula') .from('matricula')
.group('matricula.ano_censo') .group('matricula.ano_censo')
...@@ -821,8 +820,9 @@ enrollmentApp.get('/', rqf.parse(), (req, res, next) => { ...@@ -821,8 +820,9 @@ enrollmentApp.get('/', rqf.parse(), (req, res, next) => {
for (var i in result_parcial){ for (var i in result_parcial){
if(i !== 'year'){ if(i !== 'year'){
let obj = {}; let obj = {};
obj.pee_por_categoria_name = i;
obj.total = result_parcial[i]; obj.total = result_parcial[i];
i = i.replace(/"/g, '');
obj.pee_por_categoria_name = i;
obj.year = result_parcial.year; obj.year = result_parcial.year;
result_total.push(obj); result_total.push(obj);
} }
......
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