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

Commit 0c2620ca authored by 胡佳晨's avatar 胡佳晨

alipay 扫码退款

parent 3e37be3b
...@@ -57,6 +57,8 @@ public class GoblinStoreOrderServiceImpl implements IGoblinStoreOrderService { ...@@ -57,6 +57,8 @@ public class GoblinStoreOrderServiceImpl implements IGoblinStoreOrderService {
private String synUrl; private String synUrl;
@Value("${liquidnet.service.dragon.urls.refundApply}") @Value("${liquidnet.service.dragon.urls.refundApply}")
private String refundApply; private String refundApply;
@Value("${liquidnet.service.dragon.urls.refundResult}")
private String refundApplyCallBack;
@Override @Override
public ResponseDto<PageInfo<GoblinStoreOrderListVo>> orderList(Integer page, String orderCode, Integer type, String cst, String cet, String expressContacts, String phone, Integer status) { public ResponseDto<PageInfo<GoblinStoreOrderListVo>> orderList(Integer page, String orderCode, Integer type, String cst, String cet, String expressContacts, String phone, Integer status) {
...@@ -728,7 +730,7 @@ public class GoblinStoreOrderServiceImpl implements IGoblinStoreOrderService { ...@@ -728,7 +730,7 @@ public class GoblinStoreOrderServiceImpl implements IGoblinStoreOrderService {
params.add("paymentId", orderVo.getPaymentId()); params.add("paymentId", orderVo.getPaymentId());
MultiValueMap<String, String> headers = CollectionUtil.linkedMultiValueMapStringString(); MultiValueMap<String, String> headers = CollectionUtil.linkedMultiValueMapStringString();
headers.add("Accept", "application/json;charset=UTF-8"); headers.add("Accept", "application/json;charset=UTF-8");
String returnString = HttpUtil.post(refundApply, params, headers); String returnString = HttpUtil.post(refundApplyCallBack, params, headers);
log.debug("REFUND CALLBACK DATA = " + returnString); log.debug("REFUND CALLBACK DATA = " + returnString);
return returnString; return returnString;
} }
......
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