This commit is contained in:
齐天大圣 2024-01-22 14:26:01 +08:00
parent f580ad2646
commit f16d31ca40
2 changed files with 1 additions and 4 deletions

View File

@ -112,7 +112,7 @@ export default {
getList(){ getList(){
this.loading = true this.loading = true
this.queryParams.userId = this.userId this.queryParams.mtUserId = this.userId
getCardFavorableList(this.queryParams).then(res=>{ getCardFavorableList(this.queryParams).then(res=>{
if (res.code == 200) { if (res.code == 200) {
this.list = res.data.records this.list = res.data.records

View File

@ -456,16 +456,13 @@ public class ActiveExchangeServiceImpl implements ActiveExchangeService {
List<ActiveDiscountPayVO> activeFuletVOLists = oilOrderMapper.selectActiveFules(storeId,paymentActiveDTO.getAmount(),paymentActiveDTO.getOilId(),paymentActiveDTO.getMtUserLevel()); List<ActiveDiscountPayVO> activeFuletVOLists = oilOrderMapper.selectActiveFules(storeId,paymentActiveDTO.getAmount(),paymentActiveDTO.getOilId(),paymentActiveDTO.getMtUserLevel());
activeFuletVOList.addAll(activeFuletVOLists); activeFuletVOList.addAll(activeFuletVOLists);
//优惠券 //优惠券
<<<<<<< HEAD
//paymentActiveDTO.setUserId(userId); //paymentActiveDTO.setUserId(userId);
paymentActiveDTO.setUserId(117); paymentActiveDTO.setUserId(117);
=======
if (ObjectUtils.isNotEmpty(paymentActiveDTO.getUserId())){ if (ObjectUtils.isNotEmpty(paymentActiveDTO.getUserId())){
userId = paymentActiveDTO.getUserId(); userId = paymentActiveDTO.getUserId();
} }
paymentActiveDTO.setUserId(userId); paymentActiveDTO.setUserId(userId);
>>>>>>> origin/master
List<CardFavorableRecordVO> canUserCardFavorableList = cardFavorableRecordMapper.getCanUserCardFavorableList(paymentActiveDTO); List<CardFavorableRecordVO> canUserCardFavorableList = cardFavorableRecordMapper.getCanUserCardFavorableList(paymentActiveDTO);
//如果是储值卡付款直接过滤掉 //如果是储值卡付款直接过滤掉
if(paymentActiveDTO.getType().equals("0")){ if(paymentActiveDTO.getType().equals("0")){