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 bb3c8ace
authored
Nov 17, 2023
by
刘鑫
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
https://gitlab.dituhui.com/bsh/project/project
into develop
2 parents
096b2f0b
75f99c75
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
54 additions
and
33 deletions
project-dispatch/src/main/java/com/dituhui/pea/dispatch/constraint/DispatchConstraintProvider.java
project-dispatch/src/main/java/com/dituhui/pea/dispatch/pojo/Customer.java
project-dispatch/src/main/java/com/dituhui/pea/dispatch/quartz/dispatch/AutoDispatchJob.java
project-dispatch/src/main/java/com/dituhui/pea/dispatch/service/impl/SchedulerServiceImpl.java
project-dispatch/src/main/java/com/dituhui/pea/dispatch/utils/DispatchSolutionUtils.java
project-dispatch/src/main/resources/application-dev.yaml
project-interface/src/main/java/com/dituhui/pea/enums/StatusCodeEnum.java
project-order/src/main/java/com/dituhui/pea/order/service/impl/DispatchServiceImpl.java
project-order/src/main/java/com/dituhui/pea/order/service/impl/FendanServiceImpl.java
project-order/src/main/java/com/dituhui/pea/order/service/impl/OrderInfoServiceImpl.java
project-dispatch/src/main/java/com/dituhui/pea/dispatch/constraint/DispatchConstraintProvider.java
View file @
bb3c8ac
...
...
@@ -76,6 +76,9 @@ public class DispatchConstraintProvider implements ConstraintProvider {
if
(!
in
)
{
// 到达时间在日历窗口外,惩罚得分
ret
=
true
;
customer
.
setInTechnicianTimeWindows
(
false
);
}
else
{
customer
.
setInTechnicianTimeWindows
(
true
);
}
}
}
...
...
project-dispatch/src/main/java/com/dituhui/pea/dispatch/pojo/Customer.java
View file @
bb3c8ac
...
...
@@ -50,6 +50,8 @@ public class Customer {
// 离开时间
// private Integer departureTime;
private
boolean
isInTechnicianTimeWindows
=
true
;
public
Customer
()
{
}
...
...
@@ -135,9 +137,9 @@ public class Customer {
// throw new IllegalStateException("This method must not be called when the shadow variables are not initialized yet.");
}
if
(
previousCustomer
==
null
)
{
return
technician
.
getDepot
().
getLocation
().
getDistanceTo
(
technician
.
getVehicleType
(),
location
);
return
technician
.
getDepot
().
getLocation
().
getDistanceTo
(
technician
.
getVehicleType
(),
location
);
}
return
previousCustomer
.
getLocation
().
getDistanceTo
(
technician
.
getVehicleType
(),
location
);
return
previousCustomer
.
getLocation
().
getDistanceTo
(
technician
.
getVehicleType
(),
location
);
}
/**
...
...
@@ -151,9 +153,9 @@ public class Customer {
// throw new IllegalStateException("This method must not be called when the shadow variables are not initialized yet.");
}
if
(
previousCustomer
==
null
)
{
return
technician
.
getDepot
().
getLocation
().
getPathTimeTo
(
technician
.
getVehicleType
(),
location
);
return
technician
.
getDepot
().
getLocation
().
getPathTimeTo
(
technician
.
getVehicleType
(),
location
);
}
return
previousCustomer
.
getLocation
().
getPathTimeTo
(
technician
.
getVehicleType
(),
location
);
return
previousCustomer
.
getLocation
().
getPathTimeTo
(
technician
.
getVehicleType
(),
location
);
}
@Override
...
...
project-dispatch/src/main/java/com/dituhui/pea/dispatch/quartz/dispatch/AutoDispatchJob.java
View file @
bb3c8ac
package
com
.
dituhui
.
pea
.
dispatch
.
quartz
.
dispatch
;
import
com.dituhui.pea.dispatch.common.RedissonUtil
;
import
com.dituhui.pea.dispatch.service.SchedulerService
;
import
lombok.extern.slf4j.Slf4j
;
import
org.quartz.DisallowConcurrentExecution
;
...
...
@@ -23,7 +24,7 @@ import javax.annotation.Resource;
@DisallowConcurrentExecution
public
class
AutoDispatchJob
extends
QuartzJobBean
{
public
static
final
String
TEAM_JOB_PREFIX
=
"BOXI_TEAM_"
;
public
static
final
String
TEAM_JOB_PREFIX
=
"BOXI_TEAM_"
;
@Resource
private
SchedulerService
schedulerService
;
...
...
@@ -36,6 +37,9 @@ public class AutoDispatchJob extends QuartzJobBean {
String
teamId
=
name
.
substring
(
TEAM_JOB_PREFIX
.
length
());
long
start
=
System
.
currentTimeMillis
();
log
.
info
(
">>> 自动派工(teamId:{}) 自动任务开始"
,
teamId
);
/*RedissonUtil.lockOperation(AutoDispatchJob.TEAM_JOB_PREFIX + teamId, 60, () -> {
schedulerService.dispatchRun2(teamId);
});*/
schedulerService
.
dispatchRun2
(
teamId
);
long
end
=
System
.
currentTimeMillis
();
log
.
info
(
">>> 自动派工(teamId:{}) 自动任务结束,耗时:{}"
,
teamId
,
end
-
start
);
...
...
project-dispatch/src/main/java/com/dituhui/pea/dispatch/service/impl/SchedulerServiceImpl.java
View file @
bb3c8ac
...
...
@@ -113,14 +113,6 @@ public class SchedulerServiceImpl implements SchedulerService {
for
(
int
i
=
1
;
i
<=
nextDaysLimit
;
i
++)
{
String
currDay
=
LocalDate
.
now
().
plusDays
(
i
).
format
(
DateTimeFormatter
.
ISO_LOCAL_DATE
);
boolean
finalCutOff
=
cutOff
;
RedissonUtil
.
lockOperation
(
AutoDispatchJob
.
TEAM_JOB_PREFIX
+
teamId
,
60
,
()
->
{
dispatchRun2OneDay
(
teamId
,
currDay
,
today
,
finalCutOff
);
});
}
}
private
void
dispatchRun2OneDay
(
String
teamId
,
String
currDay
,
String
today
,
boolean
cutOff
)
{
Optional
<
DispatchBatch
>
optional
=
dispatchBatchRepository
.
findByTeamIdAndBatchDate
(
teamId
,
currDay
);
if
(
optional
.
isPresent
()
&&
Objects
.
nonNull
(
optional
.
get
().
getCutoffedTime
())
...
...
@@ -161,4 +153,5 @@ public class SchedulerServiceImpl implements SchedulerService {
//throw e;
}
}
}
}
\ No newline at end of file
project-dispatch/src/main/java/com/dituhui/pea/dispatch/utils/DispatchSolutionUtils.java
View file @
bb3c8ac
...
...
@@ -5,13 +5,12 @@ import static java.util.Comparator.comparing;
import
java.io.File
;
import
java.io.FileInputStream
;
import
java.io.FileOutputStream
;
import
java.util.Arrays
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Objects
;
import
java.util.*
;
import
java.util.concurrent.atomic.AtomicInteger
;
import
java.util.stream.Collectors
;
import
cn.hutool.core.collection.CollectionUtil
;
import
cn.hutool.core.util.ObjectUtil
;
import
org.apache.commons.io.IOUtils
;
import
org.apache.commons.lang3.StringUtils
;
import
org.optaplanner.constraint.streams.drools.DroolsConstraintStreamScoreDirector
;
...
...
@@ -72,12 +71,12 @@ public class DispatchSolutionUtils {
startPath
=
technician
.
getDepot
().
getStartTime
();
// endPath = startPath +
// customer.getLocation().getPathTimeTo(technician.getDepot().getLocation());
endPath
=
startPath
+
technician
.
getDepot
().
getLocation
().
getPathTimeTo
(
technician
.
getVehicleType
(),
customer
.
getLocation
());
endPath
=
startPath
+
technician
.
getDepot
().
getLocation
().
getPathTimeTo
(
technician
.
getVehicleType
(),
customer
.
getLocation
());
}
else
{
startPath
=
previousCustomer
.
getDepartureTime
();
// endPath = startPath +
// customer.getLocation().getPathTimeTo(previousCustomer.getLocation());
endPath
=
startPath
+
previousCustomer
.
getLocation
().
getPathTimeTo
(
technician
.
getVehicleType
(),
customer
.
getLocation
());
endPath
=
startPath
+
previousCustomer
.
getLocation
().
getPathTimeTo
(
technician
.
getVehicleType
(),
customer
.
getLocation
());
}
if
(
customer
.
getArrivalTime
()
>
customer
.
getEndTime
())
{
...
...
@@ -172,7 +171,7 @@ public class DispatchSolutionUtils {
return
" var lines = "
+
lines
;
}
else
if
(
StringUtils
.
startsWith
(
line
,
" var names = "
))
{
return
" var names = "
+
names
;
}
else
{
}
else
{
return
line
;
}
}).
collect
(
Collectors
.
toList
());
...
...
@@ -366,6 +365,9 @@ public class DispatchSolutionUtils {
*/
public
static
void
removeHardConstraintCustomer
(
DispatchSolution
solution
,
SolverFactory
<
DispatchSolution
>
solverFactory
)
{
if
(
"1719308075152764928"
.
equals
(
solution
.
getTeamId
()))
{
System
.
out
.
println
(
solution
.
getTeamId
());
}
SolutionManager
<
DispatchSolution
,
HardSoftLongScore
>
scoreManager
=
SolutionManager
.
create
(
solverFactory
);
ScoreExplanation
<
DispatchSolution
,
HardSoftLongScore
>
scoreExplanation
=
scoreManager
.
explain
(
solution
);
Map
<
String
,
ConstraintMatchTotal
<
HardSoftLongScore
>>
constraintMatchTotalMap
=
scoreExplanation
...
...
@@ -382,17 +384,33 @@ public class DispatchSolutionUtils {
// 违反硬约束对象,根据具体约束返回不同类型对象
if
(
indictedObject
instanceof
Customer
)
{
Customer
customer
=
(
Customer
)
indictedObject
;
// 更新shadow变量
updateShadowVariable
(
customer
);
// 移除技术员
customer
.
getTechnician
().
getCustomerList
().
remove
(
customer
);
solution
.
getUnDispatchedCustomers
().
add
(
customer
);
}
}
break
;
case
technicianTimeWindowsMatch:
for
(
Object
indictedObject
:
constraintMatch
.
getIndictedObjectList
())
{
// 违反硬约束对象,根据具体约束返回不同类型对象
if
(
indictedObject
instanceof
Technician
&&
ObjectUtil
.
isNotEmpty
(((
Technician
)
indictedObject
).
getCustomerList
()))
{
List
<
Customer
>
customerList
=
new
ArrayList
<>();
customerList
.
addAll
(((
Technician
)
indictedObject
).
getCustomerList
());
for
(
Customer
customer
:
customerList
)
{
if
(!
customer
.
isInTechnicianTimeWindows
())
{
// 更新shadow变量
updateShadowVariable
(
customer
);
// 移除技术员
customer
.
getTechnician
().
getCustomerList
().
remove
(
customer
);
solution
.
getUnDispatchedCustomers
().
add
(
customer
);
}
}
}
}
break
;
default
:
break
;
}
...
...
@@ -415,13 +433,13 @@ public class DispatchSolutionUtils {
Customer
nextCustomer
=
sourceCustomer
.
getNextCustomer
();
if
(
previousCustomer
==
null
)
{
// 当前订单是第一个订单
if
(
null
!=
nextCustomer
)
{
if
(
null
!=
nextCustomer
)
{
nextCustomer
.
setPreviousCustomer
(
null
);
}
}
if
(
nextCustomer
==
null
)
{
// 当前订单是最后一个订单
if
(
null
!=
previousCustomer
)
{
if
(
null
!=
previousCustomer
)
{
previousCustomer
.
setNextCustomer
(
null
);
}
}
...
...
project-dispatch/src/main/resources/application-dev.yaml
View file @
bb3c8ac
...
...
@@ -3,8 +3,8 @@ server:
dispatch
:
cron
:
expr
:
0
*/3
8-23 * * ?
next-day-limit
:
2
0
expr
:
0
10
8-23 * * ?
next-day-limit
:
2
scheduler
:
init-engineer-capacity
:
...
...
project-interface/src/main/java/com/dituhui/pea/enums/StatusCodeEnum.java
View file @
bb3c8ac
...
...
@@ -147,6 +147,8 @@ public enum StatusCodeEnum {
ORDER_FINISHED
(
"030"
,
"订单已结束,请勿操作"
,
false
),
FENDAN_IS_TRANSCEND_AND_SPECIAL
(
"031"
,
"分单超派和特殊时间"
,
false
),
ENGINEER_IS_LEAVE_TIME
(
"032"
,
"工单(%s)指派失败!%s的工作日历在该时间段已有日程安排"
,
false
),
;
/**
...
...
project-order/src/main/java/com/dituhui/pea/order/service/impl/DispatchServiceImpl.java
View file @
bb3c8ac
...
...
@@ -357,7 +357,7 @@ public class DispatchServiceImpl implements DispatchService {
Result
<
OrderInfoEntity
>
entityResult
=
orderInfoService
.
insterEngineerOrders
(
engineerOrders
,
entity
,
skill
,
byTeamId
,
engineer
);
if
(!
entityResult
.
getCode
().
equals
(
ResultEnum
.
SUCCESS
.
getCode
()))
{
// return Result.failed("当前工程师无法预约合适时间");
errorList
.
add
(
entity
.
getOrderId
());
errorList
.
add
(
"单号:"
+
entity
.
getOrderId
());
continue
;
}
entity
=
entityResult
.
getResult
();
...
...
@@ -378,11 +378,9 @@ public class DispatchServiceImpl implements DispatchService {
successList
.
add
(
entity
.
getOrderId
());
}
List
<
String
>
resultList
=
new
ArrayList
<>();
if
(
CollectionUtils
.
isNotEmpty
(
successList
))
{
resultList
.
add
(
String
.
format
(
"%s订单指派(改派)成功"
,
String
.
join
(
","
,
successList
)));
}
if
(
CollectionUtils
.
isNotEmpty
(
errorList
))
{
resultList
.
add
(
String
.
format
(
"%s订单指派(改派)失败,当前工程师无法预约合适时间"
,
String
.
join
(
","
,
errorList
)));
String
msg
=
errorList
.
size
()
>
3
?
String
.
join
(
","
,
errorList
.
subList
(
0
,
3
))
+
"..."
:
String
.
join
(
","
,
errorList
);
resultList
.
add
(
String
.
format
(
StatusCodeEnum
.
ENGINEER_IS_LEAVE_TIME
.
getDesc
(),
msg
,
engineer
.
getName
()));
}
return
Result
.
success
(
CollectionUtils
.
isNotEmpty
(
resultList
)
?
String
.
join
(
","
,
resultList
)
:
null
);
}
...
...
project-order/src/main/java/com/dituhui/pea/order/service/impl/FendanServiceImpl.java
View file @
bb3c8ac
...
...
@@ -290,7 +290,7 @@ public class FendanServiceImpl implements FendanService {
}
//最后处理全技能数据
if
(
i
==
mapBlockInfoList
.
size
()
-
1
&&
null
!=
allLayer
)
{
OrgTeamInfo
orgTeamInfoAll
=
BeanUtil
.
copyProperties
(
orgTeamEntity
,
OrgTeamInfo
.
class
);
OrgTeamInfo
orgTeamInfoAll
=
BeanUtil
.
copyProperties
(
teamMap
.
get
(
allLayer
.
getTeamId
())
,
OrgTeamInfo
.
class
);
orgGroup
.
setTeamInfos
(
Arrays
.
asList
(
orgTeamInfoAll
));
allLayer
=
null
;
}
...
...
project-order/src/main/java/com/dituhui/pea/order/service/impl/OrderInfoServiceImpl.java
View file @
bb3c8ac
This diff is collapsed.
Click to expand it.
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