记得上下班打卡 | git大法好,push需谨慎

Commit c33f7fff authored by jiangxiulong's avatar jiangxiulong

超时退款 log

parent e4e8243d
......@@ -60,6 +60,8 @@ public class KylinRefundsStatusServiceImpl {
BigDecimal RefundPriceExpress,
List<String> ticketEntityIds, List<BigDecimal> entitiesPrice, String paymentId,String paymentType
) {
log.info("订单超时支付refundApply-orderTicketRefunding:[orderInfo={}, [orderTicketsId={}, RefundPriceExpress={}, ticketEntityIds={}, [entitiesPrice={}, paymentId={}, paymentType={}]",
orderInfo, orderTicketsId, RefundPriceExpress, ticketEntityIds, entitiesPrice, paymentId, paymentType);
if (CollectionUtil.isEmpty(ticketEntityIds)) {
return false;
}
......
......@@ -43,8 +43,8 @@ public class OrderRefundOvertimeServiceImpl implements IKylinOrderRefundsService
@Value("${liquidnet.service.candy.url}")
private String candyUrl;
public Boolean refundApply(String orderTicketsId,String paymentId,String paymentType) {
log.info("订单超时支付refundApply-Start:[orderTicketsId=[{}], [paymentId=[{}], paymentType=[{}]",
public Boolean refundApply(String orderTicketsId, String paymentId, String paymentType) {
log.info("订单超时支付refundApply-Start:[orderTicketsId={}, [paymentId={}, paymentType={}]",
orderTicketsId, paymentId, paymentType);
KylinOrderTicketVo orderInfo = dataUtils.getOrderTicketVo(orderTicketsId);
// 快递费 未进行判断
......@@ -68,7 +68,7 @@ public class OrderRefundOvertimeServiceImpl implements IKylinOrderRefundsService
boolean res = kylinRefundsStatusServiceImpl.orderTicketRefunding(
orderInfo, orderTicketsId,
RefundPriceExpress,
ticketEntityIds, entitiesPrice,paymentId,paymentType
ticketEntityIds, entitiesPrice, paymentId, paymentType
);
if (res) {
// 超时直接退还库存
......@@ -90,7 +90,7 @@ public class OrderRefundOvertimeServiceImpl implements IKylinOrderRefundsService
headers.add("Accept", "application/json;charset=UTF-8");
String returnData = HttpUtil.post(candyUrl + "/candy-coupon/useBack", params, headers);
log.info("超时支付退款退券结果:{}", returnData);
log.info("订单超时支付refundApply-退券结果:[returnData={}]", returnData);
}
return true;
} else {
......@@ -99,7 +99,7 @@ public class OrderRefundOvertimeServiceImpl implements IKylinOrderRefundsService
}
@Override
public String getOrderRefundCode(String orderRefundCode,int type) {
public String getOrderRefundCode(String orderRefundCode, int type) {
return null;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment