Skip to content
Snippets Groups Projects
Commit b61446e0 authored by Guiusepe's avatar Guiusepe
Browse files

switched 'total' result to integer

parent 20d265cf
No related branches found
No related tags found
3 merge requests!309Merge new updates into master,!279Homologa,!278Enrollment situation tmp
Pipeline #28150 failed
...@@ -777,6 +777,7 @@ universityEnrollmentApp.get('/enrollment_situation', rqf.parse(), (req, res, nex ...@@ -777,6 +777,7 @@ universityEnrollmentApp.get('/enrollment_situation', rqf.parse(), (req, res, nex
res.ingressante = Number(res.ingressante); res.ingressante = Number(res.ingressante);
res.cursando = Number(res.cursando); res.cursando = Number(res.cursando);
res.concluintes = Number(res.concluintes); res.concluintes = Number(res.concluintes);
res.total = Number(res.total);
} }
next(); next();
}, id2str.transform(), response('enrollmentSituation')); }, id2str.transform(), response('enrollmentSituation'));
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment