Commit b6841f85 by Joel Florentin

bugfix de experiencia en meses al volver a cargar un postulante ya existente

parent 8d481fa4
......@@ -90,6 +90,8 @@ public class PostulanteController {
expRepo.findByPostulante(postulantex).forEach(x -> expRepo.delete(x));
postulanteTecnologiaRepository.findByPostulante(postulantex).forEach(x -> postulanteTecnologiaRepository.delete(x));
postulante.setId(postulantex.getId());
postulante.setFechaCreacion((postulantex.getFechaCreacion()));
postulante.setMesesDeExperiencia(postulantex.getMesesDeExperiencia());
}
if(file!=null){
DBFile cv = Helper.createFile(file);
......
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