Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MultipleSourceSecurity
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
周宗顺
MultipleSourceSecurity
Commits
54e51e85
Commit
54e51e85
authored
Nov 23, 2025
by
Allen Chen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit
parent
65c465c7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
PddLocalController.java
.../java/org/ta/pddserver/controller/PddLocalController.java
+3
-1
No files found.
PddServer/src/main/java/org/ta/pddserver/controller/PddLocalController.java
View file @
54e51e85
...
...
@@ -476,6 +476,7 @@ public class PddLocalController {
PddServiceConsoInboundRequest
notifyRequest
=
new
PddServiceConsoInboundRequest
();
// 查询orderNO 下所有mailNo,判断是全部还是部分
Long
unNum
=
logOrderMailDetailImpl
.
getSumByCodeStatus
(
mailNoResponse
.
getLogisticsOrderCode
(),
(
long
)
StatusEnum
.
SIGNED
.
getCode
());
unNum
+=
logOrderMailDetailImpl
.
getSumByCodeStatus
(
mailNoResponse
.
getLogisticsOrderCode
(),
(
long
)
StatusEnum
.
ORDERCREATE
.
getCode
());
LogOrderEntity
logOrderEntity
=
logOrderImpl
.
getByOrderCode
(
mailNoResponse
.
getLogisticsOrderCode
());
Long
num
=
(
long
)
logOrderEntity
.
getNum
();
log
.
info
(
"已入库数量 {} ; 未入库数量 {}"
,
num
,
unNum
);
...
...
@@ -488,6 +489,7 @@ public class PddLocalController {
num
+=
1
;
mailNoResponse
.
setEnterTime
(
TimeTool
.
getNowDate
());
mailNoResponse
.
setStatus
(
StatusEnum
.
INBOUND
.
getCode
());
unNum
-=
1
;
}
notifyRequest
.
setPackageQuantity
(
num
);
mailNoResponse
.
setLength
(
inBoundRequest
.
getLength
().
intValue
());
...
...
@@ -501,7 +503,7 @@ public class PddLocalController {
notifyRequest
.
setTimeZone
(
"UTC+8"
);
if
(
notifyRequest
.
getPackageQuantity
()
==
num
)
{
if
(
unNum
<=
0
)
{
notifyRequest
.
setStatus
(
"FULL_INBOUND"
);
}
else
{
notifyRequest
.
setStatus
(
"PART_INBOUND"
);
...
...
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