Commit d740690d by gaowenzheng

Merge branch '电子发票' into qa

parents fae42f91 a0eb79d7
...@@ -279,6 +279,7 @@ public class OrderCallBackMQService { ...@@ -279,6 +279,7 @@ public class OrderCallBackMQService {
wechatReportOrderDto.setUserAmount(userAmount > 0 ? userAmount : orderInfoReqs.getSettlementAmount().intValue()); wechatReportOrderDto.setUserAmount(userAmount > 0 ? userAmount : orderInfoReqs.getSettlementAmount().intValue());
wechatReportOrderDto.setOutOrderNo(orderInfoReqs.getOrderCode()); wechatReportOrderDto.setOutOrderNo(orderInfoReqs.getOrderCode());
wechatReportOrderDto.setTransactionId(orderExtInfoDto.getPaid_no()); wechatReportOrderDto.setTransactionId(orderExtInfoDto.getPaid_no());
wechatReportOrderDto.setOrderDetailPath(orderExtInfoDto.getOrderDetailPath());
wechatReportOrderDto.setOutTradeNo(orderExtInfoDto.getPayTransId()); wechatReportOrderDto.setOutTradeNo(orderExtInfoDto.getPayTransId());
// 计算优惠金额 // 计算优惠金额
......
...@@ -102,4 +102,9 @@ public class OrderExtInfoDto { ...@@ -102,4 +102,9 @@ public class OrderExtInfoDto {
* 扫呗商户号 新支付服务做中转使用 * 扫呗商户号 新支付服务做中转使用
*/ */
private String terminalId; private String terminalId;
/**
* 订单详情页地址
*/
private String orderDetailPath;
} }
...@@ -115,7 +115,10 @@ public class WechatReportOrderDto { ...@@ -115,7 +115,10 @@ public class WechatReportOrderDto {
private String ticketNo; private String ticketNo;
//订单修改时间 //订单修改时间
private Long gmtModified; private Long gmtModified;
/**
* 订单详情页地址
*/
private String orderDetailPath;
private List<AccountBean> accountList; private List<AccountBean> accountList;
......
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