Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
order-group
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
order-group-application
order-group
Commits
a5526c7b
Commit
a5526c7b
authored
May 22, 2020
by
雷后领
Browse files
Options
Browse Files
Download
Plain Diff
新增配送渠道
parents
60cbeabe
27498bf2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
5 deletions
+26
-5
assortment-ordercenter-sdk/readme.md
+3
-2
assortment-ordercenter-sdk/src/main/java/com/freemud/sdk/api/assortment/order/adapter/OrderSdkAdapter.java
+3
-2
assortment-ordercenter-sdk/src/main/java/com/freemud/sdk/api/assortment/order/response/order/QueryOrdersResponse.java
+6
-1
pom.xml
+14
-0
No files found.
assortment-ordercenter-sdk/readme.md
View file @
a5526c7b
...
...
@@ -46,4 +46,5 @@
| 1.4.8.RELEASE | 规范orderExtInfoDto | 侯书虎 | 2020-05-19 |
| 1.3.4-SNAPSHOT | 返回售后单创建时间 | wuping | 2020-04-27 |
| 1.3.5-SNAPSHOT | 取消订单增加任务 | wuping | 2020-04-28 |
| 1.4.9.RELEASE | 售后单任务 | wuping | 2020-05-21 |
\ No newline at end of file
| 1.4.9.RELEASE | 售后单任务 | wuping | 2020-05-21 |
| 1.7.1-SNAPSHOT| 订单查询返回配送渠道字段 | 雷后领 | 2020-05-14 |
\ No newline at end of file
assortment-ordercenter-sdk/src/main/java/com/freemud/sdk/api/assortment/order/adapter/OrderSdkAdapter.java
View file @
a5526c7b
...
...
@@ -994,11 +994,11 @@ public class OrderSdkAdapter {
//运单相关信息
data
.
setDeliverStatus
(
orderInfoReqs
.
getDeliveryState
()
!=
null
?
orderInfoReqs
.
getDeliveryState
()
:
0
);
data
.
setReceiveTime
(
""
);
data
.
setReceiveTime
(
orderInfoReqs
.
getReceiveTime
()
);
data
.
setDepatchTime
(
""
);
data
.
setArriveShopTime
(
""
);
data
.
setSendTime
(
""
);
data
.
setCompleteTime
(
""
);
data
.
setCompleteTime
(
orderInfoReqs
.
getReceiveTime
()
);
data
.
setParentCode
(
orderInfoReqs
.
getParentCode
());
data
.
setIsParent
(
orderInfoReqs
.
getIsParent
());
data
.
setBizType
(
orderInfoReqs
.
getBizType
());
...
...
@@ -1021,6 +1021,7 @@ public class OrderSdkAdapter {
data
.
setOrderOperationHistoryList
(
getOrderOperationHistory
(
orderInfoReqs
.
getOrderOperationHistoryList
()));
data
.
setApportionDetails
(
getApportionDetails
(
orderInfoReqs
));
data
.
setOrderCostDetailList
(
orderInfoReqs
.
getOrderCostDetailList
());
data
.
setExpressChannelName
(
orderInfoReqs
.
getExpressChannelName
());
return
data
;
}
...
...
assortment-ordercenter-sdk/src/main/java/com/freemud/sdk/api/assortment/order/response/order/QueryOrdersResponse.java
View file @
a5526c7b
...
...
@@ -289,7 +289,7 @@ public class QueryOrdersResponse {
*/
private
String
riderPhone
;
/**
*
系统接单
时间
*
签收时间 送达时间 收货
时间
*/
private
String
receiveTime
;
/**
...
...
@@ -334,6 +334,11 @@ public class QueryOrdersResponse {
*/
private
BigDecimal
weight
;
/**
* 配送渠道
*/
private
String
expressChannelName
;
@NoArgsConstructor
@Data
...
...
pom.xml
View file @
a5526c7b
...
...
@@ -222,4 +222,17 @@
</repository>
</repositories>
<build>
<plugins>
<!-- maven 打包时跳过测试 -->
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-surefire-plugin
</artifactId>
<configuration>
<skip>
true
</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment