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
7bbe1167
Commit
7bbe1167
authored
Sep 10, 2024
by
huyf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提货箱数、提货率、提货状态回填
parent
82f89051
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
20240904.sql
sql/v2.1/20240904.sql
+1
-0
PickStateEnum.java
...va/cn/iocoder/yudao/module/order/enums/PickStateEnum.java
+2
-4
No files found.
sql/v2.1/20240904.sql
View file @
7bbe1167
...
@@ -17,6 +17,7 @@ alter table `ecw_order`
...
@@ -17,6 +17,7 @@ alter table `ecw_order`
add
column
`pick_num`
int
DEFAULT
0
COMMENT
'提货箱数'
;
add
column
`pick_num`
int
DEFAULT
0
COMMENT
'提货箱数'
;
-- 批量刷新订单提货数量、提货率、提货状态
-- 批量刷新订单提货数量、提货率、提货状态
update
ecw_order
t
LEFT
JOIN
(
select
a
.
order_id
,
sum
(
a
.
pick_num
)
as
pickNum
from
ecw_order_pickup
a
where
a
.
deleted
=
0
GROUP
BY
a
.
order_id
)
t1
on
t
.
order_no
=
t1
.
order_id
set
t
.
pick_num
=
t1
.
pickNum
,
t
.
pick_ratio
=
ROUND
(
t1
.
pickNum
/
t
.
sum_num
,
2
)
*
100
,
t
.
pick_state
=
(
case
when
t1
.
pickNum
is
null
then
0
when
t1
.
pickNum
=
t
.
sum_num
then
2
else
1
end
);
update
ecw_order
t
LEFT
JOIN
(
select
a
.
order_id
,
sum
(
a
.
pick_num
)
as
pickNum
from
ecw_order_pickup
a
where
a
.
deleted
=
0
GROUP
BY
a
.
order_id
)
t1
on
t
.
order_no
=
t1
.
order_id
set
t
.
pick_num
=
t1
.
pickNum
,
t
.
pick_ratio
=
ROUND
(
t1
.
pickNum
/
t
.
sum_num
,
2
)
*
100
,
t
.
pick_state
=
(
case
when
t1
.
pickNum
is
null
then
0
when
t1
.
pickNum
=
t
.
sum_num
then
3
else
2
end
);
update
ecw_order
t
LEFT
JOIN
(
select
a
.
order_id
,
sum
(
a
.
pick_num
)
as
pickNum
from
ecw_order_pickup
a
where
a
.
deleted
=
0
GROUP
BY
a
.
order_id
)
t1
on
t
.
order_no
=
t1
.
order_id
set
t
.
pick_num
=
t1
.
pickNum
,
t
.
pick_ratio
=
ROUND
(
t1
.
pickNum
/
t
.
sum_num
,
2
)
*
100
,
t
.
pick_state
=
(
case
when
t1
.
pickNum
is
null
then
0
when
t1
.
pickNum
=
t
.
sum_num
then
3
else
2
end
);
-- 已提货和部分提货的订单批量刷新订单主状态
-- 已提货和部分提货的订单批量刷新订单主状态
update
ecw_order
t
set
t
.
`status`
=
16
where
t
.
`status`
in
(
20
,
21
);
update
ecw_order
t
set
t
.
`status`
=
16
where
t
.
`status`
in
(
20
,
21
);
\ No newline at end of file
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/enums/PickStateEnum.java
View file @
7bbe1167
...
@@ -9,11 +9,9 @@ public enum PickStateEnum {
...
@@ -9,11 +9,9 @@ public enum PickStateEnum {
unpick
(
0
,
"待提货"
),
unpick
(
0
,
"待提货"
),
p
icking
(
1
,
"提货中
"
),
p
artPick
(
1
,
"部分提货
"
),
partPick
(
2
,
"部分提货"
),
picked
(
2
,
"已提货"
);
picked
(
3
,
"已提货"
);
private
Integer
pickState
;
private
Integer
pickState
;
...
...
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