|
@@ -564,7 +564,8 @@ public class ZhcxInsideInspectionServiceImpl extends ServiceImpl<ZhcxInsideInspe
|
|
|
req.setDispatchFlag(2);
|
|
|
SysUserDo sysUserDo = userMap.get(vo.getSupervision());
|
|
|
if (!ObjectUtil.isNull(sysUserDo)) {
|
|
|
- if(inOper.getDispatch().getSupervisionid().equals(sysUserDo.getId())) {
|
|
|
+ String supervisionid = inOper.getDispatch().getSupervisionid();
|
|
|
+ if(StringUtils.isNotBlank(supervisionid) && supervisionid.equals(sysUserDo.getId())) {
|
|
|
continue;
|
|
|
}
|
|
|
ZhcxInsideInspectionDo inspectionDo = map.get(sysUserDo.getId() + "gp");
|