Commit ec4ab60d by fudahua

未在绑定范围判断

parent 89112579
...@@ -197,7 +197,10 @@ public class QywxGroupSyncOperation implements BaseSyncOperation { ...@@ -197,7 +197,10 @@ public class QywxGroupSyncOperation implements BaseSyncOperation {
return ; return ;
} }
List<UserDTO> list = this.qywxUserApiService.listSelfDepartmentUser(wxEnterpriseDTO.getCorpid(), secretSetting.getSecretVal(), dataId, 0); List<UserDTO> list = this.qywxUserApiService.listSelfDepartmentUser(wxEnterpriseDTO.getCorpid(), secretSetting.getSecretVal(), dataId, 0);
if (null == list) {
logger.info("微信获取部门成员异常:{},{}",taskId,dataId);
return;
}
//预处理门店 写入预处理表 //预处理门店 写入预处理表
if (CollectionUtils.isNotEmpty(list)) { if (CollectionUtils.isNotEmpty(list)) {
......
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