Guest User

Untitled

a guest
Feb 21st, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. public void buscaDetalle() {
  2.  
  3.  
  4. incidenciaAnioMesDet = anioMesDetService.findIncidenciaAnioMesDeByAnioMes(cvePersona, annio, mes);
  5. for (IncidenciaAnioMesDet incidenciaDetalle : incidenciaAnioMesDet) {
  6.  
  7.  
  8. if (incidenciaDetalle.getHoraEntrada() != null) {
  9. horarioEntrada = incidenciaDetalle.getHoraEntrada().toString();
  10. }
  11.  
  12. //Obtiene el formato correcto
  13. String str = new String(horarioEntrada);
  14. String time = str.split("\s")[1].split("\.")[0];
  15. entrada = time;
  16.  
  17. }
  18.  
  19. }
Add Comment
Please, Sign In to add comment