Commit 17a9fadc by Joel Florentin

colocacion de tildes en las palabras jsp

parent 2e26d315
......@@ -117,9 +117,9 @@ public class PostulanteController {
postulante.setCvFile(cv);
}
for(Estudio estudio: postulante.getEstudios()){
String nombreIns = "";
nombreIns = estudio.getInstitucion().getNombre().toLowerCase();
Institucion institucion = institucionRepository.findByNombre(nombreIns);
String nombreIns = estudio.getInstitucion().getNombre();
Institucion institucion = institucionRepository.findByNombreIgnoreCase(nombreIns);
if(institucion==null){
institucionRepository.save(estudio.getInstitucion());
}else{
......
......@@ -4,5 +4,5 @@ import com.roshka.modelo.Institucion;
import org.springframework.data.jpa.repository.JpaRepository;
public interface InstitucionRepository extends JpaRepository<Institucion, Long> {
public Institucion findByNombre(String nombre);
public Institucion findByNombreIgnoreCase(String nombre);
}
......@@ -90,7 +90,7 @@
{
"tipoDeEstudio": "TERCIARIO",
"estado": "SUSPENDIDO",
"institucion": { "nombre": "UNA" },
"institucion": { "nombre": "UNB" },
"fechaDesde": "2014-07-08",
"fechaHasta": "2016-01-01",
"temaDeEstudio": "lic inf"
......@@ -137,7 +137,7 @@
{
"tipoDeEstudio": "TERCIARIO",
"estado": "SUSPENDIDO",
"institucion": { "nombre": "UNA" },
"institucion": { "nombre": "UNC" },
"fechaDesde": "2014-02-13",
"fechaHasta": "2016-01-01",
"temaDeEstudio": "lic inf"
......@@ -184,7 +184,7 @@
{
"tipoDeEstudio": "TERCIARIO",
"estado": "SUSPENDIDO",
"institucion": { "nombre": "UNA" },
"institucion": { "nombre": "UND" },
"fechaDesde": "2014-12-22",
"fechaHasta": "2016-01-01",
"temaDeEstudio": "ing inf"
......@@ -231,7 +231,7 @@
{
"tipoDeEstudio": "TERCIARIO",
"estado": "SUSPENDIDO",
"institucion": { "nombre": "UNA" },
"institucion": { "nombre": "AMERICANA" },
"fechaDesde": "2014-08-03",
"fechaHasta": "2016-01-01",
"temaDeEstudio": "lic inf"
......@@ -278,7 +278,7 @@
{
"tipoDeEstudio": "TERCIARIO",
"estado": "SUSPENDIDO",
"institucion": { "nombre": "UNA" },
"institucion": { "nombre": "UCA" },
"fechaDesde": "2014-07-13",
"fechaHasta": "2016-01-01",
"temaDeEstudio": "ing inf"
......@@ -325,7 +325,7 @@
{
"tipoDeEstudio": "TERCIARIO",
"estado": "SUSPENDIDO",
"institucion": { "nombre": "UNA" },
"institucion": { "nombre": "UCOM" },
"fechaDesde": "2014-10-03",
"fechaHasta": "2016-01-01",
"temaDeEstudio": "ing inf"
......
......@@ -20,9 +20,9 @@ function listarConvocatorias(id){
const opt = document.createElement("option");
opt.value = conv.id;
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{
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);
frag.appendChild(opt)
......
......@@ -119,11 +119,6 @@
</layout:put>
<layout:put block="scripts" type="APPEND">
<script language="JavaScript">
let mostrar=document.querySelector(convocatoria.getFechaFin())
if(mostrar!=null){
}
</script>
</layout:put>
</layout:extends>
......@@ -45,7 +45,7 @@
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Tecnologias
Tecnologías
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li><a class="dropdown-item" href="/tecnologia">Agregar</a></li>
......
......@@ -122,7 +122,7 @@
<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">
<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>
......
......@@ -100,7 +100,7 @@
<div class="col">
<div class="row">
<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 class="col-auto col-md-8">
......@@ -118,7 +118,7 @@
<div class="col">
<div class="row">
<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 class="col-auto col-md-8">
<select class="form-select form-select-sm " name="lvlEng" id="lvlEng">
......@@ -139,7 +139,7 @@
<div class="row">
<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 class="col-auto col-md-8">
......@@ -156,7 +156,7 @@
<div class="col">
<div class="row" id="lvlTecBlock">
<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 class="col-auto col-md-8">
<select class="form-select form-select-sm" name="lvlTec" id="lvlTec">
......@@ -186,9 +186,9 @@
<tr>
<th scope="col">#</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">Tecnologias</th>
<th scope="col">Tecnologías</th>
<th scope="col">Estado</th>
</tr>
</thead>
......@@ -239,7 +239,7 @@
</ul>
</div>
<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>
</nav>
......
......@@ -6,7 +6,7 @@
<layout:put block="cssDeclaracion" type="APPEND"></layout:put>
<layout:put block="cssDeclaracion" type="APPEND"></layout:put>
<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">
<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 @@
<layout:extends name="layouts/base.jsp">
<layout:put block="cssDeclaracion" type="APPEND"></layout:put>
<layout:put block="contents" type="REPLACE">
<h2>Lista de Tecnologias</h2>
<h2>Lista de Tecnologías</h2>
<div>
<form>
......@@ -38,7 +38,7 @@
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Tecnologia</th>
<th scope="col">Tecnología</th>
<th scope="col"></th>
</tr>
</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