Commit fb7d9967 authored by fangxinjiang's avatar fangxinjiang

代码优化-fxj

parent 163eb981
...@@ -7953,10 +7953,12 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap ...@@ -7953,10 +7953,12 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
boolean isProjectManager = this.haveRole(user, roleId2); boolean isProjectManager = this.haveRole(user, roleId2);
if (isSsc) { if (isSsc) {
condition.setAlertId(null); condition.setAlertId(null);
} else if (isProjectManager){ } else {
condition.setAlertId(null); if (isProjectManager){
}else{ condition.setAlertId(null);
condition.setAlertId(user.getId()); }else{
condition.setAlertId(user.getId());
}
} }
if (isProjectManager){ if (isProjectManager){
R<TSettleDomainListVo> sdRes = archivesDaprUtil.getSettleDomainIdsByUserId(user.getId()); R<TSettleDomainListVo> sdRes = archivesDaprUtil.getSettleDomainIdsByUserId(user.getId());
......
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