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
27278b49
Commit
27278b49
authored
Sep 04, 2024
by
332784038@qq.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release-fix' into release
parents
a602ac10
501f413a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
35 deletions
+8
-35
OrderQueryVO.java
.../cn/iocoder/yudao/module/order/vo/order/OrderQueryVO.java
+8
-35
No files found.
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderQueryVO.java
View file @
27278b49
...
...
@@ -611,6 +611,7 @@ public class OrderQueryVO {
public
void
setAsStatusList
(
List
<
Integer
>
asStatusList
)
{
this
.
asStatusList
=
asStatusList
;
if
(
CollectionUtil
.
isNotEmpty
(
this
.
asStatusList
))
{
this
.
statusList
=
new
ArrayList
<>();
for
(
Integer
asStatus
:
asStatusList
)
{
combinedStateList
(
asStatus
,
this
.
transportId
);
}
...
...
@@ -619,6 +620,7 @@ public class OrderQueryVO {
public
void
setStatusList
(
List
<
Integer
>
statusList
)
{
this
.
asStatusList
=
statusList
;
if
(
CollectionUtil
.
isNotEmpty
(
this
.
asStatusList
))
{
this
.
statusList
=
new
ArrayList
<>();
for
(
Integer
asStatus
:
asStatusList
)
{
combinedStateList
(
asStatus
,
this
.
transportId
);
}
...
...
@@ -631,6 +633,7 @@ public class OrderQueryVO {
combinedState
(
this
.
asStatus
,
this
.
transportId
);
}
if
(
Objects
.
nonNull
(
transportId
)
&&
CollectionUtil
.
isNotEmpty
(
this
.
asStatusList
))
{
this
.
statusList
=
new
ArrayList
<>();
for
(
Integer
asStatus
:
asStatusList
)
{
combinedStateList
(
asStatus
,
this
.
transportId
);
}
...
...
@@ -706,9 +709,6 @@ public class OrderQueryVO {
private
void
combinedStateList
(
Integer
asStatus
,
Integer
transportId
)
{
switch
(
asStatus
)
{
case
12325
:
if
(
Objects
.
isNull
(
this
.
statusList
)){
this
.
statusList
=
new
ArrayList
<>();
}
if
(
Objects
.
isNull
(
this
.
shipmentStateList
)){
this
.
shipmentStateList
=
new
ArrayList
<>();
}
...
...
@@ -717,9 +717,6 @@ public class OrderQueryVO {
break
;
case
10501
:
// 空运待出
if
(
Objects
.
isNull
(
this
.
statusList
)){
this
.
statusList
=
new
ArrayList
<>();
}
if
(
Objects
.
isNull
(
this
.
airShipmentList
)){
this
.
airShipmentList
=
new
ArrayList
<>();
}
...
...
@@ -737,9 +734,6 @@ public class OrderQueryVO {
break
;
case
10502
:
// 空运可出
if
(
Objects
.
isNull
(
this
.
statusList
)){
this
.
statusList
=
new
ArrayList
<>();
}
if
(
Objects
.
isNull
(
this
.
airShipmentList
)){
this
.
airShipmentList
=
new
ArrayList
<>();
}
...
...
@@ -749,9 +743,6 @@ public class OrderQueryVO {
break
;
case
10503
:
// 空运已备货
if
(
Objects
.
isNull
(
this
.
statusList
)){
this
.
statusList
=
new
ArrayList
<>();
}
if
(
Objects
.
isNull
(
this
.
airShipmentList
)){
this
.
airShipmentList
=
new
ArrayList
<>();
}
...
...
@@ -761,9 +752,6 @@ public class OrderQueryVO {
break
;
case
10504
:
// 待排单
if
(
Objects
.
isNull
(
this
.
statusList
)){
this
.
statusList
=
new
ArrayList
<>();
}
if
(
Objects
.
isNull
(
this
.
airShipmentList
)){
this
.
airShipmentList
=
new
ArrayList
<>();
}
...
...
@@ -787,57 +775,42 @@ public class OrderQueryVO {
break
;
case
132411
:
// 空运已出货
if
(
Objects
.
isNull
(
this
.
statusList
)){
this
.
statusList
=
new
ArrayList
<>();
}
if
(
Objects
.
isNull
(
this
.
shipmentStateList
)){
this
.
shipmentStateList
=
new
ArrayList
<>();
}
this
.
statusList
.
add
(
32
);
this
.
shipmentStateList
.
add
(
411
);
this
.
transportId
=
3
;
// 空运待出查询,只查空运的订单
//
this.transportId = 3; // 空运待出查询,只查空运的订单
break
;
case
132412
:
// 空运已出仓
if
(
Objects
.
isNull
(
this
.
statusList
)){
this
.
statusList
=
new
ArrayList
<>();
}
if
(
Objects
.
isNull
(
this
.
shipmentStateList
)){
this
.
shipmentStateList
=
new
ArrayList
<>();
}
this
.
statusList
.
add
(
32
);
this
.
shipmentStateList
.
add
(
412
);
this
.
transportId
=
3
;
// 空运待出查询,只查空运的订单
//
this.transportId = 3; // 空运待出查询,只查空运的订单
break
;
case
132409
:
// 空运已理货
if
(
Objects
.
isNull
(
this
.
statusList
)){
this
.
statusList
=
new
ArrayList
<>();
}
if
(
Objects
.
isNull
(
this
.
shipmentStateList
)){
this
.
shipmentStateList
=
new
ArrayList
<>();
}
this
.
statusList
.
add
(
32
);
this
.
shipmentStateList
.
add
(
409
);
this
.
transportId
=
3
;
// 空运待出查询,只查空运的订单
//
this.transportId = 3; // 空运待出查询,只查空运的订单
break
;
case
118428
:
// 空运已到港
if
(
Objects
.
isNull
(
this
.
statusList
)){
this
.
statusList
=
new
ArrayList
<>();
}
if
(
Objects
.
isNull
(
this
.
shipmentStateList
)){
this
.
shipmentStateList
=
new
ArrayList
<>();
}
this
.
statusList
.
add
(
32
);
this
.
shipmentStateList
.
add
(
428
);
this
.
transportId
=
3
;
// 空运待出查询,只查空运的订单
//
this.transportId = 3; // 空运待出查询,只查空运的订单
break
;
default
:
if
(
Objects
.
isNull
(
this
.
statusList
)){
this
.
statusList
=
new
ArrayList
<>();
this
.
statusList
.
add
(
asStatus
);
}
this
.
statusList
.
add
(
asStatus
);
}
}
...
...
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