Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_ht
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
pseer
gxpt_ht
Commits
c0313858
Commit
c0313858
authored
Jan 20, 2024
by
wuwenlong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' into test
parents
e60a1dc7
ee78c786
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
RoomStatusServiceImpl.java
...java/share/system/service/impl/RoomStatusServiceImpl.java
+4
-2
No files found.
share-system/src/main/java/share/system/service/impl/RoomStatusServiceImpl.java
View file @
c0313858
...
...
@@ -19,6 +19,7 @@ import share.system.domain.vo.RoomStatusVo;
import
share.system.service.*
;
import
java.util.*
;
import
java.util.stream.Collectors
;
/**
* @Author wwl
...
...
@@ -69,11 +70,12 @@ public class RoomStatusServiceImpl implements RoomStatusService {
SStore
store
=
storeService
.
getById
(
storeId
);
// 通过门店及房间查询指定日期T+1的订单
List
<
SOrder
>
orderList
=
orderService
.
listByRoomInfo
(
storeId
,
roomIds
,
day
);
Map
<
Long
,
List
<
SOrder
>>
orderMap
=
Optional
.
ofNullable
(
orderList
).
orElse
(
new
ArrayList
<>()).
parallelStream
().
collect
(
Collectors
.
groupingBy
(
SOrder:
:
getRoomId
));
Map
<
Long
,
SCleanRecords
>
cleanRecordMap
=
cleanRecordsService
.
lastCleanRoomByRoomIds
(
roomIds
);
List
<
RoomStatusVo
>
voList
=
new
ArrayList
<>();
roomIds
.
stream
().
forEach
(
roomId
->
{
voList
.
addAll
(
generatorRoomStatusList
(
store
,
roomId
,
order
List
,
cleanRecordMap
.
get
(
roomId
),
day
,
OrderTypeEnum
.
RESERVER
.
getCode
()));
voList
.
addAll
(
generatorRoomStatusList
(
store
,
roomId
,
order
List
,
cleanRecordMap
.
get
(
roomId
),
DateUtils
.
addDays
(
day
,
1
),
OrderTypeEnum
.
RESERVER
.
getCode
()));
voList
.
addAll
(
generatorRoomStatusList
(
store
,
roomId
,
order
Map
.
get
(
roomId
)
,
cleanRecordMap
.
get
(
roomId
),
day
,
OrderTypeEnum
.
RESERVER
.
getCode
()));
voList
.
addAll
(
generatorRoomStatusList
(
store
,
roomId
,
order
Map
.
get
(
roomId
)
,
cleanRecordMap
.
get
(
roomId
),
DateUtils
.
addDays
(
day
,
1
),
OrderTypeEnum
.
RESERVER
.
getCode
()));
});
return
voList
;
}
...
...
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