mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 04:25:21 +08:00
查询订单退款信息
This commit is contained in:
@@ -204,6 +204,16 @@ public class OrderPayRecordServiceImpl implements OrderPayRecordService {
|
||||
return resultList;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<String> parsePaymentIdByDeductionRecord(String deductionRecord) {
|
||||
List<String> resultList = Lists.newArrayList();
|
||||
List<PaymentInfo> paymentInfos = parseDeductionRecord(deductionRecord);
|
||||
if (CollectionUtils.isNotEmpty(paymentInfos)) {
|
||||
resultList = paymentInfos.stream().map(PaymentInfo::getPaymentId).collect(Collectors.toList());
|
||||
}
|
||||
return resultList;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateRefundAmount(String orderCode, String paymentId, BigDecimal refundAmt) {
|
||||
List<OrderPayRecord> orderPayRecordList = getOrderPayRecordList(orderCode);
|
||||
|
||||
Reference in New Issue
Block a user