‘linchangsheng’ 2 周之前
父节点
当前提交
5453cabc7f
共有 1 个文件被更改,包括 1 次插入4 次删除
  1. 1 4
      src/main/java/com/gree/mall/manager/logic/template/TemplateLogic.java

+ 1 - 4
src/main/java/com/gree/mall/manager/logic/template/TemplateLogic.java

@@ -122,12 +122,9 @@ public class TemplateLogic {
 
     public PubTemplate queryPub(HttpServletRequest request) {
         AdminUserCom adminUser = commonLogic.getAdminUser(request);
-        if (StringUtils.isEmpty(adminUser.getLoginCompanyWechatId())) {
-            throw new RemoteServiceException("无效微信企业id");
-        }
 
         return pubTemplateService.lambdaQuery()
-                .in(CollectionUtils.isNotEmpty(adminUser.getAdminCompanyIds()),PubTemplate::getCompanyWechatId,adminUser.getAdminCompanyIds())
+                //.in(CollectionUtils.isNotEmpty(adminUser.getAdminCompanyIds()),PubTemplate::getCompanyWechatId,adminUser.getAdminCompanyIds())
                 .one();
     }