Commit ea6d43cd by zhiheng.zhang

Merge remote-tracking branch 'origin/qa' into qa

parents 8726da86 82b85bdc
......@@ -200,7 +200,7 @@ public class QueryOrdersResponseDto {
private List<OrderCostResp> orderCostDetailList;
private List<QueryOrdersResponse.DataBean.OrderBean.OrderPayItem> orderPayItem;
private Integer abnormalState;
/**
* 订单操作状态(从订单操作历史表中获取)
*/
......
......@@ -3701,6 +3701,10 @@ public class OrderServiceImpl implements Orderservice {
public void timeOutRefund(QueryOrdersResponseDto.DataBean.OrderBean orderBean) {
//调用支付退款
log.info("payment timeout callback for refund orderDto={}",JSON.toJSONString(orderBean));
Integer abState = 4;
if (abState.equals(orderBean.getAbnormalState())) {
return;
}
com.freemud.application.sdk.api.base.BaseResponse<OrderRefundResponse> response = null;
Long refundId = System.currentTimeMillis();
OrderExtInfoDto orderExtInfoDTO = gson.fromJson(orderBean.getExtInfo(), OrderExtInfoDto.class);
......
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