Commit 30360e23 by chamberone

Merge branch 'develop' of https://zhangguoping@gitlab.dituhui.com/bsh/project/pr…

…oject.git into develop
2 parents df9d1d83 f5cafcdf
......@@ -76,7 +76,7 @@ public class Location {
* @return time in minutes
*/
public int getPathTimeTo(Location location) {
return distanceTimeMap.get(location).intValue();
return distanceTimeMap.get(location).intValue()/60;
}
// ************************************************************************
......
......@@ -74,7 +74,7 @@ public class BatchScheduler {
LocalTime currentTime = LocalTime.now();
LocalTime cutoffTime = LocalTime.parse("16:00:00", DateTimeFormatter.ISO_LOCAL_TIME);
if (currentTime.isAfter(cutoffTime)) {
if (i==1 && currentTime.isAfter(cutoffTime)) {
log.info("dispatchRun 已过cutoff时间,更新pre状态为confirm----- group:{}, day:{}", groupId, currDay);
DispatchBatch dispatchBatch = batchService.queryBatchInfoByDay(groupId, currDay);
if (null == dispatchBatch.getBatchNo()) {
......
......@@ -42,7 +42,6 @@ class SolveServiceTest {
String groupId = "gsuzhou";
String day = "2023-07-11";
private SolverManager<DispatchSolution, UUID> solverManager;
private Solver<DispatchSolution> solver;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!