|
@@ -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();
|
|
|
}
|
|
|
|