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
0
Merge Requests
0
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
Amparo Oliver
th-app-java
Commits
ae1728e6
Commit
ae1728e6
authored
Nov 19, 2021
by
Joaquin Elias Baranda Ayala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cambio de fechas de nacimiento Json y detallepostualnte modal
parent
e10fd697
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
18 deletions
+19
-18
curriculumsearch/src/main/java/com/roshka/controller/PostulanteRRHHController.java
+1
-1
curriculumsearch/src/main/resources/json/postulante.json
+7
-7
curriculumsearch/src/main/webapp/jsp/detallepostulante.jsp
+11
-10
No files found.
curriculumsearch/src/main/java/com/roshka/controller/PostulanteRRHHController.java
View file @
ae1728e6
...
...
@@ -137,7 +137,7 @@ public class PostulanteRRHHController {
postulanteVd
.
setComentarioRRHH
(
postulante
.
getComentarioRRHH
());
post
.
setPostulanteEstadoAndComentario
(
postulante
.
getEstadoPostulante
(),
postulante
.
getComentarioRRHH
(),
postulanteId
);
//post.save(postulanteVd);
return
"redirect:/postulante/"
+
postulanteId
;
return
"redirect:/postulante
s
/"
+
postulanteId
;
}
@GetMapping
(
"/postulantes/cvFile/{fileId}"
)
...
...
curriculumsearch/src/main/resources/json/postulante.json
View file @
ae1728e6
...
...
@@ -11,7 +11,7 @@
"nroDocument"
:
5821432
,
"ciudadId"
:
238
,
"telefono"
:
"(950) 417-3681"
,
"fechaNacimiento"
:
"
2021
-08-16"
,
"fechaNacimiento"
:
"
1986
-08-16"
,
"nivelIngles"
:
1
,
"disponibilidad"
:
"C"
,
...
...
@@ -70,7 +70,7 @@
"nroDocument"
:
4213361
,
"ciudadId"
:
96
,
"telefono"
:
"(866) 560-2541"
,
"fechaNacimiento"
:
"
2021
-09-04"
,
"fechaNacimiento"
:
"
1980
-09-04"
,
"nivelIngles"
:
5
,
"disponibilidad"
:
"C"
,
...
...
@@ -117,7 +117,7 @@
"nroDocument"
:
4605787
,
"ciudadId"
:
30
,
"telefono"
:
"(876) 580-2411"
,
"fechaNacimiento"
:
"20
21
-01-28"
,
"fechaNacimiento"
:
"20
00
-01-28"
,
"nivelIngles"
:
3
,
"disponibilidad"
:
"P"
,
...
...
@@ -164,7 +164,7 @@
"nroDocument"
:
4591352
,
"ciudadId"
:
65
,
"telefono"
:
"(931) 499-3122"
,
"fechaNacimiento"
:
"
2021
-06-05"
,
"fechaNacimiento"
:
"
1972
-06-05"
,
"nivelIngles"
:
4
,
"disponibilidad"
:
"C"
,
...
...
@@ -211,7 +211,7 @@
"nroDocument"
:
3969318
,
"ciudadId"
:
143
,
"telefono"
:
"(972) 524-2610"
,
"fechaNacimiento"
:
"
2021
-09-09"
,
"fechaNacimiento"
:
"
1989
-09-09"
,
"nivelIngles"
:
5
,
"disponibilidad"
:
"P"
,
...
...
@@ -258,7 +258,7 @@
"nroDocument"
:
2329745
,
"ciudadId"
:
248
,
"telefono"
:
"(933) 501-3525"
,
"fechaNacimiento"
:
"
2021
-03-24"
,
"fechaNacimiento"
:
"
1994
-03-24"
,
"nivelIngles"
:
1
,
"disponibilidad"
:
"P"
,
...
...
@@ -305,7 +305,7 @@
"nroDocument"
:
4519594
,
"ciudadId"
:
104
,
"telefono"
:
"(817) 492-2493"
,
"fechaNacimiento"
:
"20
21
-07-30"
,
"fechaNacimiento"
:
"20
02
-07-30"
,
"nivelIngles"
:
5
,
"disponibilidad"
:
"P"
,
...
...
curriculumsearch/src/main/webapp/jsp/detallepostulante.jsp
View file @
ae1728e6
...
...
@@ -132,7 +132,7 @@
<hr>
<div class="row">
<div class="col">
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#estadoModalLong">A
ctualizar
</button>
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#estadoModalLong">A
gregar observacion
</button>
</div>
<c:choose>
...
...
@@ -240,8 +240,8 @@
</ul>
</div>
</c:forEach>
</div>
</c:forEach>
...
...
@@ -349,6 +349,7 @@
<div class="modal fade" id="estadoModalLong" tabindex="-1" role="dialog" aria-labelledby="estadorrhhModal" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<form:form class="needs-validation" method="post" modelAttribute="postulante">
<div class="modal-header">
<h5 class="modal-title" id="estadorrhhModal">Estado</h5>
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
...
...
@@ -356,7 +357,6 @@
</button>
</div>
<div class="modal-body">
<form:form class="needs-validation" method="post" modelAttribute="postulante">
<form:label path="estadoPostulante" class="form-label">Estado</form:label>
<div class="inputs">
<form:select class="form-select" path="estadoPostulante" aria-label="Default select example">
...
...
@@ -374,13 +374,14 @@
<div class="inputs">
<form:label path="comentarioRRHH" class="form-label">ComentarioRRHH</form:label>
<form:textarea class="form-control" path="comentarioRRHH" id="comentarioRRHH"></form:textarea>
</div>
<input type="submit" value="Guardar"/>
</div><br>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancelar</button>
<button type="submit" class="btn btn-primary" data-bs-dismiss="modal">Agregar</button>
</div>
</form:form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancelar</button>
</div>
</div>
</div>
</div>
...
...
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