Skip to content
Snippets Groups Projects
Commit 9b4086eb authored by Leon A. Okida Gonçalves's avatar Leon A. Okida Gonçalves
Browse files

Merge branch 'hotfix-year' into 'homologa'

Hotfix year

See merge request !346
parents 5e6e54f6 9455651c
No related branches found
No related tags found
4 merge requests!377prd_version of simcaq,!368update filter in v2 school,!347Hotfix min_year and max_year in school route,!346Hotfix year
...@@ -261,6 +261,26 @@ rqf.addField({ ...@@ -261,6 +261,26 @@ rqf.addField({
field: 'ano_censo', field: 'ano_censo',
table: 'escola' table: 'escola'
} }
}).addValue({
name: 'min_year',
table: 'escola',
tableField: 'ano_censo',
resultField: 'year',
where: {
relation: '>=',
type: 'integer',
field: 'ano_censo'
}
}).addValue({
name: 'max_year',
table: 'escola',
tableField: 'ano_censo',
resultField: 'year',
where: {
relation: '<=',
type: 'integer',
field: 'ano_censo'
}
}).addField({ }).addField({
name: 'search', name: 'search',
field: true, field: true,
......
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