Commit 04694bbd by 宋祥

1.组织不存在抛出异常

parent 45751a7a
...@@ -96,7 +96,7 @@ public class ServiceHPPZ014 extends ServiceBase { ...@@ -96,7 +96,7 @@ public class ServiceHPPZ014 extends ServiceBase {
inInfo.setStatus(EiConstant.STATUS_DEFAULT); inInfo.setStatus(EiConstant.STATUS_DEFAULT);
inInfo.setMsg("操作成功!本次对[" + resultRows.size() + "]条数据登记成功!"); inInfo.setMsg("操作成功!本次对[" + resultRows.size() + "]条数据登记成功!");
} catch (Exception e) { } catch (Exception e) {
LogUtils.setDetailMsg(inInfo, e, "登记失败"); LogUtils.setMsg(inInfo, e, "登记失败");
} }
return inInfo; return inInfo;
} }
......
...@@ -174,7 +174,8 @@ public class HPXSTools { ...@@ -174,7 +174,8 @@ public class HPXSTools {
Map paramMap = new HashMap(); Map paramMap = new HashMap();
paramMap.put("orgId", orgId); paramMap.put("orgId", orgId);
List<Org> results = DaoBase.getInstance().query("HPXSOrg.query", paramMap); List<Org> results = DaoBase.getInstance().query("HPXSOrg.query", paramMap);
return CollectionUtils.isEmpty(results) ? null : results.get(0); AssertUtils.isEmpty(results, String.format("组织信息[%s]不存在", orgId));
return results.get(0);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment