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
c77db7d9
Commit
c77db7d9
authored
Mar 19, 2025
by
honghy
Committed by
wux
Mar 20, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug316 对存在路线重量超限异常的订单修改渠道后,无法审批通过
parent
355d67ee
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
OrderExceptionServiceImpl.java
...der/service/orderException/OrderExceptionServiceImpl.java
+2
-0
OrderWarehouseInServiceImpl.java
...service/orderWarehouseIn/OrderWarehouseInServiceImpl.java
+1
-1
No files found.
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/service/orderException/OrderExceptionServiceImpl.java
View file @
c77db7d9
...
...
@@ -1449,6 +1449,8 @@ public class OrderExceptionServiceImpl extends AbstractService<OrderExceptionMap
}
else
if
(
vo
.
getOrderExceptionHandlerResult
().
equals
(
OrderExceptionResult
.
LINE_WEIGHT_EXCEPTION_RESULT
.
NOT_ALLOW_OVER
))
{
orderExceptionDO
.
setOrderExceptionStatus
(
1
);
}
else
if
(
vo
.
getOrderExceptionHandlerResult
().
equals
(
OrderExceptionResult
.
LINE_WEIGHT_EXCEPTION_RESULT
.
CONFIRMED_SEND
)){
orderExceptionDO
.
setOrderExceptionStatus
(
2
);
}
else
{
throw
exception
(
ORDER_HANDLER_EXCEPTION_NOT_EXISTS
);
}
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/service/orderWarehouseIn/OrderWarehouseInServiceImpl.java
View file @
c77db7d9
...
...
@@ -2254,7 +2254,7 @@ public class OrderWarehouseInServiceImpl extends AbstractService<OrderWarehouseI
private
boolean
isNoSameOrderException
(
Long
orderId
,
Long
orderItemId
,
String
descZh
,
String
descEn
,
OrderExceptionEnum
orderExceptionEnum
)
{
boolean
noSameException
=
true
;
List
<
OrderExceptionDO
>
heavyExceptionList
=
orderExceptionService
.
getOrderExceptionByOrderIdAndOrderItemIdAndExceptionKey
(
orderId
,
orderItemId
,
orderExceptionEnum
.
getKey
());
List
<
OrderExceptionDO
>
heavyExceptionList
=
orderExceptionService
.
get
Pending
OrderExceptionByOrderIdAndOrderItemIdAndExceptionKey
(
orderId
,
orderItemId
,
orderExceptionEnum
.
getKey
());
if
(
CollectionUtil
.
isNotEmpty
(
heavyExceptionList
))
{
OrderExceptionDO
orderExceptionDO
=
heavyExceptionList
.
get
(
0
);
if
(
StringUtils
.
isNotEmpty
(
orderExceptionDO
.
getOrderExceptionRemark
()))
{
...
...
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