Commit 13b28209 authored by suntao's avatar suntao

操作日志

parent a0df3271
...@@ -272,7 +272,7 @@ public class OrderServiceImpl implements OrderService{ ...@@ -272,7 +272,7 @@ public class OrderServiceImpl implements OrderService{
} }
// 操作记录 // 操作记录
String optLogDetail = approveVo.getIsPass() ? "审批通过:" : "审批拒绝:"; String optLogDetail = approveVo.getIsPass() ? "审批通过:(".concat(fundId + "").concat(")") : "审批拒绝:";
OptHistoryLog optHistoryLog = new OptHistoryLog(); OptHistoryLog optHistoryLog = new OptHistoryLog();
optHistoryLog.setChannelOrderNumber(approveVo.getChannelOrderNumber()); optHistoryLog.setChannelOrderNumber(approveVo.getChannelOrderNumber());
...@@ -285,7 +285,7 @@ public class OrderServiceImpl implements OrderService{ ...@@ -285,7 +285,7 @@ public class OrderServiceImpl implements OrderService{
Boolean optResult; Boolean optResult;
if ("success".equals(approveStringResult)) { if ("success".equals(approveStringResult)) {
optLogDetail = optLogDetail.concat(corpPolicyValidate ? "" : "资产计划未配置,请联系管理员配置"); optLogDetail = optLogDetail.concat(corpPolicyValidate ? "审批操作成功" : "请检查资产配置,请联系管理员配置,审批操作成功");
optHistoryLog.setOptResult(true); optHistoryLog.setOptResult(true);
optResult = true; optResult = true;
......
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