mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-09 04:20:08 +08:00
Merge branch 'dev' of http://192.168.2.2:8099/jsowell/jsowell-charger-web into dev
This commit is contained in:
@@ -244,6 +244,7 @@ public class TempController extends BaseController {
|
||||
|
||||
/**
|
||||
* 运营商分账手动接口
|
||||
* 前提条件是已经计算好订单日报了
|
||||
* http://localhost:8080/temp/orderSplittingOperations
|
||||
*
|
||||
* @return
|
||||
@@ -421,6 +422,18 @@ public class TempController extends BaseController {
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 更新会员的余额充值记录
|
||||
*/
|
||||
public RestApiResponse<?> updateMemberAdapayRecord(ApplyRefundDTO dto) {
|
||||
try {
|
||||
List<String> memberIdList = dto.getMemberIdList();
|
||||
for (String memberId : memberIdList) {
|
||||
tempService.updateMemberAdapayRecord(memberId);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
logger.error("批量订单退款error", e);
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -441,4 +441,10 @@ public class TempService {
|
||||
// logger.info("批量进行问题订单退款,orderCode:{}, result:{}", orderBasicInfo.getOrderCode(), JSON.toJSONString(result));
|
||||
}
|
||||
}
|
||||
|
||||
public void updateMemberAdapayRecord(String memberId) {
|
||||
// 查询
|
||||
List<MemberAdapayRecord> memberAdapayRecordList = memberAdapayRecordService.selectAdapayRecordList(memberId, ScenarioEnum.BALANCE.getValue());
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,6 @@ import com.google.common.collect.Lists;
|
||||
import com.google.common.collect.Maps;
|
||||
import com.huifu.adapay.core.exception.BaseAdaPayException;
|
||||
import com.jsowell.adapay.dto.QueryPaymentConfirmDTO;
|
||||
import com.jsowell.adapay.operation.PaymentConfirmOperation;
|
||||
import com.jsowell.adapay.operation.PaymentReverseOperation;
|
||||
import com.jsowell.adapay.response.PaymentConfirmResponse;
|
||||
import com.jsowell.adapay.response.PaymentReverseResponse;
|
||||
@@ -1435,16 +1434,17 @@ public class OrderBasicInfoServiceImpl implements IOrderBasicInfoService {
|
||||
BigDecimal deductionAmount = vo.getDeductionAmount();
|
||||
|
||||
// 延时分账,使用确认交易API
|
||||
// PaymentConfirmResponse paymentConfirmResponse = adapayService.createPaymentConfirmRequest(paymentId, adapayMemberAccount, deductionAmount, orderCode, wechatAppId);
|
||||
PaymentConfirmResponse paymentConfirmResponse = adapayService.createPaymentConfirmRequest(paymentId,
|
||||
adapayMemberAccount, deductionAmount, orderCode, wechatAppId);
|
||||
|
||||
// 换新的方法,逻辑不变,参数封装了
|
||||
PaymentConfirmOperation operation = new PaymentConfirmOperation();
|
||||
operation.setPaymentId(paymentId);
|
||||
operation.setConfirmAmt(deductionAmount);
|
||||
operation.setOrderCode(orderCode);
|
||||
operation.setAdapayMemberId(adapayMemberAccount.getAdapayMemberId());
|
||||
operation.setMerchantKey(wechatAppId);
|
||||
PaymentConfirmResponse paymentConfirmResponse = adapayService.createPaymentConfirmRequest(operation);
|
||||
// PaymentConfirmOperation operation = new PaymentConfirmOperation();
|
||||
// operation.setPaymentId(paymentId);
|
||||
// operation.setConfirmAmt(deductionAmount);
|
||||
// operation.setOrderCode(orderCode);
|
||||
// operation.setAdapayMemberId(adapayMemberAccount.getAdapayMemberId());
|
||||
// operation.setMerchantKey(wechatAppId);
|
||||
// PaymentConfirmResponse paymentConfirmResponse = adapayService.createPaymentConfirmRequest(operation);
|
||||
|
||||
if (paymentConfirmResponse != null && paymentConfirmResponse.isNotFailed()) {
|
||||
confirmAmt = confirmAmt.add(new BigDecimal(paymentConfirmResponse.getConfirm_amt()));
|
||||
@@ -1566,15 +1566,16 @@ public class OrderBasicInfoServiceImpl implements IOrderBasicInfoService {
|
||||
BigDecimal settleAmount = orderBasicInfo.getSettleAmount();
|
||||
|
||||
// 调汇付的分账接口 确认交易
|
||||
// PaymentConfirmResponse paymentConfirmResponse = adapayService.createPaymentConfirmRequest(paymentId, adapayMemberAccount, settleAmount, orderCode, wechatAppId);
|
||||
PaymentConfirmResponse paymentConfirmResponse = adapayService.createPaymentConfirmRequest(paymentId,
|
||||
adapayMemberAccount, settleAmount, orderCode, wechatAppId);
|
||||
|
||||
PaymentConfirmOperation operation = new PaymentConfirmOperation();
|
||||
operation.setPaymentId(paymentId);
|
||||
operation.setConfirmAmt(settleAmount);
|
||||
operation.setOrderCode(orderCode);
|
||||
operation.setAdapayMemberId(adapayMemberAccount.getAdapayMemberId());
|
||||
operation.setMerchantKey(wechatAppId);
|
||||
PaymentConfirmResponse paymentConfirmResponse = adapayService.createPaymentConfirmRequest(operation);
|
||||
// PaymentConfirmOperation operation = new PaymentConfirmOperation();
|
||||
// operation.setPaymentId(paymentId);
|
||||
// operation.setConfirmAmt(settleAmount);
|
||||
// operation.setOrderCode(orderCode);
|
||||
// operation.setAdapayMemberId(adapayMemberAccount.getAdapayMemberId());
|
||||
// operation.setMerchantKey(wechatAppId);
|
||||
// PaymentConfirmResponse paymentConfirmResponse = adapayService.createPaymentConfirmRequest(operation);
|
||||
|
||||
|
||||
// 分账接口返回的信息
|
||||
|
||||
Reference in New Issue
Block a user