Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
th-app-java
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Oscar Enrique Gonzalez Escurra
th-app-java
Commits
c1424969
Commit
c1424969
authored
Nov 24, 2021
by
Cesar Giulano Gonzalez Maqueda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cambio de filtro de seleccion de experiencia
parent
620489c0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
16 deletions
+26
-16
curriculumsearch/src/main/java/com/roshka/controller/PostulanteRRHHController.java
+19
-10
curriculumsearch/src/main/java/com/roshka/repositorio/PostulanteRepository.java
+2
-2
curriculumsearch/src/main/webapp/jsp/postulantes.jsp
+5
-4
No files found.
curriculumsearch/src/main/java/com/roshka/controller/PostulanteRRHHController.java
View file @
c1424969
...
...
@@ -4,12 +4,7 @@ package com.roshka.controller;
import
java.io.IOException
;
import
java.text.DateFormat
;
import
java.text.SimpleDateFormat
;
import
java.util.ArrayList
;
import
java.util.Date
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.*
;
import
com.fasterxml.jackson.core.JsonProcessingException
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
...
...
@@ -93,7 +88,7 @@ public class PostulanteRRHHController {
@RequestParam
(
required
=
false
)
Long
lvlEng
,
@RequestParam
(
required
=
false
)
Long
lvlTec
,
@RequestParam
(
required
=
false
)
Long
instId
,
@RequestParam
(
required
=
false
)
Lo
ng
expInMonths
,
@RequestParam
(
required
=
false
)
Stri
ng
expInMonths
,
@RequestParam
(
required
=
false
)
Long
cargoId
,
@RequestParam
(
required
=
false
)
Long
convId
,
@RequestParam
(
defaultValue
=
"0"
)
Integer
nroPagina
...
...
@@ -114,11 +109,18 @@ public class PostulanteRRHHController {
// TODO Auto-generated catch block
er
.
printStackTrace
();
}
long
infRange
=
0L
;
long
supRange
=
1200L
;
if
(
expInMonths
!=
null
&&
!
expInMonths
.
trim
().
isEmpty
()){
String
[]
rango
=
expInMonths
.
split
(
"-"
);
infRange
=
Long
.
parseLong
(
rango
[
0
]);
supRange
=
Long
.
parseLong
(
rango
[
1
]);
}
Page
<
Postulante
>
postulantesPag
=
post
.
postulantesMultiFiltro
(
nombre
==
null
||
nombre
.
trim
().
isEmpty
()
?
new
TypedParameterValue
(
StringType
.
INSTANCE
,
null
)
:
new
TypedParameterValue
(
StringType
.
INSTANCE
,
"%"
+
nombre
+
"%"
),
lvlEng
,
lvlTec
,
tecId
,
instId
,
cargoId
,
page
,
estado
,
convId
,
expInMonths
);
lvlEng
,
lvlTec
,
tecId
,
instId
,
cargoId
,
page
,
estado
,
convId
,
infRange
,
supRange
);
model
.
addAttribute
(
"numeroOcurrencias"
,
postulantesPag
.
getTotalElements
());
List
<
Postulante
>
postulantes
=
postulantesPag
.
getContent
();
List
<
PostulanteListaDTO
>
postulantesDTO
=
new
ArrayList
<>();
...
...
@@ -148,17 +150,24 @@ public class PostulanteRRHHController {
@RequestParam
(
required
=
false
)
Long
lvlEng
,
@RequestParam
(
required
=
false
)
Long
lvlTec
,
@RequestParam
(
required
=
false
)
Long
instId
,
@RequestParam
(
required
=
false
)
Lo
ng
expInMonths
,
@RequestParam
(
required
=
false
)
Stri
ng
expInMonths
,
@RequestParam
(
required
=
false
)
Long
cargoId
,
@RequestParam
(
required
=
false
)
Long
convId
,
@RequestParam
(
defaultValue
=
"0"
)
Integer
nroPagina
)
throws
IOException
{
Pageable
page
=
PageRequest
.
of
(
0
,
Integer
.
MAX_VALUE
,
Sort
.
by
(
"id"
));
long
infRange
=
0L
;
long
supRange
=
1200L
;
if
(
expInMonths
!=
null
&&
!
expInMonths
.
trim
().
isEmpty
()){
String
[]
rango
=
expInMonths
.
split
(
"-"
);
infRange
=
Long
.
parseLong
(
rango
[
0
]);
supRange
=
Long
.
parseLong
(
rango
[
1
]);
}
Page
<
Postulante
>
postulantesPag
=
post
.
postulantesMultiFiltro
(
nombre
==
null
||
nombre
.
trim
().
isEmpty
()
?
new
TypedParameterValue
(
StringType
.
INSTANCE
,
null
)
:
new
TypedParameterValue
(
StringType
.
INSTANCE
,
"%"
+
nombre
+
"%"
),
lvlEng
,
lvlTec
,
tecId
,
instId
,
cargoId
,
page
,
estado
,
convId
,
expInMonths
);
lvlEng
,
lvlTec
,
tecId
,
instId
,
cargoId
,
page
,
estado
,
convId
,
infRange
,
supRange
);
List
<
Postulante
>
postulantes
=
postulantesPag
.
getContent
();
List
<
PostulanteListaDTO
>
postulantesDTO
=
new
ArrayList
<>();
...
...
curriculumsearch/src/main/java/com/roshka/repositorio/PostulanteRepository.java
View file @
c1424969
...
...
@@ -61,10 +61,10 @@ public interface PostulanteRepository extends JpaRepository<Postulante,Long> {
" and (conv.cargoId = ?6 or ?6 is null ) "
+
"and (p.estadoPostulante = ?7 or ?7 is null) "
+
" and (conv.id=?8 or ?8 is null ) "
+
"and (p.mesesDeExperiencia >= ?9
or ?9 is null
) "
)
"and (p.mesesDeExperiencia >= ?9
and p.mesesDeExperiencia <= ?10
) "
)
public
Page
<
Postulante
>
postulantesMultiFiltro
(
TypedParameterValue
nombre
,
Long
nivelInges
,
Long
nivel
,
Long
tecnoId
,
Long
instId
,
Long
cargoId
,
Pageable
pageable
,
EstadoPostulante
estado
,
Long
convo
,
Long
expInMonths
);
Long
convo
,
Long
infRangeExp
,
Long
supRangeExp
);
@Transactional
@Modifying
...
...
curriculumsearch/src/main/webapp/jsp/postulantes.jsp
View file @
c1424969
...
...
@@ -78,10 +78,11 @@
<td>
<select class="form-select form-select-sm " name="expInMonths" id="expInMonths">
<option value="">Seleccione</option>
<option value="6">Mayor a 6 meses</option>
<option value="12">Mayor a 1 año</option>
<option value="36">Mayor a 3 años</option>
<option value="60">Mayor a 5 años</option>
<option value="0-6">Menor a 6 meses</option>
<option value="0-12">Menor a 1 año</option>
<option value="0-36">Menor a 3 años</option>
<option value="0-60">Menor a 5 años</option>
<option value="60-1200">Mayor a 5 años</option>
</select>
</td>
<td>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment