Skip to content
Snippets Groups Projects
Commit cc95d2cc authored by Vytor Calixto's avatar Vytor Calixto :space_invader:
Browse files

Add new convert function educationLevelMod

parent 9d12e8bf
No related branches found
No related tags found
2 merge requests!116Release v1.0.0,!44Feature multiple where
module.exports = function educationLevelMod(id) {
switch (id) {
case 1:
return 'Creche';
case 2:
return 'Pré-Escola';
case 3:
return 'Educação Infantil Unificada';
case 4:
return 'Educação Infantil e Ensino Fundamental - Multietapa';
case 5:
return 'Ensino Fundamental - anos iniciais';
case 6:
return 'Ensino Fundamental - anos finais';
case 7:
return 'Ensino Fundamental multietapa e correção de fluxo';
case 8:
return 'Ensino Médio';
case 9:
return 'EJA - Ensino Fundamental';
case 10:
return 'EJA - Ensino Médio';
case 11:
return 'Educação Profissional';
default:
return 'Não classificado';
}
};
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