Commit 8a99be59 by shuhu.hou@freemud.cn

Merge branch 'feature/20200413_订单详情&下载'

# Conflicts:
#	assortment-ordercenter-sdk/pom.xml
parents f784b8f1 abbcf068
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>assortment-ordercenter-sdk</artifactId> <artifactId>assortment-ordercenter-sdk</artifactId>
<version>1.3.0.RELEASE</version> <version>1.3.1.RELEASE</version>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
......
...@@ -606,6 +606,8 @@ public class OrderSdkAdapter { ...@@ -606,6 +606,8 @@ public class OrderSdkAdapter {
accountBean.setSequence(orderSettlementResp.getProductSeq()); accountBean.setSequence(orderSettlementResp.getProductSeq());
accountBean.setType(getOldOrderAccountType(orderSettlementResp.getSettlementType())); accountBean.setType(getOldOrderAccountType(orderSettlementResp.getSettlementType()));
accountBean.setAddInfo(""); accountBean.setAddInfo("");
accountBean.setPlatformDiscountAmount(orderSettlementResp.getPlatformDiscountAmount());
accountBean.setShopDiscountAmount(orderSettlementResp.getShopDiscountAmount());
accountList.add(accountBean); accountList.add(accountBean);
} }
} }
......
...@@ -572,6 +572,11 @@ public class QueryOrdersResponse { ...@@ -572,6 +572,11 @@ public class QueryOrdersResponse {
* 自定义对象 * 自定义对象
*/ */
private String addInfo; private String addInfo;
//平台优惠
private Long platformDiscountAmount;
//商家优惠
private Long shopDiscountAmount;
} }
@NoArgsConstructor @NoArgsConstructor
......
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