|
@@ -46,6 +46,7 @@ import com.qunzhixinxi.hnqz.common.core.constant.CommonConstants;
|
|
|
import com.qunzhixinxi.hnqz.common.core.exception.BizException;
|
|
|
import com.qunzhixinxi.hnqz.common.security.service.HnqzUser;
|
|
|
import com.qunzhixinxi.hnqz.common.security.util.SecurityUtils;
|
|
|
+import com.sun.org.apache.bcel.internal.generic.NEW;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.data.redis.core.RedisTemplate;
|
|
@@ -395,9 +396,18 @@ public class SysImplementPlanManager {
|
|
|
// 获取可见范围中所有企业的信息
|
|
|
List<Long> entIds = enterpriseAreaService.listAreaEnts(areaIds);
|
|
|
|
|
|
- if ((userId == 7959 || userId == 7602) && CollUtil.isNotEmpty(entIds)) {
|
|
|
- entIds.remove(10171L);
|
|
|
- entIds.remove(10172L);
|
|
|
+ if ((userId == 7959 || userId == 7602) && CollUtil.isNotEmpty(entIds)) {
|
|
|
+
|
|
|
+ List<Long> ignored = new LinkedList<>();
|
|
|
+ ignored.add(-1019330L);
|
|
|
+ ignored.add(-1019986L);
|
|
|
+ ignored.add(1716964676L);
|
|
|
+ ignored.add(1716953432L);
|
|
|
+ ignored.add(-1020826L);
|
|
|
+ ignored.add(-1026289L);
|
|
|
+ ignored.add(-1026537L);
|
|
|
+ entIds.removeAll(ignored);
|
|
|
+
|
|
|
}
|
|
|
|
|
|
return entIds;
|