|
@@ -25,6 +25,7 @@ import com.ruoyi.common.utils.StringUtils;
|
|
|
import com.ruoyi.common.utils.spring.SpringUtils;
|
|
|
import com.ruoyi.common.utils.uuid.SnowflakeIdWorker;
|
|
|
import com.ruoyi.hard.modbus.tcp.AutoDoorClient;
|
|
|
+import com.ruoyi.hard.plc.PlcService;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -384,6 +385,126 @@ public class WcsTaskServiceImpl implements IWcsTaskService {
|
|
|
if (wcsTask.getState() == 6) {
|
|
|
return AjaxResult.error("不能重复放货," + taskNo);
|
|
|
}
|
|
|
+ //不合格品左下料结束
|
|
|
+ if (wcsTask.getLocationFrom().equals("100000")){
|
|
|
+ PlcService.plcWritepassedNoProductLeftBlankingEnd();
|
|
|
+ //取消写不合格品左正在下料信号
|
|
|
+ PlcService.plcWritepassedNoProductLeftBlanking1();
|
|
|
+ //延时取消写不合格品左下料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedNoProductLeftBlankingEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //不合格品左空托上料结束
|
|
|
+ if (wcsTask.getLocationTo().equals("100000")){
|
|
|
+ PlcService.plcWritepassedNoProductLeftSkyEnd();
|
|
|
+ //取消写不合格品左正在上空托盘
|
|
|
+ PlcService.plcWritepassedNoProductLeftSky1();
|
|
|
+ //延时取消写不合格品左空托上料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedNoProductLeftSkyEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //不合格品右下料结束
|
|
|
+ if (wcsTask.getLocationFrom().equals("100002")){
|
|
|
+ PlcService.plcWritepassedNoProductRightBlankingEnd();
|
|
|
+ //取消写不合格品右侧正在下料信号
|
|
|
+ PlcService.plcWritepassedNoProductRightBlanking1();
|
|
|
+ //延时取消写不合格品右下料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedNoProductRightBlankingEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //不合格品右空托上料结束
|
|
|
+ if (wcsTask.getLocationTo().equals("100002")){
|
|
|
+ PlcService.plcWritepassedNoProductRightSkyEnd();
|
|
|
+ //取消写不合格品右正在上空托盘
|
|
|
+ PlcService.plcWritepassedNoProductRightSky1();
|
|
|
+ //延时取消写不合格品右空托上料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedNoProductRightSkyEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //合格品左下料结束
|
|
|
+ if (wcsTask.getLocationFrom().equals("100001")){
|
|
|
+ PlcService.plcWritepassedProductLeftBlankingEnd();
|
|
|
+ //取消写合格品左正在下料信号
|
|
|
+ PlcService.plcWritepassedProductLeftBlanking1();
|
|
|
+ //延时取消写合格品左下料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedProductLeftBlankingEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //合格品左空托上料结束
|
|
|
+ if (wcsTask.getLocationTo().equals("100001")){
|
|
|
+ PlcService.plcWritepassedProductLeftSkyEnd();
|
|
|
+ //取消写合格品左正在上空托
|
|
|
+ PlcService.plcWritepassedProductLeftSky1();
|
|
|
+ //延时取消写合格品左空托上料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedProductLeftSkyEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //合格品右下料结束
|
|
|
+ if (wcsTask.getLocationFrom().equals("100003")){
|
|
|
+ PlcService.plcWritepassedProductRightBlankingEnd();
|
|
|
+ //取消写合格品右正在下料
|
|
|
+ PlcService.plcWritepassedProductRightBlanking1();
|
|
|
+ //延时取消写合格品右下料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedProductRightBlankingEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //合格品右空托上料结束
|
|
|
+ if (wcsTask.getLocationTo().equals("100003")){
|
|
|
+ PlcService.plcWritepassedProductRightSkyEnd();
|
|
|
+ //取消写合格品右正在上空托
|
|
|
+ PlcService.plcWritepassedProductRightSky1();
|
|
|
+ //延时取消写合格品右空托上料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedProductRightSkyEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
wcsTask.setEndTime(new Date());
|
|
|
// 解锁终点库位
|
|
|
baseLocationInfoService.unLockLocationStockStatus(Long.parseLong(wcsTask.getLocationTo())
|
|
@@ -434,6 +555,126 @@ public class WcsTaskServiceImpl implements IWcsTaskService {
|
|
|
if (wcsTask.getState() == 6) {
|
|
|
return AjaxResult.error("不能重复放货," + taskNo);
|
|
|
}
|
|
|
+ //不合格品左下料结束
|
|
|
+ if (wcsTask.getLocationFrom().equals("100000")){
|
|
|
+ PlcService.plcWritepassedNoProductLeftBlankingEnd();
|
|
|
+ //取消写不合格品左正在下料信号
|
|
|
+ PlcService.plcWritepassedNoProductLeftBlanking1();
|
|
|
+ //延时取消写不合格品左下料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedNoProductLeftBlankingEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //不合格品左空托上料结束
|
|
|
+ if (wcsTask.getLocationTo().equals("100000")){
|
|
|
+ PlcService.plcWritepassedNoProductLeftSkyEnd();
|
|
|
+ //取消写不合格品左正在上空托盘
|
|
|
+ PlcService.plcWritepassedNoProductLeftSky1();
|
|
|
+ //延时取消写不合格品左空托上料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedNoProductLeftSkyEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //不合格品右下料结束
|
|
|
+ if (wcsTask.getLocationFrom().equals("100002")){
|
|
|
+ PlcService.plcWritepassedNoProductRightBlankingEnd();
|
|
|
+ //取消写不合格品右侧正在下料信号
|
|
|
+ PlcService.plcWritepassedNoProductRightBlanking1();
|
|
|
+ //延时取消写不合格品右下料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedNoProductRightBlankingEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //不合格品右空托上料结束
|
|
|
+ if (wcsTask.getLocationTo().equals("100002")){
|
|
|
+ PlcService.plcWritepassedNoProductRightSkyEnd();
|
|
|
+ //取消写不合格品右正在上空托盘
|
|
|
+ PlcService.plcWritepassedNoProductRightSky1();
|
|
|
+ //延时取消写不合格品右空托上料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedNoProductRightSkyEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //合格品左下料结束
|
|
|
+ if (wcsTask.getLocationFrom().equals("100001")){
|
|
|
+ PlcService.plcWritepassedProductLeftBlankingEnd();
|
|
|
+ //取消写合格品左正在下料信号
|
|
|
+ PlcService.plcWritepassedProductLeftBlanking1();
|
|
|
+ //延时取消写合格品左下料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedProductLeftBlankingEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //合格品左空托上料结束
|
|
|
+ if (wcsTask.getLocationTo().equals("100001")){
|
|
|
+ PlcService.plcWritepassedProductLeftSkyEnd();
|
|
|
+ //取消写合格品左正在上空托
|
|
|
+ PlcService.plcWritepassedProductLeftSky1();
|
|
|
+ //延时取消写合格品左空托上料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedProductLeftSkyEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //合格品右下料结束
|
|
|
+ if (wcsTask.getLocationFrom().equals("100003")){
|
|
|
+ PlcService.plcWritepassedProductRightBlankingEnd();
|
|
|
+ //取消写合格品右正在下料
|
|
|
+ PlcService.plcWritepassedProductRightBlanking1();
|
|
|
+ //延时取消写合格品右下料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedProductRightBlankingEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
+ //合格品右空托上料结束
|
|
|
+ if (wcsTask.getLocationTo().equals("100003")){
|
|
|
+ PlcService.plcWritepassedProductRightSkyEnd();
|
|
|
+ //取消写合格品右正在上空托
|
|
|
+ PlcService.plcWritepassedProductRightSky1();
|
|
|
+ //延时取消写合格品右空托上料结束
|
|
|
+ new Thread(() -> {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ PlcService.plcWritepassedProductRightSkyEnd1();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }).start();
|
|
|
+ }
|
|
|
wcsTask.setEndTime(new Date());
|
|
|
// 解锁终点库位
|
|
|
baseLocationInfoService.unLockLocationStockStatus(Long.parseLong(wcsTask.getLocationTo())
|