Commit 17a9fadc by Joel Florentin

colocacion de tildes en las palabras jsp

parent 2e26d315
...@@ -117,9 +117,9 @@ public class PostulanteController { ...@@ -117,9 +117,9 @@ public class PostulanteController {
postulante.setCvFile(cv); postulante.setCvFile(cv);
} }
for(Estudio estudio: postulante.getEstudios()){ for(Estudio estudio: postulante.getEstudios()){
String nombreIns = ""; String nombreIns = estudio.getInstitucion().getNombre();
nombreIns = estudio.getInstitucion().getNombre().toLowerCase();
Institucion institucion = institucionRepository.findByNombre(nombreIns); Institucion institucion = institucionRepository.findByNombreIgnoreCase(nombreIns);
if(institucion==null){ if(institucion==null){
institucionRepository.save(estudio.getInstitucion()); institucionRepository.save(estudio.getInstitucion());
}else{ }else{
......
...@@ -4,5 +4,5 @@ import com.roshka.modelo.Institucion; ...@@ -4,5 +4,5 @@ import com.roshka.modelo.Institucion;
import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaRepository;
public interface InstitucionRepository extends JpaRepository<Institucion, Long> { public interface InstitucionRepository extends JpaRepository<Institucion, Long> {
public Institucion findByNombre(String nombre); public Institucion findByNombreIgnoreCase(String nombre);
} }
...@@ -90,7 +90,7 @@ ...@@ -90,7 +90,7 @@
{ {
"tipoDeEstudio": "TERCIARIO", "tipoDeEstudio": "TERCIARIO",
"estado": "SUSPENDIDO", "estado": "SUSPENDIDO",
"institucion": { "nombre": "UNA" }, "institucion": { "nombre": "UNB" },
"fechaDesde": "2014-07-08", "fechaDesde": "2014-07-08",
"fechaHasta": "2016-01-01", "fechaHasta": "2016-01-01",
"temaDeEstudio": "lic inf" "temaDeEstudio": "lic inf"
...@@ -137,7 +137,7 @@ ...@@ -137,7 +137,7 @@
{ {
"tipoDeEstudio": "TERCIARIO", "tipoDeEstudio": "TERCIARIO",
"estado": "SUSPENDIDO", "estado": "SUSPENDIDO",
"institucion": { "nombre": "UNA" }, "institucion": { "nombre": "UNC" },
"fechaDesde": "2014-02-13", "fechaDesde": "2014-02-13",
"fechaHasta": "2016-01-01", "fechaHasta": "2016-01-01",
"temaDeEstudio": "lic inf" "temaDeEstudio": "lic inf"
...@@ -184,7 +184,7 @@ ...@@ -184,7 +184,7 @@
{ {
"tipoDeEstudio": "TERCIARIO", "tipoDeEstudio": "TERCIARIO",
"estado": "SUSPENDIDO", "estado": "SUSPENDIDO",
"institucion": { "nombre": "UNA" }, "institucion": { "nombre": "UND" },
"fechaDesde": "2014-12-22", "fechaDesde": "2014-12-22",
"fechaHasta": "2016-01-01", "fechaHasta": "2016-01-01",
"temaDeEstudio": "ing inf" "temaDeEstudio": "ing inf"
...@@ -231,7 +231,7 @@ ...@@ -231,7 +231,7 @@
{ {
"tipoDeEstudio": "TERCIARIO", "tipoDeEstudio": "TERCIARIO",
"estado": "SUSPENDIDO", "estado": "SUSPENDIDO",
"institucion": { "nombre": "UNA" }, "institucion": { "nombre": "AMERICANA" },
"fechaDesde": "2014-08-03", "fechaDesde": "2014-08-03",
"fechaHasta": "2016-01-01", "fechaHasta": "2016-01-01",
"temaDeEstudio": "lic inf" "temaDeEstudio": "lic inf"
...@@ -278,7 +278,7 @@ ...@@ -278,7 +278,7 @@
{ {
"tipoDeEstudio": "TERCIARIO", "tipoDeEstudio": "TERCIARIO",
"estado": "SUSPENDIDO", "estado": "SUSPENDIDO",
"institucion": { "nombre": "UNA" }, "institucion": { "nombre": "UCA" },
"fechaDesde": "2014-07-13", "fechaDesde": "2014-07-13",
"fechaHasta": "2016-01-01", "fechaHasta": "2016-01-01",
"temaDeEstudio": "ing inf" "temaDeEstudio": "ing inf"
...@@ -325,7 +325,7 @@ ...@@ -325,7 +325,7 @@
{ {
"tipoDeEstudio": "TERCIARIO", "tipoDeEstudio": "TERCIARIO",
"estado": "SUSPENDIDO", "estado": "SUSPENDIDO",
"institucion": { "nombre": "UNA" }, "institucion": { "nombre": "UCOM" },
"fechaDesde": "2014-10-03", "fechaDesde": "2014-10-03",
"fechaHasta": "2016-01-01", "fechaHasta": "2016-01-01",
"temaDeEstudio": "ing inf" "temaDeEstudio": "ing inf"
......
...@@ -20,9 +20,9 @@ function listarConvocatorias(id){ ...@@ -20,9 +20,9 @@ function listarConvocatorias(id){
const opt = document.createElement("option"); const opt = document.createElement("option");
opt.value = conv.id; opt.value = conv.id;
if(conv.fechaFin!=null){ if(conv.fechaFin!=null){
opt.innerHTML ="Desde :"+new Date(conv.fechaInicio).toISOString().slice(0,10)+"-"+" Hasta :"+new Date(conv.fechaFin).toISOString().slice(0,10); opt.innerHTML =new Date(conv.fechaInicio).toLocaleDateString("es-PY")+" - "+new Date(conv.fechaFin).toLocaleDateString("es-PY");
}else{ }else{
opt.innerHTML ="Desde :"+new Date(conv.fechaInicio).toISOString().slice(0,10) opt.innerHTML ="Inicio en: "+new Date(conv.fechaInicio).toLocaleDateString("es-PY")
} }
opt.setAttribute("data-CargoId",conv.cargoId); opt.setAttribute("data-CargoId",conv.cargoId);
frag.appendChild(opt) frag.appendChild(opt)
......
...@@ -119,11 +119,6 @@ ...@@ -119,11 +119,6 @@
</layout:put> </layout:put>
<layout:put block="scripts" type="APPEND"> <layout:put block="scripts" type="APPEND">
<script language="JavaScript">
let mostrar=document.querySelector(convocatoria.getFechaFin())
if(mostrar!=null){
}
</script>
</layout:put> </layout:put>
</layout:extends> </layout:extends>
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
</li> </li>
<li class="nav-item dropdown"> <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false"> <a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Tecnologias Tecnologías
</a> </a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink"> <ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li><a class="dropdown-item" href="/tecnologia">Agregar</a></li> <li><a class="dropdown-item" href="/tecnologia">Agregar</a></li>
......
...@@ -122,7 +122,7 @@ ...@@ -122,7 +122,7 @@
<br> <br>
<div class="inputs mb-3 col-md-6"> <label for="nivelIngles" class="form-label"> Nivel de ingles</label> <div class="inputs mb-3 col-md-6"> <label for="nivelIngles" class="form-label"> Nivel de inglés</label>
<select name="nivelIngles" id="nivelIngles" class="content-select"> <select name="nivelIngles" id="nivelIngles" class="content-select">
<option value="1" selected>Conocimiento de ingles muy básico</option> <option value="1" selected>Conocimiento de ingles muy básico</option>
<option value="2" >Comprendo algunas cosas y puedo leer con la ayuda del traductor</option> <option value="2" >Comprendo algunas cosas y puedo leer con la ayuda del traductor</option>
......
...@@ -100,7 +100,7 @@ ...@@ -100,7 +100,7 @@
<div class="col"> <div class="col">
<div class="row"> <div class="row">
<div class="col-auto col-md-4"> <div class="col-auto col-md-4">
<label class="form-label" for="instId">Institucion Educativa</label> <label class="form-label" for="instId">Institución Educativa</label>
</div> </div>
<div class="col-auto col-md-8"> <div class="col-auto col-md-8">
...@@ -118,7 +118,7 @@ ...@@ -118,7 +118,7 @@
<div class="col"> <div class="col">
<div class="row"> <div class="row">
<div class="col-auto col-md-4"> <div class="col-auto col-md-4">
<label class="form-label" for="lvlEng">Nivel de Ingles</label> <label class="form-label" for="lvlEng">Nivel de Inglés</label>
</div> </div>
<div class="col-auto col-md-8"> <div class="col-auto col-md-8">
<select class="form-select form-select-sm " name="lvlEng" id="lvlEng"> <select class="form-select form-select-sm " name="lvlEng" id="lvlEng">
...@@ -139,7 +139,7 @@ ...@@ -139,7 +139,7 @@
<div class="row"> <div class="row">
<div class="col-auto col-md-4"> <div class="col-auto col-md-4">
<label class="form-label" for="tecId">Tecnologias</label> <label class="form-label" for="tecId">Tecnologías</label>
</div> </div>
<div class="col-auto col-md-8"> <div class="col-auto col-md-8">
...@@ -156,7 +156,7 @@ ...@@ -156,7 +156,7 @@
<div class="col"> <div class="col">
<div class="row" id="lvlTecBlock"> <div class="row" id="lvlTecBlock">
<div class="col-auto col-md-4"> <div class="col-auto col-md-4">
<label class="form-label" for="lvlTec">Nivel de Tecnologia</label> <label class="form-label" for="lvlTec">Nivel de Tecnología</label>
</div> </div>
<div class="col-auto col-md-8"> <div class="col-auto col-md-8">
<select class="form-select form-select-sm" name="lvlTec" id="lvlTec"> <select class="form-select form-select-sm" name="lvlTec" id="lvlTec">
...@@ -186,9 +186,9 @@ ...@@ -186,9 +186,9 @@
<tr> <tr>
<th scope="col">#</th> <th scope="col">#</th>
<th scope="col">Nombre</th> <th scope="col">Nombre</th>
<th scope="col">Nivel de Ingles</th> <th scope="col">Nivel de Inglés</th>
<th scope="col">Experiencia</th> <th scope="col">Experiencia</th>
<th scope="col">Tecnologias</th> <th scope="col">Tecnologías</th>
<th scope="col">Estado</th> <th scope="col">Estado</th>
</tr> </tr>
</thead> </thead>
...@@ -239,7 +239,7 @@ ...@@ -239,7 +239,7 @@
</ul> </ul>
</div> </div>
<div class="col-md-2"> <div class="col-md-2">
<span class="badge bg-light text-dark">Numero de Ocurrencias: ${numeroOcurrencias}</span> <span class="badge bg-light text-dark">Postulantes: ${numeroOcurrencias}</span>
</div> </div>
</div> </div>
</nav> </nav>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<layout:put block="cssDeclaracion" type="APPEND"></layout:put> <layout:put block="cssDeclaracion" type="APPEND"></layout:put>
<layout:put block="cssDeclaracion" type="APPEND"></layout:put> <layout:put block="cssDeclaracion" type="APPEND"></layout:put>
<layout:put block="contents" type="REPLACE"> <layout:put block="contents" type="REPLACE">
<h2>${tecnologia.id == null ? "Agregar" : "Modificar"} Tecnologia</h2> <h2>${tecnologia.id == null ? "Agregar" : "Modificar"} Tecnología</h2>
<div class="p-3 mb-2 bg-light text-dark bg-transparent"> <div class="p-3 mb-2 bg-light text-dark bg-transparent">
<form:form action="/tecnologia/${tecnologia.id == null ? '' : tecnologia.id}" method="post" modelAttribute="tecnologia" class="row row-cols-lg-auto g-3 align-items-center"> <form:form action="/tecnologia/${tecnologia.id == null ? '' : tecnologia.id}" method="post" modelAttribute="tecnologia" class="row row-cols-lg-auto g-3 align-items-center">
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<layout:extends name="layouts/base.jsp"> <layout:extends name="layouts/base.jsp">
<layout:put block="cssDeclaracion" type="APPEND"></layout:put> <layout:put block="cssDeclaracion" type="APPEND"></layout:put>
<layout:put block="contents" type="REPLACE"> <layout:put block="contents" type="REPLACE">
<h2>Lista de Tecnologias</h2> <h2>Lista de Tecnologías</h2>
<div> <div>
<form> <form>
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
<thead> <thead>
<tr> <tr>
<th scope="col">#</th> <th scope="col">#</th>
<th scope="col">Tecnologia</th> <th scope="col">Tecnología</th>
<th scope="col"></th> <th scope="col"></th>
</tr> </tr>
</thead> </thead>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment