|
@@ -291,10 +291,8 @@ public class GroupRelationFrontServiceImpl implements GroupRelationFrontService
|
|
|
Integer codeNum = getUserCodeNumBySkuId(ticket.getUserId(), ticket.getSkuId(), isHasVerifyCode);
|
|
Integer codeNum = getUserCodeNumBySkuId(ticket.getUserId(), ticket.getSkuId(), isHasVerifyCode);
|
|
|
ticket.setCodeNum(codeNum);
|
|
ticket.setCodeNum(codeNum);
|
|
|
}
|
|
}
|
|
|
- Integer qa = goodsDonQaRelateMapper.selectCount(Wrappers.lambdaQuery(GoodsDonQaRelate.class)
|
|
|
|
|
- .eq(GoodsDonQaRelate::getGoodsId, ticket.getGoodsId())
|
|
|
|
|
- .eq(GoodsDonQaRelate::getDeleted, 1));
|
|
|
|
|
- ticket.setQa(qa > 0 ? true : false);
|
|
|
|
|
|
|
+ Long qaId = groupsRelationMapper.selectGoodsDonQaByGoodsId(ticket.getGoodsId());
|
|
|
|
|
+ ticket.setQa(qaId > 0 ? true : false);
|
|
|
});
|
|
});
|
|
|
userLoginRecordService.saveUserLoginDayRecord(userId);
|
|
userLoginRecordService.saveUserLoginDayRecord(userId);
|
|
|
return list;
|
|
return list;
|