|
@@ -0,0 +1,481 @@
|
|
|
+package com.ruoyi.ams.MaGang02.service;
|
|
|
+
|
|
|
+import com.ruoyi.ams.business.IBusinessService;
|
|
|
+import com.ruoyi.ams.config.domain.dto.AgvCallDTO;
|
|
|
+import com.ruoyi.ams.config.domain.dto.AgvCallItemDTO;
|
|
|
+import com.ruoyi.ams.config.domain.dto.LotattDTO;
|
|
|
+import com.ruoyi.ams.task.domain.WcsTask;
|
|
|
+import com.ruoyi.ams.task.mapper.WcsTaskMapper;
|
|
|
+import com.ruoyi.base.constant.Constant;
|
|
|
+import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
+import com.ruoyi.hard.plc.PlcService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author Jwk
|
|
|
+ * @version 1.0
|
|
|
+ * @date 2023/5/30 21:04
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class PlcCallAgvService {
|
|
|
+ @Autowired
|
|
|
+ PlcService plcService;
|
|
|
+ @Autowired
|
|
|
+ private IBusinessService iBusinessService;
|
|
|
+ @Autowired
|
|
|
+ private WcsTaskMapper wcsTaskMapper;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 合格品左请求上空托
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public AjaxResult readTheEmptyPalletOnThequalifiedLeft() {
|
|
|
+ boolean b = PlcService.plcDateReading10();
|
|
|
+ if (b) {
|
|
|
+ String locationFrom = "";
|
|
|
+ String locationTo = "100001";
|
|
|
+ WcsTask wcsTask = new WcsTask();
|
|
|
+ wcsTask.setLocationTo(locationTo);
|
|
|
+ List<WcsTask> wcsTasks = wcsTaskMapper.selectWcsTaskList1(wcsTask);
|
|
|
+ if (wcsTasks.size()>0 && wcsTasks!= null){
|
|
|
+ return AjaxResult.error("已经有正在进行的任务了");
|
|
|
+ }
|
|
|
+ List<AgvCallItemDTO> agvCallItemDTOList = new ArrayList<>();
|
|
|
+ AgvCallItemDTO agvCallItemDTO = new AgvCallItemDTO();
|
|
|
+ LotattDTO lotattDTO = new LotattDTO();
|
|
|
+ agvCallItemDTO.setSku("EMPTY_TRAY"); // 空托
|
|
|
+ agvCallItemDTO.setQty(1.0);
|
|
|
+ agvCallItemDTOList.add(agvCallItemDTO);
|
|
|
+ AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+ agvCallDTO.setLocationFrom(locationFrom);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
+ agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
+ AjaxResult ajaxResult = iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.ONE.getValue(), agvCallDTO);
|
|
|
+ if (ajaxResult.isSuccess()){
|
|
|
+ PlcService.plcWritepassedProductLeftSky();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 测试合格品左请求上空托
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public AjaxResult readTheEmptyPalletOnThequalifiedLeftTest() {
|
|
|
+ if (1 == 1) {
|
|
|
+ String locationFrom = "";
|
|
|
+ String locationTo = "100001";
|
|
|
+ WcsTask wcsTask = new WcsTask();
|
|
|
+ wcsTask.setLocationTo(locationTo);
|
|
|
+ List<WcsTask> wcsTasks = wcsTaskMapper.selectWcsTaskList1(wcsTask);
|
|
|
+ if (wcsTasks.size()>0 && wcsTasks!= null){
|
|
|
+ return AjaxResult.error("已经有正在进行的任务了");
|
|
|
+ }
|
|
|
+ List<AgvCallItemDTO> agvCallItemDTOList = new ArrayList<>();
|
|
|
+ AgvCallItemDTO agvCallItemDTO = new AgvCallItemDTO();
|
|
|
+ AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+ agvCallItemDTO.setSku("EMPTY_TRAY"); // 空托
|
|
|
+ agvCallItemDTO.setQty(1.0);
|
|
|
+ agvCallItemDTOList.add(agvCallItemDTO);
|
|
|
+ agvCallDTO.setLocationFrom(locationFrom);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
+ agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
+ AjaxResult ajaxResult = iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.ONE.getValue(), agvCallDTO);
|
|
|
+ System.out.println("合格品左正在上空托");
|
|
|
+ }
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 测试合格品左请求下料
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public AjaxResult readThepassedProductLowerFeeLeftTest() {
|
|
|
+ String locationFrom = "100001";
|
|
|
+ String locationTo = "";
|
|
|
+ WcsTask wcsTask = new WcsTask();
|
|
|
+ wcsTask.setLocationFrom(locationFrom);
|
|
|
+ List<WcsTask> wcsTasks = wcsTaskMapper.selectWcsTaskList1(wcsTask);
|
|
|
+ if (wcsTasks.size()>0 && wcsTasks!= null){
|
|
|
+ return AjaxResult.error("已经有正在进行的任务了");
|
|
|
+ }
|
|
|
+ //库存列表
|
|
|
+ List<AgvCallItemDTO> agvCallItemDTOList = new ArrayList<>();
|
|
|
+ AgvCallItemDTO agvCallItemDTO = new AgvCallItemDTO();
|
|
|
+ LotattDTO lotattDTO = new LotattDTO();
|
|
|
+ agvCallItemDTO.setSku("sku001"); // 合格品
|
|
|
+ agvCallItemDTO.setQty(1.0);
|
|
|
+ agvCallItemDTOList.add(agvCallItemDTO);
|
|
|
+ AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+ agvCallDTO.setLocationFrom(locationFrom);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
+ agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
+ AjaxResult ajaxResult = iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.FIVE.getValue(), agvCallDTO);
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 合格品右请求上空托
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public AjaxResult readTheEmptyPalletOnThequalifiedRight() {
|
|
|
+ boolean b = PlcService.plcDateReading11();
|
|
|
+ if (b) {
|
|
|
+ String locationFrom = "";
|
|
|
+ String locationTo = "100003";
|
|
|
+ WcsTask wcsTask = new WcsTask();
|
|
|
+ wcsTask.setLocationTo(locationTo);
|
|
|
+ List<WcsTask> wcsTasks = wcsTaskMapper.selectWcsTaskList1(wcsTask);
|
|
|
+ if (wcsTasks.size()>0 && wcsTasks!= null){
|
|
|
+ return AjaxResult.error("已经有正在进行的任务了");
|
|
|
+ }
|
|
|
+ List<AgvCallItemDTO> agvCallItemDTOList = new ArrayList<>();
|
|
|
+ AgvCallItemDTO agvCallItemDTO = new AgvCallItemDTO();
|
|
|
+ LotattDTO lotattDTO = new LotattDTO();
|
|
|
+ agvCallItemDTO.setSku("EMPTY_TRAY"); // 空托
|
|
|
+ agvCallItemDTO.setQty(1.0);
|
|
|
+ agvCallItemDTOList.add(agvCallItemDTO);
|
|
|
+ AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+ agvCallDTO.setLocationFrom(locationFrom);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
+ agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
+ AjaxResult ajaxResult = iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.TWO.getValue(), agvCallDTO);
|
|
|
+ if (ajaxResult.isSuccess()){
|
|
|
+ PlcService.plcWritepassedProductRightSky();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 不合格品左请求上空托
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public AjaxResult readTheEmptyPalletOnTheNoqualifiedLeft() {
|
|
|
+ boolean b = PlcService.plcDateReading12();
|
|
|
+ if (b) {
|
|
|
+ String locationFrom = "";
|
|
|
+ String locationTo = "100000";
|
|
|
+ WcsTask wcsTask = new WcsTask();
|
|
|
+ wcsTask.setLocationTo(locationTo);
|
|
|
+ List<WcsTask> wcsTasks = wcsTaskMapper.selectWcsTaskList1(wcsTask);
|
|
|
+ if (wcsTasks.size()>0 && wcsTasks!= null){
|
|
|
+ return AjaxResult.error("已经有正在进行的任务了");
|
|
|
+ }
|
|
|
+ List<AgvCallItemDTO> agvCallItemDTOList = new ArrayList<>();
|
|
|
+ AgvCallItemDTO agvCallItemDTO = new AgvCallItemDTO();
|
|
|
+ LotattDTO lotattDTO = new LotattDTO();
|
|
|
+ agvCallItemDTO.setSku("EMPTY_TRAY"); // 空托
|
|
|
+ agvCallItemDTO.setQty(1.0);
|
|
|
+ agvCallItemDTOList.add(agvCallItemDTO);
|
|
|
+ AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+ agvCallDTO.setLocationFrom(locationFrom);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
+ agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
+ AjaxResult ajaxResult = iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.THREE.getValue(), agvCallDTO);
|
|
|
+ if (ajaxResult.isSuccess()){
|
|
|
+ PlcService.plcWritepassedNoProductLeftSky();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 不合格品右请求上空托
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public AjaxResult readTheEmptyPalletOnTheNoqualifiedRight() {
|
|
|
+ boolean b = PlcService.plcDateReading13();
|
|
|
+ if (b) {
|
|
|
+ String locationFrom = "";
|
|
|
+ String locationTo = "100002";
|
|
|
+ WcsTask wcsTask = new WcsTask();
|
|
|
+ wcsTask.setLocationTo(locationTo);
|
|
|
+ List<WcsTask> wcsTasks = wcsTaskMapper.selectWcsTaskList1(wcsTask);
|
|
|
+ if (wcsTasks.size()>0 && wcsTasks!= null){
|
|
|
+ return AjaxResult.error("已经有正在进行的任务了");
|
|
|
+ }
|
|
|
+ List<AgvCallItemDTO> agvCallItemDTOList = new ArrayList<>();
|
|
|
+ AgvCallItemDTO agvCallItemDTO = new AgvCallItemDTO();
|
|
|
+ LotattDTO lotattDTO = new LotattDTO();
|
|
|
+ agvCallItemDTO.setSku("EMPTY_TRAY"); // 空托
|
|
|
+ agvCallItemDTO.setQty(1.0);
|
|
|
+ agvCallItemDTOList.add(agvCallItemDTO);
|
|
|
+ AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+ agvCallDTO.setLocationFrom(locationFrom);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
+ agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
+ AjaxResult ajaxResult = iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.FOUR.getValue(), agvCallDTO);
|
|
|
+ if (ajaxResult.isSuccess()){
|
|
|
+ PlcService.plcWritepassedNoProductRightSky();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 合格品左请求下料
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public AjaxResult readThepassedProductLowerFeeLeft() {
|
|
|
+ boolean b = PlcService.plcDateReading14();
|
|
|
+ if (b) {
|
|
|
+ String locationFrom = "100001";
|
|
|
+ String locationTo = "";
|
|
|
+ WcsTask wcsTask = new WcsTask();
|
|
|
+ wcsTask.setLocationFrom(locationFrom);
|
|
|
+ List<WcsTask> wcsTasks = wcsTaskMapper.selectWcsTaskList1(wcsTask);
|
|
|
+ if (wcsTasks.size()>0 && wcsTasks!= null){
|
|
|
+ return AjaxResult.error("已经有正在进行的任务了");
|
|
|
+ }
|
|
|
+ Integer integer = PlcService.plcDateReading18();
|
|
|
+ //库存列表
|
|
|
+ List<AgvCallItemDTO> agvCallItemDTOList = new ArrayList<>();
|
|
|
+ for (int i = 0; i < integer; i++) {
|
|
|
+ //单个库存
|
|
|
+ AgvCallItemDTO agvCallItemDTO = new AgvCallItemDTO();
|
|
|
+ LotattDTO lotattDTO = new LotattDTO();
|
|
|
+ agvCallItemDTO.setSku("sku001"); // 合格品
|
|
|
+ agvCallItemDTO.setQty(1.0);
|
|
|
+ Integer integer1 = PlcService.plcDateReading18_1();
|
|
|
+ Integer integer2 = PlcService.plcDateReading18_2();
|
|
|
+ Integer integer3 = PlcService.plcDateReading18_3();
|
|
|
+ Integer integer4 = PlcService.plcDateReading18_4();
|
|
|
+ Integer integer5 = PlcService.plcDateReading18_5();
|
|
|
+ if (i == 0){
|
|
|
+ lotattDTO.setLotatt01(integer1.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 1){
|
|
|
+ lotattDTO.setLotatt01(integer2.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 2){
|
|
|
+ lotattDTO.setLotatt01(integer3.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 3){
|
|
|
+ lotattDTO.setLotatt01(integer4.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 4){
|
|
|
+ lotattDTO.setLotatt01(integer5.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ agvCallItemDTOList.add(agvCallItemDTO);
|
|
|
+ }
|
|
|
+ AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+ agvCallDTO.setLocationFrom(locationFrom);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
+ agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
+ AjaxResult ajaxResult = iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.FIVE.getValue(), agvCallDTO);
|
|
|
+ if (ajaxResult.isSuccess()){
|
|
|
+ PlcService.plcWritepassedProductLeftBlanking();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 合格品右请求下料
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public AjaxResult readThepassedProductLowerFeeRight () {
|
|
|
+ boolean b = PlcService.plcDateReading15();
|
|
|
+ if (b) {
|
|
|
+ String locationFrom = "100003";
|
|
|
+ String locationTo = "";
|
|
|
+ WcsTask wcsTask = new WcsTask();
|
|
|
+ wcsTask.setLocationFrom(locationFrom);
|
|
|
+ List<WcsTask> wcsTasks = wcsTaskMapper.selectWcsTaskList1(wcsTask);
|
|
|
+ if (wcsTasks.size()>0 && wcsTasks!= null){
|
|
|
+ return AjaxResult.error("已经有正在进行的任务了");
|
|
|
+ }
|
|
|
+ Integer integer = PlcService.plcDateReading19();
|
|
|
+ //库存列表
|
|
|
+ List<AgvCallItemDTO> agvCallItemDTOList = new ArrayList<>();
|
|
|
+ for (int i = 0; i < integer; i++) {
|
|
|
+ //单个库存
|
|
|
+ AgvCallItemDTO agvCallItemDTO = new AgvCallItemDTO();
|
|
|
+ LotattDTO lotattDTO = new LotattDTO();
|
|
|
+ agvCallItemDTO.setSku("sku001"); // 合格品
|
|
|
+ agvCallItemDTO.setQty(1.0);
|
|
|
+ Integer integer1 = PlcService.plcDateReading19_1();
|
|
|
+ Integer integer2 = PlcService.plcDateReading19_2();
|
|
|
+ Integer integer3 = PlcService.plcDateReading19_3();
|
|
|
+ Integer integer4 = PlcService.plcDateReading19_4();
|
|
|
+ Integer integer5 = PlcService.plcDateReading19_5();
|
|
|
+ if (i == 0){
|
|
|
+ lotattDTO.setLotatt01(integer1.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 1){
|
|
|
+ lotattDTO.setLotatt01(integer2.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 2){
|
|
|
+ lotattDTO.setLotatt01(integer3.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 3){
|
|
|
+ lotattDTO.setLotatt01(integer4.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 4){
|
|
|
+ lotattDTO.setLotatt01(integer5.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ agvCallItemDTOList.add(agvCallItemDTO);
|
|
|
+ }
|
|
|
+ AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+ agvCallDTO.setLocationFrom(locationFrom);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
+ agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
+ AjaxResult ajaxResult = iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.SIX.getValue(), agvCallDTO);
|
|
|
+ if (ajaxResult.isSuccess()){
|
|
|
+ PlcService.plcWritepassedProductRightBlanking();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 不合格品左请求下料
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public AjaxResult readThepassedNoProductLowerFeeLeft () {
|
|
|
+ boolean b = PlcService.plcDateReading16();
|
|
|
+ if (b) {
|
|
|
+ String locationFrom = "100000";
|
|
|
+ String locationTo = "";
|
|
|
+ WcsTask wcsTask = new WcsTask();
|
|
|
+ wcsTask.setLocationFrom(locationFrom);
|
|
|
+ List<WcsTask> wcsTasks = wcsTaskMapper.selectWcsTaskList1(wcsTask);
|
|
|
+ if (wcsTasks.size()>0 && wcsTasks!= null){
|
|
|
+ return AjaxResult.error("已经有正在进行的任务了");
|
|
|
+ }
|
|
|
+ Integer integer = PlcService.plcDateReading20();
|
|
|
+ //库存列表
|
|
|
+ List<AgvCallItemDTO> agvCallItemDTOList = new ArrayList<>();
|
|
|
+ for (int i = 0; i < integer; i++) {
|
|
|
+ //单个库存
|
|
|
+ AgvCallItemDTO agvCallItemDTO = new AgvCallItemDTO();
|
|
|
+ LotattDTO lotattDTO = new LotattDTO();
|
|
|
+ agvCallItemDTO.setSku("sku002"); // 不合格品
|
|
|
+ agvCallItemDTO.setQty(1.0);
|
|
|
+ Integer integer1 = PlcService.plcDateReading20_1();
|
|
|
+ Integer integer2 = PlcService.plcDateReading20_2();
|
|
|
+ Integer integer3 = PlcService.plcDateReading20_3();
|
|
|
+ Integer integer4 = PlcService.plcDateReading20_4();
|
|
|
+ Integer integer5 = PlcService.plcDateReading20_5();
|
|
|
+ if (i == 0){
|
|
|
+ lotattDTO.setLotatt01(integer1.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 1){
|
|
|
+ lotattDTO.setLotatt01(integer2.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 2){
|
|
|
+ lotattDTO.setLotatt01(integer3.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 3){
|
|
|
+ lotattDTO.setLotatt01(integer4.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 4){
|
|
|
+ lotattDTO.setLotatt01(integer5.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ agvCallItemDTOList.add(agvCallItemDTO);
|
|
|
+ }
|
|
|
+ AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+ agvCallDTO.setLocationFrom(locationFrom);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
+ agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
+ AjaxResult ajaxResult = iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.SEVEN.getValue(), agvCallDTO);
|
|
|
+ if (ajaxResult.isSuccess()){
|
|
|
+ PlcService.plcWritepassedNoProductLeftBlanking();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 不合格品右请求下料
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public AjaxResult readThepassedNoProductLowerFeeRight () {
|
|
|
+ boolean b = PlcService.plcDateReading17();
|
|
|
+ if (b) {
|
|
|
+ String locationFrom = "100002";
|
|
|
+ String locationTo = "";
|
|
|
+ WcsTask wcsTask = new WcsTask();
|
|
|
+ wcsTask.setLocationFrom(locationFrom);
|
|
|
+ List<WcsTask> wcsTasks = wcsTaskMapper.selectWcsTaskList1(wcsTask);
|
|
|
+ if (wcsTasks.size()>0 && wcsTasks!= null){
|
|
|
+ return AjaxResult.error("已经有正在进行的任务了");
|
|
|
+ }
|
|
|
+ Integer integer = PlcService.plcDateReading21();
|
|
|
+ //库存列表
|
|
|
+ List<AgvCallItemDTO> agvCallItemDTOList = new ArrayList<>();
|
|
|
+ for (int i = 0; i < integer; i++) {
|
|
|
+ //单个库存
|
|
|
+ AgvCallItemDTO agvCallItemDTO = new AgvCallItemDTO();
|
|
|
+ LotattDTO lotattDTO = new LotattDTO();
|
|
|
+ agvCallItemDTO.setSku("sku002"); // 不合格品
|
|
|
+ agvCallItemDTO.setQty(1.0);
|
|
|
+ Integer integer1 = PlcService.plcDateReading21_1();
|
|
|
+ Integer integer2 = PlcService.plcDateReading21_2();
|
|
|
+ Integer integer3 = PlcService.plcDateReading21_3();
|
|
|
+ Integer integer4 = PlcService.plcDateReading21_4();
|
|
|
+ Integer integer5 = PlcService.plcDateReading21_5();
|
|
|
+ if (i == 0){
|
|
|
+ lotattDTO.setLotatt01(integer1.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 1){
|
|
|
+ lotattDTO.setLotatt01(integer2.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 2){
|
|
|
+ lotattDTO.setLotatt01(integer3.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 3){
|
|
|
+ lotattDTO.setLotatt01(integer4.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ if (i == 4){
|
|
|
+ lotattDTO.setLotatt01(integer5.toString());
|
|
|
+ agvCallItemDTO.setLotattDTO(lotattDTO);
|
|
|
+ }
|
|
|
+ agvCallItemDTOList.add(agvCallItemDTO);
|
|
|
+ }
|
|
|
+ AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+ agvCallDTO.setLocationFrom(locationFrom);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
+ agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
+ AjaxResult ajaxResult = iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.EIGHT.getValue(), agvCallDTO);
|
|
|
+ if (ajaxResult.isSuccess()){
|
|
|
+ PlcService.plcWritepassedNoProductRightBlanking();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
+}
|