|
@@ -1,11 +1,11 @@
|
|
package com.ruoyi.web.controller.warewms.wcs;
|
|
package com.ruoyi.web.controller.warewms.wcs;
|
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
import com.alibaba.fastjson.JSON;
|
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.IdWorker;
|
|
import com.ruoyi.ams.agv.ndc.common.ByteUtil;
|
|
import com.ruoyi.ams.agv.ndc.common.ByteUtil;
|
|
import com.ruoyi.ams.agv.ndc.common.CRC16Util;
|
|
import com.ruoyi.ams.agv.ndc.common.CRC16Util;
|
|
import com.ruoyi.ams.agv.ndc.domain.AmsTask;
|
|
import com.ruoyi.ams.agv.ndc.domain.AmsTask;
|
|
import com.ruoyi.ams.agv.ndc.service.IAmsTaskService;
|
|
import com.ruoyi.ams.agv.ndc.service.IAmsTaskService;
|
|
-import com.ruoyi.ams.business.IBusinessService;
|
|
|
|
import com.ruoyi.base.constant.Constant;
|
|
import com.ruoyi.base.constant.Constant;
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
import com.ruoyi.common.core.redis.RedisCache;
|
|
import com.ruoyi.common.core.redis.RedisCache;
|
|
@@ -17,6 +17,8 @@ import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
+import java.util.HashMap;
|
|
|
|
+import java.util.Map;
|
|
import java.util.concurrent.TimeUnit;
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
|
|
@Slf4j
|
|
@Slf4j
|
|
@@ -28,49 +30,72 @@ public class WcsController {
|
|
private RedisCache redisCache;
|
|
private RedisCache redisCache;
|
|
@Autowired
|
|
@Autowired
|
|
private IAmsTaskService amsTaskService;
|
|
private IAmsTaskService amsTaskService;
|
|
- @Autowired
|
|
|
|
- private IBusinessService businessService;
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 按钮盒关闭交通管制
|
|
|
|
+ */
|
|
|
|
+ private final static String OPEN = "OPEN";
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 按钮盒开启交通管制
|
|
|
|
+ */
|
|
|
|
+ private final static String CLOSE = "CLOSE";
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 按钮盒对应出库区域ip
|
|
|
|
+ */
|
|
|
|
+ private final static String EXIT_AREA_IP = "192.168.77.105";
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 按钮盒对应入库区域ip
|
|
|
|
+ */
|
|
|
|
+ private final static String STORAGE_AREA_IP = "192.168.77.104";
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 按钮盒控制
|
|
|
|
+ */
|
|
|
|
+ private static final Map<String, String> buttonBoxControlMap= new HashMap<String, String>(){
|
|
|
|
+ {
|
|
|
|
+ put(OPEN, Constant.TASK_BUSINESS_TYPE.TASK_75.getValue());
|
|
|
|
+ put(CLOSE, Constant.TASK_BUSINESS_TYPE.TASK_74.getValue());
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 按钮盒区域对应id
|
|
|
|
+ */
|
|
|
|
+ private static final Map<String, String> buttonBoxAreaMap= new HashMap<String, String>(){
|
|
|
|
+ {
|
|
|
|
+ put(EXIT_AREA_IP, Constant.AREA_INFO.EXIT_AREA.getValue());
|
|
|
|
+ put(STORAGE_AREA_IP, Constant.AREA_INFO.STORAGE_AREA.getValue());
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
|
|
@PostMapping("/btnOp")
|
|
@PostMapping("/btnOp")
|
|
public AjaxResult add(@RequestBody BtnOpForm btnOpForm) {
|
|
public AjaxResult add(@RequestBody BtnOpForm btnOpForm) {
|
|
log.info("按钮盒请求------------------------》" + JSON.toJSONString(btnOpForm));
|
|
log.info("按钮盒请求------------------------》" + JSON.toJSONString(btnOpForm));
|
|
redisCache.setCacheObject(btnOpForm.getIp() + btnOpForm.getOpType(), btnOpForm.getOpType(), 15, TimeUnit.SECONDS);
|
|
redisCache.setCacheObject(btnOpForm.getIp() + btnOpForm.getOpType(), btnOpForm.getOpType(), 15, TimeUnit.SECONDS);
|
|
|
|
|
|
- log.info("交管操作执行");
|
|
|
|
- //1: 192.168.77.105
|
|
|
|
- //2: 192.168.77.104
|
|
|
|
- String op = "";
|
|
|
|
- String businessType = "";
|
|
|
|
- if (btnOpForm.getOpType().equals("CLOSE")) {
|
|
|
|
- businessType = "74";
|
|
|
|
- } else if (btnOpForm.getOpType().equals("OPEN")) {
|
|
|
|
- businessType = "75";
|
|
|
|
- }
|
|
|
|
- if (btnOpForm.getIp().equals("192.168.77.105")) {
|
|
|
|
- op = "1";
|
|
|
|
- } else if (btnOpForm.getIp().equals("192.168.77.104")) {
|
|
|
|
- op = "2";
|
|
|
|
|
|
+ String op = buttonBoxAreaMap.get(btnOpForm.getIp());
|
|
|
|
+ String businessType = buttonBoxControlMap.get(btnOpForm.getOpType());
|
|
|
|
+ if (Constant.TASK_BUSINESS_TYPE.TASK_75.getValue().equals(businessType)
|
|
|
|
+ && redisCache.checkIsExist(Constant.AREA_INFO.getKeyByValue(op))) {
|
|
|
|
+ insertAmsTask(op, Constant.TASK_BUSINESS_TYPE.TASK_77.getValue());
|
|
|
|
+ redisCache.deleteObject(Constant.AREA_INFO.getKeyByValue(op));
|
|
}
|
|
}
|
|
-// WcsTask wcsTask = new WcsTask();
|
|
|
|
-// wcsTask.setLocationFrom(Constant.LOC_MIDDLE_CACHE.toString());
|
|
|
|
-// wcsTask.setLocationTo(Constant.LOC_SORTATION_CACHE.toString());
|
|
|
|
-// wcsTask.setBusinessType(businessType);
|
|
|
|
-// wcsTask.setPriority(1L);
|
|
|
|
-// wcsTask.setExt1(op);
|
|
|
|
-// wcsTask.setTaskNo(System.currentTimeMillis() + "");
|
|
|
|
-// businessService.sendTask(wcsTask);
|
|
|
|
-
|
|
|
|
- AmsTask addTaskForm = new AmsTask();
|
|
|
|
- addTaskForm.setTaskNo(String.valueOf(System.currentTimeMillis()));
|
|
|
|
- addTaskForm.setIkey(Long.parseLong(String.valueOf(CRC16Util.calcCrc16(ByteUtil.string2byteArray(addTaskForm.getTaskNo())))));
|
|
|
|
- addTaskForm.setStFrom(Integer.valueOf(Constant.LOC_MIDDLE_CACHE.toString()));
|
|
|
|
- addTaskForm.setStTo(Integer.valueOf(Constant.LOC_SORTATION_CACHE.toString()));
|
|
|
|
- addTaskForm.setPriority(1);
|
|
|
|
- addTaskForm.setBusinessType(businessType);
|
|
|
|
- addTaskForm.setExt1(op);
|
|
|
|
-
|
|
|
|
- amsTaskService.insertAmsTask(addTaskForm);
|
|
|
|
-
|
|
|
|
|
|
+ insertAmsTask(op, businessType);
|
|
return AjaxResult.success("");
|
|
return AjaxResult.success("");
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ private void insertAmsTask(String op, String businessType){
|
|
|
|
+ AmsTask amsTask = new AmsTask();
|
|
|
|
+ amsTask.setTaskNo(IdWorker.getIdStr());
|
|
|
|
+ amsTask.setIkey(Long.parseLong(String.valueOf(CRC16Util.calcCrc16(ByteUtil.string2byteArray(amsTask.getTaskNo())))));
|
|
|
|
+ amsTask.setStFrom(Integer.valueOf(Constant.LOC_MIDDLE_CACHE.toString()));
|
|
|
|
+ amsTask.setStTo(Integer.valueOf(Constant.LOC_SORTATION_CACHE.toString()));
|
|
|
|
+ amsTask.setPriority(1);
|
|
|
|
+ amsTask.setBusinessType(businessType);
|
|
|
|
+ amsTask.setExt1(op);
|
|
|
|
+ amsTaskService.insertAmsTask(amsTask);
|
|
|
|
+ }
|
|
}
|
|
}
|