|
@@ -366,6 +366,17 @@ public class QmsQueueListServiceImpl implements IQmsQueueListService {
|
|
|
queuingRulesService.pushMesToWebsocket(list);
|
|
|
return count;
|
|
|
}
|
|
|
+ /**
|
|
|
+ * @author:zyf
|
|
|
+ * @version:1.0
|
|
|
+ * @Date:2022-09-06
|
|
|
+ * @Description:在装货前修改装货点
|
|
|
+ */
|
|
|
+ public int modifyLoadWarehouse(Map<String, Object> mesMap){
|
|
|
+ int result=0;
|
|
|
+ result+=qmsQueueSpellingListMapper.updateOOMLoadWarehouse(mesMap);
|
|
|
+ return result;
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 判断是否隔行打钩
|
|
@@ -434,8 +445,8 @@ public class QmsQueueListServiceImpl implements IQmsQueueListService {
|
|
|
* @Date:
|
|
|
* @Description:做一个定时任务向两块大屏赋予值
|
|
|
*/
|
|
|
- @Scheduled(cron = "*/60 * * * * ?")
|
|
|
- @Scheduled(cron = "0 0/5 * * * ?")
|
|
|
+ //@Scheduled(cron = "*/60 * * * * ?")
|
|
|
+ //@Scheduled(cron = "0 0/5 * * * ?")
|
|
|
public void sendDataToLargeCreen(){
|
|
|
Map<String,Object> mapValue=new HashMap<>();
|
|
|
List<Map<String, Object>> datalist =new ArrayList<>();
|
|
@@ -468,6 +479,8 @@ public class QmsQueueListServiceImpl implements IQmsQueueListService {
|
|
|
i =+ queuingRulesMapper.updateEnFactory(DataChange.dataToBigDecimal(map.get("resultTotalId")));
|
|
|
//移除可进厂确认时间
|
|
|
i =+ queuingRulesMapper.updateQRESULTEnsureTime(listId);
|
|
|
+ //去除掉排队信息
|
|
|
+
|
|
|
return i;
|
|
|
}
|
|
|
|