/** * 打开发送邮件页面 * * @return * @throws Exception */ public String addMail() throws Exception { try { wldwlx = sjzdService.getSjzdXmxxByZdId("SJZD_WLDWLX"); lxrmail = ParameterUtility.getStringParameter(getRequest(), "lxrmail", ""); return "success"; } catch (Exception e) { log.error("添加邮件 错误原因:" + e.getMessage()); return "error"; } }
/** * 序列号查看页面 * * @return */ public String serialView() { String id = ParameterUtility.getStringParameter(getRequest(), "id", ""); serialList = lsdService.getSerialList(id); return "success"; }
/** * 删除零售单 * * @return */ public String del() { String id = ParameterUtility.getStringParameter(getRequest(), "id", ""); lsdService.delLsd(id); return "success"; }