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
a3b9cf25
Commit
a3b9cf25
authored
Dec 26, 2024
by
zhengyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单修改审批将无收货人修改为有收货人时保存收货人信息bug修复
parent
da431668
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
OrderServiceImpl.java
...dao/module/order/service/order/impl/OrderServiceImpl.java
+4
-3
No files found.
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/service/order/impl/OrderServiceImpl.java
View file @
a3b9cf25
...
...
@@ -2747,8 +2747,8 @@ public class OrderServiceImpl extends AbstractService<OrderMapper, OrderDO> impl
}
infoVO
=
new
ApplyInfoVO
();
infoVO
.
setName
(
"收货人电话/Consignee's phone number"
);
infoVO
.
setOrgValue
(
"+"
+
orderConsigneeBackVO
.
getCountryCode
()
+
orderConsigneeBackVO
.
getPhone
(
));
infoVO
.
setNewValue
(
"+"
+
consigneeContactsDO
.
getAreaCode
()
+
consigneeContactsDO
.
getPhoneNew
(
));
infoVO
.
setOrgValue
(
StringUtils
.
isBlank
(
orderConsigneeBackVO
.
getPhone
())?
"空"
:
(
"+"
+
orderConsigneeBackVO
.
getCountryCode
()
+
orderConsigneeBackVO
.
getPhone
()
));
infoVO
.
setNewValue
(
StringUtils
.
isBlank
(
consigneeContactsDO
.
getPhoneNew
())?
"空"
:
(
"+"
+
consigneeContactsDO
.
getAreaCode
()
+
consigneeContactsDO
.
getPhoneNew
()
));
orderConsigneeBackVO
.
setCountryCode
(
consigneeContactsDO
.
getAreaCode
());
orderConsigneeBackVO
.
setPhone
(
consigneeContactsDO
.
getPhoneNew
());
applyInfoList
.
add
(
infoVO
);
...
...
@@ -5878,7 +5878,8 @@ public class OrderServiceImpl extends AbstractService<OrderMapper, OrderDO> impl
}
}
else
{
if
(
Objects
.
nonNull
(
consigneeDO
))
{
orderConsigneeService
.
updateById
(
consigneeDO
);
// 这里可能是由无收货人修改为有收货人,主键id为null
orderConsigneeService
.
saveOrUpdate
(
consigneeDO
);
if
(
orderBackVO
.
getIsCargoControl
())
{
// 控货订单有收货人则限制修改收货人
isLimitUpdateConsignee
=
Boolean
.
TRUE
;
...
...
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