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
89d0ca5a
Commit
89d0ca5a
authored
Sep 13, 2024
by
chenjiuping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
异常订单备案查询条件错误
parent
3379e228
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
OrderExceptionServiceImpl.java
...der/service/orderException/OrderExceptionServiceImpl.java
+3
-3
OrderExceptionQueryVO.java
...module/order/vo/orderException/OrderExceptionQueryVO.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 @
89d0ca5a
...
...
@@ -493,7 +493,7 @@ public class OrderExceptionServiceImpl extends AbstractService<OrderExceptionMap
queryWrapper
.
in
(
null
!=
reqVo
.
getGoodsTypes
(),
"m.prod_type"
,
reqVo
.
getGoodsTypes
());
//备案
queryWrapper
.
in
(
null
!=
reqVo
.
getProductRecord
s
(),
"o.product_record"
,
reqVo
.
getProductRecords
());
queryWrapper
.
in
(
null
!=
reqVo
.
getProductRecord
(),
"o.product_record"
,
reqVo
.
getProductRecord
());
queryWrapper
.
orderByDesc
(
"e.id"
);
...
...
@@ -2601,7 +2601,7 @@ public class OrderExceptionServiceImpl extends AbstractService<OrderExceptionMap
//商品类型
queryWrapper
.
in
(
null
!=
reqVo
.
getGoodsTypes
(),
"m.prod_type"
,
reqVo
.
getGoodsTypes
());
//备案
queryWrapper
.
in
(
null
!=
reqVo
.
getProductRecord
s
(),
"a.product_record"
,
reqVo
.
getProductRecords
());
queryWrapper
.
in
(
null
!=
reqVo
.
getProductRecord
(),
"a.product_record"
,
reqVo
.
getProductRecord
());
queryWrapper
.
orderByDesc
(
"b.id"
);
...
...
@@ -2724,7 +2724,7 @@ public class OrderExceptionServiceImpl extends AbstractService<OrderExceptionMap
queryWrapper
.
in
(
null
!=
reqVo
.
getGoodsTypes
(),
"m.prod_type"
,
reqVo
.
getGoodsTypes
());
//备案
queryWrapper
.
in
(
null
!=
reqVo
.
getProductRecord
s
(),
"o.product_record"
,
reqVo
.
getProductRecords
());
queryWrapper
.
in
(
null
!=
reqVo
.
getProductRecord
(),
"o.product_record"
,
reqVo
.
getProductRecord
());
StatisticsOrderVO
vo
=
orderExceptionMapper
.
statisticsExceptionOrder
(
queryWrapper
,
reqVo
.
getOrderExceptionType
(),
startTime
,
endTime
);
if
(
Objects
.
nonNull
(
vo
))
{
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/orderException/OrderExceptionQueryVO.java
View file @
89d0ca5a
...
...
@@ -120,5 +120,5 @@ public class OrderExceptionQueryVO {
private
List
<
Long
>
goodsTypes
;
@ApiModelProperty
(
value
=
"备案"
)
private
List
<
Integer
>
productRecord
s
;
private
List
<
Integer
>
productRecord
;
}
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