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
94e461ef
Commit
94e461ef
authored
Sep 05, 2024
by
huyf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提货箱数、提货率、提货状态回填
parent
61fa3ac1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
20240904.sql
sql/v2.1/20240904.sql
+5
-2
OrderPickupServiceImpl.java
...ule/order/service/orderPickup/OrderPickupServiceImpl.java
+1
-1
No files found.
sql/v2.1/20240904.sql
View file @
94e461ef
...
...
@@ -12,6 +12,9 @@ alter table `ecw_order_consignee`
alter
table
`ecw_order`
add
column
`pick_state`
tinyint
DEFAULT
0
COMMENT
'提货状态:0 未提货 1 部分提货 2 已提货'
;
alter
table
`ecw_order`
add
column
`pick_ratio`
int
DEFAULT
0
COMMENT
'提货率'
;
add
column
`pick_ratio`
decimal
(
4
,
2
)
DEFAULT
'0.00'
COMMENT
'提货率'
;
alter
table
`ecw_order`
add
column
`pick_num`
int
DEFAULT
0
COMMENT
'提货箱数'
;
\ No newline at end of file
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
3
else
2
end
);
\ No newline at end of file
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/service/orderPickup/OrderPickupServiceImpl.java
View file @
94e461ef
...
...
@@ -211,7 +211,7 @@ public class OrderPickupServiceImpl extends AbstractService<OrderPickupMapper, O
List
<
OrderPickupDO
>
orderPickupDOS
=
orderPickupMapper
.
selectList
(
OrderPickupDO:
:
getOrderId
,
orderNo
);
int
pickedSum
=
orderPickupDOS
.
stream
().
mapToInt
(
OrderPickupDO:
:
getPickNum
).
sum
();
int
allPickNum
=
pickedSum
+
pickNum
;
BigDecimal
pickRatio
=
new
BigDecimal
(
allPickNum
/
sumNum
);
BigDecimal
pickRatio
=
new
BigDecimal
(
(
double
)
(
allPickNum
/
sumNum
)
*
100
);
pickRatio
.
setScale
(
2
,
RoundingMode
.
HALF_UP
);
orderService
.
update
(
new
LambdaUpdateWrapper
<
OrderDO
>()
.
set
(
OrderDO:
:
getPickNum
,
allPickNum
)
...
...
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