From f44f00034483637a48c4cfedf7b6e93b83c8c6af Mon Sep 17 00:00:00 2001
From: zhoushihao <zsh19950802@163.com>
Date: 星期四, 30 十月 2025 03:36:24 +0800
Subject: [PATCH] 1、 中空理片笼任务优化:进片调度增加限制,避免重复生成调度任务
---
hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/service/HollowGlassOutRelationInfoService.java | 19 ++++++++++++++++---
1 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/service/HollowGlassOutRelationInfoService.java b/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/service/HollowGlassOutRelationInfoService.java
index 94e2ce6..4d0e263 100644
--- a/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/service/HollowGlassOutRelationInfoService.java
+++ b/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/service/HollowGlassOutRelationInfoService.java
@@ -1,12 +1,17 @@
package com.mes.hollow.service;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.hollow.entity.HollowGlassOutRelationInfo;
+import com.mes.order.entity.OrderDetailsDTO;
+import com.mes.hollow.entity.request.HollowHistoryTaskRequest;
import com.mes.hollow.entity.request.HollowTaskRequest;
import com.mes.hollowqueue.entity.HollowGlassQueueInfo;
+import com.mes.largenscreen.entity.PieChartVO;
import java.io.IOException;
import java.util.List;
+import java.util.Map;
/**
* (HollowGlassOutRelationInfo)琛ㄦ湇鍔℃帴鍙�
@@ -22,18 +27,26 @@
Boolean dispatchHollowSwitch(Boolean flag);
+ Boolean priorityHollowSwitch(Boolean flag);
+
List<String> hollowTaskList(int cell);
- List<HollowGlassQueueInfo> appointHollowTaskDetails(String flowCardId, int cell);
+ Map<String, List<HollowGlassQueueInfo>> appointHollowTaskDetails(int cell);
- Boolean startTask(String flowCardId, int cell);
+ Boolean startTask(int cell);
- Boolean pauseTask(String flowCardId, int cell);
+ Boolean pauseTask(int cell);
Boolean finishTask(String flowCardId, int cell);
Boolean deleteHollowTaskDetails(String flowCardId, int cell);
String generateHollowLisecFile(String flowCardId, int cell, int isForce, int isOut) throws IOException;
+
+ Page<HollowGlassOutRelationInfo> queryHollowHistoryTask(HollowHistoryTaskRequest request);
+
+ List<PieChartVO> queryPieChart();
+
+ OrderDetailsDTO queryProductNameByFlowCardId(String flowCardId);
}
--
Gitblit v1.8.0