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

Commit 00ab7a61 authored by 胡佳晨's avatar 胡佳晨

修改 order

parent b7b6efa0
...@@ -298,7 +298,7 @@ public class DragonOrderRefundsServiceImpl implements IDragonOrderRefundsService ...@@ -298,7 +298,7 @@ public class DragonOrderRefundsServiceImpl implements IDragonOrderRefundsService
// 创建退款日志 // 创建退款日志
mqHandleUtil.sendMySqlRedis( mqHandleUtil.sendMySqlRedis(
SqlMapping.get("dragon_order_refund_log.insert"), SqlMapping.get("dragon_order_refund_log.insert"),
new Object[]{orderRefundId, paymentType, JSON.toJSONString(response.getBody()), nowTime, nowTime}, new Object[]{orderRefundId, paymentType, response.getBody(), nowTime, nowTime},
DragonConstant.MysqlRedisQueueEnum.DRAGON_REFUND_KEY.getCode() DragonConstant.MysqlRedisQueueEnum.DRAGON_REFUND_KEY.getCode()
); );
try { try {
...@@ -437,7 +437,7 @@ public class DragonOrderRefundsServiceImpl implements IDragonOrderRefundsService ...@@ -437,7 +437,7 @@ public class DragonOrderRefundsServiceImpl implements IDragonOrderRefundsService
mqHandleUtil.sendMySqlRedis( mqHandleUtil.sendMySqlRedis(
SqlMapping.get("dragon_order_refund_log.insert"), SqlMapping.get("dragon_order_refund_log.insert"),
new Object[]{response.getOutRequestNo(), response.getRefundReason(), jsonStr, nowTime, nowTime}, new Object[]{response.getOutRequestNo(), "ALIPAY", jsonStr, nowTime, nowTime},
DragonConstant.MysqlRedisQueueEnum.DRAGON_REFUND_KEY.getCode() DragonConstant.MysqlRedisQueueEnum.DRAGON_REFUND_KEY.getCode()
); );
log.debug("SEND MQ INSERT"); log.debug("SEND MQ INSERT");
......
...@@ -560,7 +560,7 @@ public class KylinOrderTicketsServiceImpl implements IKylinOrderTicketsOrderServ ...@@ -560,7 +560,7 @@ public class KylinOrderTicketsServiceImpl implements IKylinOrderTicketsOrderServ
currentTime = System.currentTimeMillis() - currentTime; currentTime = System.currentTimeMillis() - currentTime;
log.debug("调用 PHP 支付 -> time:" + (currentTime) + "毫秒"); log.debug("调用 PHP 支付 -> time:" + (currentTime) + "毫秒");
PayResultVo payResultVo = JsonUtils.fromJson(returnData, PayResultVo.class); PayResultVo payResultVo = JsonUtils.fromJson(returnData, PayResultVo.class);
log.debug("调用 PHP 支付 结果 -> time:" +JSON.toJSONString(payResultVo)); log.debug("调用 PHP 支付 结果 -> " +JSON.toJSONString(payResultVo));
payResultVo.getData().setOrderId(orderTicketId); payResultVo.getData().setOrderId(orderTicketId);
payResultVo.getData().setPrice(orderTickets.getPriceActual()); payResultVo.getData().setPrice(orderTickets.getPriceActual());
orderTickets.setPayCode(payResultVo.getData().getCode()); orderTickets.setPayCode(payResultVo.getData().getCode());
......
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