|
@@ -181,7 +181,10 @@ public class KuaishouAccountReportDailyDwServiceImpl implements IKuaishouAccount
|
|
|
List<KuaiShouOperateGroupVo> list = new ArrayList<>();
|
|
|
for (KuaiShouOperateGroupVo groupVo : operationManagerList) {
|
|
|
//下级员工
|
|
|
- Set<String> operatorUserIds = materialStareMapper.queryKuaishouOperateTeamMember(groupVo.getUserId(),startDate, entDate);
|
|
|
+ Set<String> operatorUserIds = materialStareMapper.queryKuaishouOperateTeamMember(groupVo.getUserId(), startDate, entDate);
|
|
|
+ if (Check.isNull(operatorUserIds)) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
//运营数量
|
|
|
int operationNum = operatorUserIds.size();
|
|
|
//查询账户数据
|