Commit fb7d9967 authored by fangxinjiang's avatar fangxinjiang

代码优化-fxj

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