|
@@ -13,6 +13,7 @@ import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.collections4.CollectionUtils;
|
|
|
+import org.apache.commons.lang.StringUtils;
|
|
|
import org.apache.shiro.SecurityUtils;
|
|
|
import org.jeecg.common.api.vo.Result;
|
|
|
import org.jeecg.common.aspect.annotation.AutoLog;
|
|
@@ -26,6 +27,8 @@ import org.jeecg.modules.adweb.site.entity.AdwebSite;
|
|
|
import org.jeecg.modules.adweb.site.service.IAdwebSiteService;
|
|
|
import org.jeecg.modules.adweb.workflow.entity.ExecuteNode;
|
|
|
import org.jeecg.modules.adweb.workflow.service.IExecuteNodeService;
|
|
|
+import org.jeecg.modules.system.entity.SysUser;
|
|
|
+import org.jeecg.modules.system.service.ISysUserService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
@@ -45,6 +48,8 @@ public class ExecuteNodeController extends JeecgController<ExecuteNode, IExecute
|
|
|
|
|
|
@Autowired private IAdwebEnquiryService adwebEnquiryService;
|
|
|
|
|
|
+ @Autowired private ISysUserService sysUserService;
|
|
|
+
|
|
|
/**
|
|
|
* 分页列表查询
|
|
|
*
|
|
@@ -197,9 +202,18 @@ public class ExecuteNodeController extends JeecgController<ExecuteNode, IExecute
|
|
|
// 询盘审核流程,在MQ消费插入询盘时自动创建
|
|
|
executeNodeService.copyEnquiryVerifyFlow(enquiryId);
|
|
|
list = executeNodeService.getEnquiryVerifyFlow(enquiryId);
|
|
|
+ }
|
|
|
|
|
|
- return Result.ok(list);
|
|
|
+ // 设置审核人
|
|
|
+ for (ExecuteNode executeNode : list) {
|
|
|
+ if (StringUtils.isNotBlank(executeNode.getFinUid())) {
|
|
|
+ SysUser user = sysUserService.getById(executeNode.getFinUid());
|
|
|
+ if (user != null) {
|
|
|
+ executeNode.setFinName(user.getRealname());
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
return Result.OK(list);
|
|
|
}
|
|
|
|
|
@@ -349,7 +363,8 @@ public class ExecuteNodeController extends JeecgController<ExecuteNode, IExecute
|
|
|
if (CollectionUtils.isNotEmpty(unfinishedList)) {
|
|
|
enquiryUpdateWrapper.set("verify_num", stepCount - unfinishedList.size());
|
|
|
} else {
|
|
|
- enquiryUpdateWrapper.set("verify_num", stepCount);
|
|
|
+ enquiryUpdateWrapper.set("verify_num", stepCount); // 设置审核步骤完成
|
|
|
+ enquiryUpdateWrapper.set("user_Effective", 1); // 设置为有效询盘
|
|
|
}
|
|
|
}
|
|
|
|