Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-api-boot-master
Commits
5af27caf
Commit
5af27caf
authored
Aug 30, 2024
by
332784038@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
兼容收货人限制修改申请审批的历史数据bug
parent
e148f096
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
OrderCargoControlServiceImpl.java
...rvice/orderCargoControl/OrderCargoControlServiceImpl.java
+7
-7
No files found.
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/service/orderCargoControl/OrderCargoControlServiceImpl.java
View file @
5af27caf
...
...
@@ -497,20 +497,20 @@ public class OrderCargoControlServiceImpl extends AbstractService<OrderCargoCont
if
(
orderApprovalDO
.
getType
()
==
61
)
{
msg
=
result
==
4
?
"收货人限制修改申请取消"
:
"收货人限制修改申请拒绝"
;
ApplyInfoVO
applyInfoVO
;
if
(
applyV
O
.
getIsLimitUpdateConsignee
()
!=
applyVO
.
getNewIsLimitUpdateConsignee
())
{
if
(
orderD
O
.
getIsLimitUpdateConsignee
()
!=
applyVO
.
getNewIsLimitUpdateConsignee
())
{
applyInfoVO
=
new
ApplyInfoVO
();
applyInfoVO
.
setName
(
"是否限制修改收货人"
);
applyInfoVO
.
setOrgValue
(
applyV
O
.
getIsLimitUpdateConsignee
()
?
"是"
:
"否"
);
applyInfoVO
.
setOrgValue
(
orderD
O
.
getIsLimitUpdateConsignee
()
?
"是"
:
"否"
);
applyInfoVO
.
setNewValue
(
applyVO
.
getNewIsLimitUpdateConsignee
()
?
"是"
:
"否"
);
list
.
add
(
applyInfoVO
);
}
if
((
Objects
.
nonNull
(
applyV
O
.
getLockConsigneeDay
())
&&
Objects
.
nonNull
(
applyVO
.
getNewLockConsigneeDay
())
&&
!
Objects
.
equals
(
applyV
O
.
getLockConsigneeDay
(),
applyVO
.
getNewLockConsigneeDay
()))
||
(
Objects
.
isNull
(
applyV
O
.
getLockConsigneeDay
())
&&
Objects
.
nonNull
(
applyVO
.
getNewLockConsigneeDay
()))
||
(
Objects
.
nonNull
(
applyV
O
.
getLockConsigneeDay
())
&&
Objects
.
isNull
(
applyVO
.
getNewLockConsigneeDay
())))
{
if
((
Objects
.
nonNull
(
orderD
O
.
getLockConsigneeDay
())
&&
Objects
.
nonNull
(
applyVO
.
getNewLockConsigneeDay
())
&&
!
Objects
.
equals
(
orderD
O
.
getLockConsigneeDay
(),
applyVO
.
getNewLockConsigneeDay
()))
||
(
Objects
.
isNull
(
orderD
O
.
getLockConsigneeDay
())
&&
Objects
.
nonNull
(
applyVO
.
getNewLockConsigneeDay
()))
||
(
Objects
.
nonNull
(
orderD
O
.
getLockConsigneeDay
())
&&
Objects
.
isNull
(
applyVO
.
getNewLockConsigneeDay
())))
{
applyInfoVO
=
new
ApplyInfoVO
();
applyInfoVO
.
setName
(
"锁定收货人天数"
);
applyInfoVO
.
setOrgValue
(
Objects
.
isNull
(
applyVO
.
getLockConsigneeDay
())
?
"空"
:
applyV
O
.
getLockConsigneeDay
()
+
"天"
);
applyInfoVO
.
setOrgValue
(
Objects
.
isNull
(
orderDO
.
getLockConsigneeDay
())
?
"空"
:
orderD
O
.
getLockConsigneeDay
()
+
"天"
);
applyInfoVO
.
setNewValue
(
Objects
.
isNull
(
applyVO
.
getNewLockConsigneeDay
())
?
"空"
:
applyVO
.
getNewLockConsigneeDay
()
+
"天"
);
list
.
add
(
applyInfoVO
);
}
...
...
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