@RequestMapping(value = "/registrarPaciente", method = RequestMethod.POST) public ModelAndView registroPaciente(HttpServletRequest request, HttpServletResponse response) throws Exception { System.out.println("registrarPaciente"); Paciente oModelPaciente = new Paciente(); oModelPaciente.setCodigoDueno(Integer.parseInt(request.getParameter("hiddencliente"))); oModelPaciente.setCodigoPaciente(0); oModelPaciente.setespecieid(Integer.parseInt(request.getParameter("cboEspecie"))); oModelPaciente.setrazaid(Integer.parseInt(request.getParameter("cboRaza"))); oModelPaciente.setgeneroid(Integer.parseInt(request.getParameter("cboGenero"))); oModelPaciente.settipoSangreid(Integer.parseInt(request.getParameter("cboTipoSangre"))); oModelPaciente.setEsterilizado(request.getParameter("cboEsterilizado")); oModelPaciente.settamanoid(Integer.parseInt(request.getParameter("cboTamano"))); oModelPaciente.setactividadid(Integer.parseInt(request.getParameter("cboActividad"))); oModelPaciente.setPeso(request.getParameter("txtPeso")); oModelPaciente.setFechaNacimiento(request.getParameter("txtFechaNacimiento")); oModelPaciente.setNotasMedicas(request.getParameter("txtNotasMedicas")); oModelPaciente.setCondicionesEspeciales(request.getParameter("txtCondicionesEspeciales")); try { iPaciente.insertarPaciente(oModelPaciente); } catch (Exception e) { return new ModelAndView("/error", "mensaje", e.getMessage()); } return new ModelAndView("redirect:listarpaciente.jsp"); }
@RequestMapping(value = "/eliminarPaciente", method = RequestMethod.GET) public ModelAndView eliminarPaciente(HttpServletRequest request, HttpServletResponse response) throws Exception { System.out.println("eliminarPaciente"); try { iPaciente.deletepaciente(Integer.parseInt(request.getParameter("id"))); } catch (Exception e) { return new ModelAndView("/error", "mensaje", e.getMessage()); } return new ModelAndView("redirect:listarpaciente.jsp"); }