Commit 0cd3bd4c by 罗承锋

Merge remote-tracking branch 'origin/master'

parents c1e4718f a0c27372
...@@ -449,7 +449,8 @@ public class DankuanController { ...@@ -449,7 +449,8 @@ public class DankuanController {
HttpServletRequest request, HttpServletResponse response) throws Exception { HttpServletRequest request, HttpServletResponse response) throws Exception {
log.info("----------首先发送支付请求接口----------"); log.info("----------首先发送支付请求接口----------");
//查询订单信息 //查询订单信息
OrderView orderView = orderViewMapper.selectById(orderId); Order order = orderMapper.selectById(orderId);
OrderView orderView = orderViewMapper.selectById(order.getKdOrderId());
String uuid = UUID.randomUUID().toString(); String uuid = UUID.randomUUID().toString();
String id = uuid.split("-")[0] + uuid.split("-")[1]; String id = uuid.split("-")[0] + uuid.split("-")[1];
//修改支付方式 //修改支付方式
......
...@@ -434,7 +434,8 @@ public class RongHeController { ...@@ -434,7 +434,8 @@ public class RongHeController {
try{ try{
log.info("----------首先发送支付请求接口----------"); log.info("----------首先发送支付请求接口----------");
//查询订单信息 //查询订单信息
OrderView orderView = orderViewMapper.selectById(orderId); Order order = orderMapper.selectById(orderId);
OrderView orderView = orderViewMapper.selectById(order.getKdOrderId());
String uuid = UUID.randomUUID().toString(); String uuid = UUID.randomUUID().toString();
String id = uuid.split("-")[0] + uuid.split("-")[1]; String id = uuid.split("-")[0] + uuid.split("-")[1];
//修改支付方式 //修改支付方式
......
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