Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 35825c65
authored
Aug 11, 2023
by
丁伟峰
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev-dingwf' into develop
2 parents
d4857185
810043bf
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
project-order/src/main/java/com/dituhui/pea/order/scheduler/CalcEngineerCapacityScheduler.java
project-order/src/main/java/com/dituhui/pea/order/scheduler/CalcEngineerCapacityScheduler.java
View file @
35825c6
...
...
@@ -105,7 +105,7 @@ public class CalcEngineerCapacityScheduler {
}
if
(
occupyInfos
.
isEmpty
())
{
return
Duration
.
between
(
startTime
,
endTime
).
toMinutes
();
}
else
{
}
occupyInfos
.
sort
(
Comparator
.
comparing
(
OccupyInfo:
:
getBeginTime
));
// 从 occupyInfos的配置间隙中,获取最大的闲时段,理论上,上面的配置段之间,是不会交叉的,如果交叉,那是存在问题的!
List
<
Long
>
idlePeriods
=
new
ArrayList
<>();
...
...
@@ -119,6 +119,9 @@ public class CalcEngineerCapacityScheduler {
if
(
preLast
.
isBefore
(
endTime
))
{
idlePeriods
.
add
(
Duration
.
between
(
preLast
,
endTime
).
toMinutes
());
}
if
(
idlePeriods
.
isEmpty
())
{
return
Duration
.
between
(
startTime
,
endTime
).
toMinutes
();
}
else
{
return
Collections
.
max
(
idlePeriods
);
}
}
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment