|
@@ -2170,7 +2170,7 @@ public class ScheduleServiceImpl extends ServiceImpl<PolyvVideoMapper, PolyvVide
|
|
|
public void officialInfoPush(UserQueryBo bo) {
|
|
|
List<ClassGradeUserGoodsVo> list = iClassGradeUserService.selectOfficialNotPush(bo);
|
|
|
for (ClassGradeUserGoodsVo vo : list) {
|
|
|
- UserConfirmInfo confirmInfo = iUserConfirmInfoService.getOne(new LambdaQueryWrapper<UserConfirmInfo>()
|
|
|
+ /* UserConfirmInfo confirmInfo = iUserConfirmInfoService.getOne(new LambdaQueryWrapper<UserConfirmInfo>()
|
|
|
.eq(UserConfirmInfo::getUserId, vo.getUserId()).eq(UserConfirmInfo::getOrderGoodsId, vo.getOrderGoodsId()
|
|
|
).last("limit 1"));
|
|
|
//有确认信息才允许推送
|
|
@@ -2179,7 +2179,11 @@ public class ScheduleServiceImpl extends ServiceImpl<PolyvVideoMapper, PolyvVide
|
|
|
queryBo.setGradeId(vo.getGradeId());
|
|
|
queryBo.setUserId(vo.getUserId());
|
|
|
String result = iClassGradeUserService.pushOfficialInfo(queryBo);
|
|
|
- }
|
|
|
+ }*/
|
|
|
+ ClassGradeUserQueryBo queryBo = new ClassGradeUserQueryBo();
|
|
|
+ queryBo.setGradeId(vo.getGradeId());
|
|
|
+ queryBo.setUserId(vo.getUserId());
|
|
|
+ String result = iClassGradeUserService.pushOfficialInfo(queryBo);
|
|
|
}
|
|
|
}
|
|
|
|