|
|
@@ -3,6 +3,7 @@ package com.fs.live.service.impl;
|
|
|
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
import com.fs.common.utils.DateUtils;
|
|
|
+import com.fs.common.utils.ParseUtils;
|
|
|
import com.fs.huifuPay.domain.HuiFuQueryOrderResult;
|
|
|
import com.fs.huifuPay.sdk.opps.core.request.V2TradePaymentScanpayQueryRequest;
|
|
|
import com.fs.huifuPay.service.HuiFuService;
|
|
|
@@ -65,8 +66,8 @@ public class LiveOrderPaymentServiceImpl implements ILiveOrderPaymentService {
|
|
|
private FsStoreProductMapper fsStoreProductMapper;
|
|
|
@Override
|
|
|
public List<LiveOrderPaymentVo> selectLiveOrderPaymentVoList(LiveOrderPaymentVo liveOrderPayment) {
|
|
|
- Map<Long, FsStoreProduct> productMap = fsStoreProductMapper.selectAllProductName();
|
|
|
List<LiveOrderPaymentVo> liveOrderPaymentVos = baseMapper.selectLiveOrderPaymentVoList(liveOrderPayment);
|
|
|
+ Map<Long, FsStoreProduct> productMap = fsStoreProductMapper.selectAllProductName();
|
|
|
|
|
|
for (LiveOrderPaymentVo vo : liveOrderPaymentVos) {
|
|
|
if(ObjectUtil.isNotNull(vo.getProductId())){
|
|
|
@@ -75,6 +76,7 @@ public class LiveOrderPaymentServiceImpl implements ILiveOrderPaymentService {
|
|
|
vo.setPackageTitle(fsStoreProduct.getProductName());
|
|
|
}
|
|
|
}
|
|
|
+ vo.setUserPhone(ParseUtils.parsePhone(vo.getUserPhone()));
|
|
|
}
|
|
|
return liveOrderPaymentVos;
|
|
|
}
|