Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Q
qk_backend
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
quanku
qk_backend
Commits
3328891c
Commit
3328891c
authored
May 23, 2024
by
shiyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
中转单详情
parent
32381e30
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
ch-admin-api/src/main/java/com/wwdz/ch/admin/impl/SysIdentifyOrderServiceImpl.java
...a/com/wwdz/ch/admin/impl/SysIdentifyOrderServiceImpl.java
+5
-2
No files found.
ch-admin-api/src/main/java/com/wwdz/ch/admin/impl/SysIdentifyOrderServiceImpl.java
View file @
3328891c
...
@@ -176,10 +176,13 @@ public class SysIdentifyOrderServiceImpl implements SysIdentifyOrderService {
...
@@ -176,10 +176,13 @@ public class SysIdentifyOrderServiceImpl implements SysIdentifyOrderService {
//查询物流信息
//查询物流信息
String
fromLogisticsInfo
=
LogisticsEnum
.
getNameByCode
(
identifyOrder
.
getFromLogisticsCode
())
+
","
+
identifyOrder
.
getFromWaybill
();
String
fromLogisticsInfo
=
LogisticsEnum
.
getNameByCode
(
identifyOrder
.
getFromLogisticsCode
())
+
","
+
identifyOrder
.
getFromWaybill
();
String
deliveryLogisticsInfo
=
LogisticsEnum
.
getNameByCode
(
distributionOrder
.
getLogisticsCode
())
+
","
+
distributionOrder
.
getWaybill
();
String
deliveryLogisticsInfo
=
LogisticsEnum
.
getNameByCode
(
distributionOrder
.
getLogisticsCode
())
+
","
+
distributionOrder
.
getWaybill
();
if
(
identifyOrder
.
getApproved
()
!=
1
)
{
String
returnLogisticsInfo
=
LogisticsEnum
.
getNameByCode
(
identifyOrder
.
getOutLogisticsCode
())
+
","
+
identifyOrder
.
getOutWaybill
();
String
returnLogisticsInfo
=
LogisticsEnum
.
getNameByCode
(
identifyOrder
.
getOutLogisticsCode
())
+
","
+
identifyOrder
.
getOutWaybill
();
map
.
put
(
"returnLogisticsInfo"
,
returnLogisticsInfo
.
length
()
<
11
?
null
:
returnLogisticsInfo
);
}
map
.
put
(
"fromLogisticsInfo"
,
fromLogisticsInfo
.
length
()
<
11
?
null
:
fromLogisticsInfo
);
map
.
put
(
"fromLogisticsInfo"
,
fromLogisticsInfo
.
length
()
<
11
?
null
:
fromLogisticsInfo
);
map
.
put
(
"deliveryLogisticsInfo"
,
deliveryLogisticsInfo
.
length
()
<
11
?
null
:
deliveryLogisticsInfo
);
map
.
put
(
"deliveryLogisticsInfo"
,
deliveryLogisticsInfo
.
length
()
<
11
?
null
:
deliveryLogisticsInfo
);
map
.
put
(
"returnLogisticsInfo"
,
returnLogisticsInfo
.
length
()
<
11
?
null
:
returnLogisticsInfo
);
return
Result
.
success
(
map
);
return
Result
.
success
(
map
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
logger
.
error
(
"鉴定单详情 error:{}"
,
e
);
logger
.
error
(
"鉴定单详情 error:{}"
,
e
);
...
...
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