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

Commit 4ee36e57 authored by zhengfuxin's avatar zhengfuxin

Merge branch 'douYinPay' of gitlab.zhengzai.tv:dongjingwei/liquidnet-bus-v1 into dev_douYinPay

parents e2a0cc19 6b25c391
......@@ -13,6 +13,7 @@ public class PayInnerResultVo implements Serializable,Cloneable {
private String orderCode;
private Integer status;
private String orderId;
private String payType;
private String showUrl;
private String returnUrl;
private BigDecimal price;
......
......@@ -630,6 +630,7 @@ public class KylinOrderTicketsServiceImpl implements IKylinOrderTicketsOrderServ
log.info("调用 DRAGON 结果 = " + returnData);
payResultVo = JsonUtils.fromJson(returnData, PayResultVo.class);
payResultVo.getData().setOrderId(orderTicketId);
payResultVo.getData().setPayType(orderTickets.getPayType());
payResultVo.getData().setPrice(orderTickets.getPriceActual());
orderTickets.setPayCode(payResultVo.getData().getCode());
if (payOrderParam.getPayType().equals("alipay") && payOrderParam.getDeviceFrom().equals("wap")) {
......@@ -644,6 +645,7 @@ public class KylinOrderTicketsServiceImpl implements IKylinOrderTicketsOrderServ
PayInnerResultVo payInnerResultVo = PayInnerResultVo.getNew();
payInnerResultVo.setPrice(BigDecimal.valueOf(0));
payInnerResultVo.setOrderId(orderTickets.getOrderTicketsId());
payInnerResultVo.setPayType(orderTickets.getPayType());
payResultVo.setData(payInnerResultVo);
}
......
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