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
b3d68739
Commit
b3d68739
authored
Mar 19, 2025
by
honghy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug316 对存在路线重量超限异常的订单修改渠道后,无法审批通过
parent
3eb717d3
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 @
b3d68739
...
@@ -1449,6 +1449,8 @@ public class OrderExceptionServiceImpl extends AbstractService<OrderExceptionMap
...
@@ -1449,6 +1449,8 @@ public class OrderExceptionServiceImpl extends AbstractService<OrderExceptionMap
}
else
if
(
vo
.
getOrderExceptionHandlerResult
().
equals
(
OrderExceptionResult
.
LINE_WEIGHT_EXCEPTION_RESULT
.
NOT_ALLOW_OVER
))
{
}
else
if
(
vo
.
getOrderExceptionHandlerResult
().
equals
(
OrderExceptionResult
.
LINE_WEIGHT_EXCEPTION_RESULT
.
NOT_ALLOW_OVER
))
{
orderExceptionDO
.
setOrderExceptionStatus
(
1
);
orderExceptionDO
.
setOrderExceptionStatus
(
1
);
}
else
if
(
vo
.
getOrderExceptionHandlerResult
().
equals
(
OrderExceptionResult
.
LINE_WEIGHT_EXCEPTION_RESULT
.
CONFIRMED_SEND
)){
orderExceptionDO
.
setOrderExceptionStatus
(
2
);
}
else
{
}
else
{
throw
exception
(
ORDER_HANDLER_EXCEPTION_NOT_EXISTS
);
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 @
b3d68739
...
@@ -2254,7 +2254,7 @@ public class OrderWarehouseInServiceImpl extends AbstractService<OrderWarehouseI
...
@@ -2254,7 +2254,7 @@ public class OrderWarehouseInServiceImpl extends AbstractService<OrderWarehouseI
private
boolean
isNoSameOrderException
(
Long
orderId
,
Long
orderItemId
,
String
descZh
,
String
descEn
,
OrderExceptionEnum
orderExceptionEnum
)
{
private
boolean
isNoSameOrderException
(
Long
orderId
,
Long
orderItemId
,
String
descZh
,
String
descEn
,
OrderExceptionEnum
orderExceptionEnum
)
{
boolean
noSameException
=
true
;
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
))
{
if
(
CollectionUtil
.
isNotEmpty
(
heavyExceptionList
))
{
OrderExceptionDO
orderExceptionDO
=
heavyExceptionList
.
get
(
0
);
OrderExceptionDO
orderExceptionDO
=
heavyExceptionList
.
get
(
0
);
if
(
StringUtils
.
isNotEmpty
(
orderExceptionDO
.
getOrderExceptionRemark
()))
{
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