public static Trabajador createObj(HttpServletRequest req) throws TorqueException { Trabajador o = BaseTrabajadorHelper.getTrabajador(req); o.setId(WebUtils.getintParam(req, getIdName(o))); o.setNumero(WebUtils.getStringParam(req, getNumeroName(o))); o.setFechaAlta(WebUtils.getStringParam(req, getFechaAltaName(o))); o.setFechaBaja(WebUtils.getStringParam(req, getFechaBajaName(o))); o.setObs(WebUtils.getStringParam(req, getObsName(o))); o.setNombre(WebUtils.getStringParam(req, getNombreName(o))); o.setApellidos(WebUtils.getStringParam(req, getApellidosName(o))); o.setApellidosDos(WebUtils.getStringParam(req, getApellidosDosName(o))); o.setCif(WebUtils.getStringParam(req, getCifName(o))); o.setCosteHora(WebUtils.getdoubleParam(req, getCosteHoraName(o))); o.setDireccion(WebUtils.getStringParam(req, getDireccionName(o))); o.setLocalidadId( Integer.parseInt( FormatUtils.getFkIdFromString(WebUtils.getStringParam(req, getLocalidadIdName(o))))); o.setCp(WebUtils.getStringParam(req, getCpName(o))); o.setTlfno(WebUtils.getStringParam(req, getTlfnoName(o))); o.setMovil(WebUtils.getStringParam(req, getMovilName(o))); o.setEmail(WebUtils.getStringParam(req, getEmailName(o))); o.setCategoriaId( Integer.parseInt( FormatUtils.getFkIdFromString(WebUtils.getStringParam(req, getCategoriaIdName(o))))); return o; }
private static String getIdValue(Trabajador o) { return "" + o.getId(); }
private static String getTlfnoValue(Trabajador o) { if (o.getTlfno() != null) return "" + o.getTlfno(); else return ""; }
private static String getEmailValue(Trabajador o) { if (o.getEmail() != null) return "" + o.getEmail(); else return ""; }
private static String getDireccionValue(Trabajador o) { if (o.getDireccion() != null) return "" + o.getDireccion(); else return ""; }
private static String getCosteHoraValue(Trabajador o) { return "" + o.getCosteHora(); }
private static String getApellidosDosValue(Trabajador o) { if (o.getApellidosDos() != null) return "" + o.getApellidosDos(); else return ""; }
private static String getNombreValue(Trabajador o) { if (o.getNombre() != null) return "" + o.getNombre(); else return ""; }
private static String getFechaBajaValue(Trabajador o) { if (o.getFechaBaja() != null) return "" + o.getFechaBaja(); else return ""; }