/**
* <更新二级审核人>
* @param mapping
* @param form
* @param request
* @param response
* @return
* @throws Exception [参数说明]
* @author hongyan.cui
* @return ActionForward [返回类型说明]
* @exception throws [违例类型] [违例说明]
* @see [类、类#方法、类#成员]
*/
public ActionForward updateSecondChecker(ActionMapping mapping,ActionForm form,HttpServletRequest request,
HttpServletResponse response) throws Exception{
CheckerConfigFormBean checkerForm = (CheckerConfigFormBean)form;
PrintWriter out = response.getWriter();
//封装修改参数
JSONObject sJson = new JSONObject();
sJson.put("checker",checkerForm.getChecker());
sJson.put("code",checkerForm.getCode());
String result ="";
if ("".equals(checkerForm.getCode()) || null == checkerForm.getCode())
{
result = "{\"succeed\":\"false\"}";
}
//调用修改审核人webservice接口
IPoApplyWsProxy iPoApplyWsProxy=new IPoApplyWsProxy();
iPoApplyWsProxy.updateSecondChecker(sJson.toString());
result = "{\"succeed\":\"true\"}";
if (null !=out) { out.print(result); out.close(); } return null; }
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。