Skip to content
Snippets Groups Projects
Commit b67af1d6 authored by Fernando Erd's avatar Fernando Erd :ok_hand:
Browse files

Route class

parent 0c0b9244
No related branches found
No related tags found
3 merge requests!116Release v1.0.0,!44Feature multiple where,!37Route_Class
Pipeline #
......@@ -71,6 +71,81 @@ rqfCount.addField({
foreign: 'regiao_id',
foreignTable: 'turma'
}
}).addValue({
name:'dependency_adm',
table: 'dependencia_adm',
tableField: 'id',
resultField: 'dependency_adm_name',
where: {
relation: '=',
type: 'integer',
field: 'id'
},
join: {
primary: 'id',
foreign: 'dependencia_adm_id',
foreignTable: 'turma'
}
}).addValue({
name:'school_level',
table: 'etapas_mod_ensino_segmento ',
tableField: 'id',
resultField: 'school_level_name',
where: {
relation: '=',
type: 'integer',
field: 'id'
},
join: {
primary: 'id',
foreign: 'etapas_mod_ensino_segmento_id',
foreignTable: 'turma'
}
}).addValue({
name:'dependencia_priv',
table: 'escola',
tableField: 'dependencia_adm_priv',
resultField: 'dependencia_adm_priv',
where: {
relation: '=',
type: 'integer',
field: 'id'
},
join: {
primary: 'id',
foreign: 'escola_id',
foreignTable: 'turma'
}
}).addValue({
name:'period',
table: 'turma_turno',
tableField: 'id',
resultField: 'period_name',
where: {
relation: '=',
type: 'integer',
field: 'id'
},
join: {
primary: 'id',
foreign: 'turno',
foreignTable: 'turma'
}
}).addValue({
name: 'school',
table: 'escola',
tableField: 'nome_escola',
resultField: 'school_name',
where: {
relation: '=',
type: 'integer',
field: 'id'
},
join: {
primary: ['id', 'ano_censo'],
foreign: ['escola_id', 'ano_censo'],
foreignTable: 'turma'
}
});
......
  • Author Guest

    @vsbc14 3 observações

    1. Não tenho certeza se o filtro Dependencia_adm_priv está certo. Caso possa conferir para mim.
    2. A contagem de turmas tem um filtro chamado Tempo Integral, ao olhar o dicionário temos que é uma variável transformada e que ainda não temos essa variável transformada no nosso banco, nem o arquivo de como ela deve ser.
    3. Qual é o padrão para o git não ficar reclamando do meu código?
    Edited by Fernando Erd
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