|
@@ -228,6 +228,59 @@ public class AgvCallProxyService {
|
|
|
return iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.SEVEN.getValue(), agvCallDTO);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 成品下线(硫酸镍)->裹膜|成品暂存区
|
|
|
+ *
|
|
|
+ * @param locationFrom
|
|
|
+ * @param locationTo
|
|
|
+ * @param createUser
|
|
|
+ * @param theWeighing
|
|
|
+ * @param agvCallItemDTOList
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public AjaxResult productsDownLineLSN(String locationFrom, String locationTo, String createUser
|
|
|
+ , Boolean theWeighing
|
|
|
+ , List<AgvCallItemDTO> agvCallItemDTOList) {
|
|
|
+ AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+ agvCallDTO.setLocationFrom(locationFrom);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
+ agvCallDTO.setCreateUser(createUser);
|
|
|
+ agvCallDTO.setTheWeighing(theWeighing);
|
|
|
+ agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
+ // 增加硫酸镍标识
|
|
|
+ for (AgvCallItemDTO agvCallItemDTO : agvCallItemDTOList) {
|
|
|
+ agvCallItemDTO.getLotattDTO().setLotatt18("Y"); //是否硫酸镍,Y代表是
|
|
|
+ }
|
|
|
+ createWmsDoc(createUser, agvCallItemDTOList);
|
|
|
+ return iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.EIGHT.getValue(), agvCallDTO);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 成品下线(硫酸镍)->仓储区
|
|
|
+ *
|
|
|
+ * @param locationFrom
|
|
|
+ * @param locationTo
|
|
|
+ * @param createUser
|
|
|
+ * @param theWeighing
|
|
|
+ * @param agvCallItemDTOList
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public AjaxResult productsDownLineInvLSN(String locationFrom, String locationTo, String createUser
|
|
|
+ , Boolean theWeighing
|
|
|
+ , List<AgvCallItemDTO> agvCallItemDTOList) {
|
|
|
+ AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+ agvCallDTO.setLocationFrom(locationFrom);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
+ agvCallDTO.setCreateUser(createUser);
|
|
|
+ agvCallDTO.setTheWeighing(theWeighing);
|
|
|
+ agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
+ // 增加硫酸镍标识
|
|
|
+ for (AgvCallItemDTO agvCallItemDTO : agvCallItemDTOList) {
|
|
|
+ agvCallItemDTO.getLotattDTO().setLotatt18("Y"); //是否硫酸镍,Y代表是
|
|
|
+ }
|
|
|
+ createWmsDoc(createUser, agvCallItemDTOList);
|
|
|
+ return iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.NINE.getValue(), agvCallDTO);
|
|
|
+ }
|
|
|
|
|
|
public void createWmsDoc(String createUser
|
|
|
, List<AgvCallItemDTO> agvCallItemDTOList){
|
|
@@ -306,121 +359,6 @@ public class AgvCallProxyService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- /**
|
|
|
- *获取目标库位
|
|
|
- * @param theWrapped 是否裹膜
|
|
|
- * @param theWeighing 是否复称
|
|
|
- * @param taskType 任务类型 0-硫酸镍 1-氯化镍
|
|
|
- * @return
|
|
|
- */
|
|
|
- public String queryBaslocationTo(Boolean theWrapped,Boolean theWeighing,List<BaseLocationInfo> blfList
|
|
|
- ,Integer taskType){
|
|
|
-
|
|
|
- if(theWrapped) {
|
|
|
-
|
|
|
- if (blfList.size() > 0) {
|
|
|
- return taskType == 0 ? "8,9,10" : "11";
|
|
|
- } else {
|
|
|
- return "17";
|
|
|
- }
|
|
|
- }else{
|
|
|
-
|
|
|
- return taskType == 0 ? "8,9,10" : "11";
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 获取NDC任务类型
|
|
|
- * @param theWrapped 是否裹膜
|
|
|
- * @param theWeighing 是否复称
|
|
|
- * @return
|
|
|
- */
|
|
|
- public String queryTaskType(Boolean theWrapped,Boolean theWeighing,List<BaseLocationInfo> blfList){
|
|
|
-
|
|
|
- if(theWrapped && theWeighing){
|
|
|
-
|
|
|
- if(blfList.size() > 0){
|
|
|
- return "0003";
|
|
|
- }else{
|
|
|
- return "0000";
|
|
|
- }
|
|
|
- }else if(theWrapped && !theWeighing){
|
|
|
-
|
|
|
- if(blfList.size() > 0){
|
|
|
- return "0002";
|
|
|
- }else{
|
|
|
- return "0000";
|
|
|
- }
|
|
|
- }else if(!theWrapped && theWeighing){
|
|
|
-
|
|
|
- return "0001";
|
|
|
- }else{
|
|
|
-
|
|
|
- return "0000";
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 成品下线(硫酸镍)->裹膜|成品暂存区
|
|
|
- *
|
|
|
- * @param locationFrom
|
|
|
- * @param locationTo
|
|
|
- * @param createUser
|
|
|
- * @param theWeighing
|
|
|
- * @param agvCallItemDTOList
|
|
|
- * @return
|
|
|
- */
|
|
|
- public AjaxResult productsDownLineLSN(String locationFrom, String locationTo, String createUser,
|
|
|
- Boolean theWrapped, Boolean theWeighing, List<AgvCallItemDTO> agvCallItemDTOList) {
|
|
|
-
|
|
|
- //根据裹膜库位的状态判断目标点
|
|
|
- List<BaseLocationInfo> bliList = baseLocationInfoService.selectEmptyLocationByZoneId("15");
|
|
|
- //获取目标库区
|
|
|
- String zoneList = queryBaslocationTo(theWrapped,theWeighing,bliList,0);
|
|
|
-
|
|
|
- AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
- agvCallDTO.setLocationFrom(locationFrom);
|
|
|
- agvCallDTO.setLocationTo(zoneList);
|
|
|
- agvCallDTO.setCreateUser(createUser);
|
|
|
- agvCallDTO.setTheWeighing(theWeighing);
|
|
|
- agvCallDTO.setExt3(queryTaskType(theWrapped,theWeighing,bliList));
|
|
|
- agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
- agvCallDTO.setAsnType(false);//下线入库
|
|
|
- // 增加硫酸镍标识
|
|
|
- for (AgvCallItemDTO agvCallItemDTO : agvCallItemDTOList) {
|
|
|
- agvCallItemDTO.getLotattDTO().setLotatt18("Y"); //是否硫酸镍,Y代表否
|
|
|
- }
|
|
|
- createWmsDoc(createUser, agvCallItemDTOList);
|
|
|
- return iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.EIGHT.getValue(), agvCallDTO);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 成品下线(硫酸镍)->仓储区
|
|
|
- *
|
|
|
- * @param locationFrom
|
|
|
- * @param locationTo
|
|
|
- * @param createUser
|
|
|
- * @param theWeighing
|
|
|
- * @param agvCallItemDTOList
|
|
|
- * @return
|
|
|
- */
|
|
|
- public AjaxResult productsDownLineInvLSN(String locationFrom, String locationTo, String createUser
|
|
|
- , Boolean theWeighing
|
|
|
- , List<AgvCallItemDTO> agvCallItemDTOList) {
|
|
|
- AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
- agvCallDTO.setLocationFrom(locationFrom);
|
|
|
- agvCallDTO.setLocationTo(locationTo);
|
|
|
- agvCallDTO.setCreateUser(createUser);
|
|
|
- agvCallDTO.setTheWeighing(theWeighing);
|
|
|
- agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
- agvCallDTO.setAsnType(false);//下线入库
|
|
|
- createWmsDoc(createUser, agvCallItemDTOList);
|
|
|
- return iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.NINE.getValue(), agvCallDTO);
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* 成品下线(氯化镍)->裹膜
|
|
|
*
|
|
@@ -432,29 +370,20 @@ public class AgvCallProxyService {
|
|
|
* @return
|
|
|
*/
|
|
|
public AjaxResult productsDownLineLHN(String locationFrom, String locationTo, String createUser
|
|
|
- , Boolean theWrapped, Boolean theWeighing
|
|
|
+ , Boolean theWeighing
|
|
|
, List<AgvCallItemDTO> agvCallItemDTOList) {
|
|
|
-
|
|
|
- //根据裹膜库位的状态判断目标点
|
|
|
- List<BaseLocationInfo> bliList = baseLocationInfoService.selectEmptyLocationByZoneId("15");
|
|
|
- //获取目标库区
|
|
|
- String zoneList = queryBaslocationTo(theWrapped,theWeighing,bliList,1);
|
|
|
-
|
|
|
AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
agvCallDTO.setLocationFrom(locationFrom);
|
|
|
- agvCallDTO.setLocationTo(zoneList);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
agvCallDTO.setCreateUser(createUser);
|
|
|
agvCallDTO.setTheWeighing(theWeighing);
|
|
|
- agvCallDTO.setExt3(queryTaskType(theWrapped,theWeighing,bliList));
|
|
|
- agvCallDTO.setAsnType(false);//下线入库
|
|
|
agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
// 增加氯化镍标识
|
|
|
for (AgvCallItemDTO agvCallItemDTO : agvCallItemDTOList) {
|
|
|
agvCallItemDTO.getLotattDTO().setLotatt18("N"); //是否硫酸镍,N代表否
|
|
|
}
|
|
|
createWmsDoc(createUser, agvCallItemDTOList);
|
|
|
-
|
|
|
- return iBusinessService.agvCall( Constant.FLOW_CONFIG_ID.TWELVE.getValue(), agvCallDTO);
|
|
|
+ return iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.ELEVEN.getValue(), agvCallDTO);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -476,7 +405,10 @@ public class AgvCallProxyService {
|
|
|
agvCallDTO.setCreateUser(createUser);
|
|
|
agvCallDTO.setTheWeighing(theWeighing);
|
|
|
agvCallDTO.setAgvCallItemDTOList(agvCallItemDTOList);
|
|
|
- agvCallDTO.setAsnType(false);//下线入库
|
|
|
+ // 增加氯化镍标识
|
|
|
+ for (AgvCallItemDTO agvCallItemDTO : agvCallItemDTOList) {
|
|
|
+ agvCallItemDTO.getLotattDTO().setLotatt18("N"); //是否硫酸镍,N代表否
|
|
|
+ }
|
|
|
createWmsDoc(createUser, agvCallItemDTOList);
|
|
|
return iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.TWELVE.getValue(), agvCallDTO);
|
|
|
}
|
|
@@ -528,19 +460,15 @@ public class AgvCallProxyService {
|
|
|
/**
|
|
|
* 成品中转(硫酸镍|氯化镍)->裹膜
|
|
|
*
|
|
|
+ * @param locationFrom
|
|
|
+ * @param locationTo
|
|
|
* @param createUser
|
|
|
* @return
|
|
|
*/
|
|
|
- public AjaxResult productsDownLineToCache(Boolean theWrapped, Boolean theWeighing,String createUser) {
|
|
|
-
|
|
|
- //根据裹膜库位的状态判断目标点
|
|
|
- List<BaseLocationInfo> bliList = baseLocationInfoService.selectEmptyLocationByZoneId("15");
|
|
|
- if(theWrapped && bliList.size() < 1) return AjaxResult.error("裹膜库位被占用,无法下发任务,请确认库位状态!");
|
|
|
-
|
|
|
+ public AjaxResult productsDownLineToCache(String locationFrom, String locationTo, String createUser) {
|
|
|
AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
- agvCallDTO.setAsnType(true);//中转入库
|
|
|
- agvCallDTO.setTheWeighing(true);
|
|
|
- agvCallDTO.setExt3(queryTaskType(theWrapped,theWeighing,bliList));
|
|
|
+ agvCallDTO.setLocationFrom(locationFrom);
|
|
|
+ agvCallDTO.setLocationTo(locationTo);
|
|
|
agvCallDTO.setCreateUser(createUser);
|
|
|
return iBusinessService.agvCall(Constant.FLOW_CONFIG_ID.SIXTEEN.getValue(), agvCallDTO);
|
|
|
}
|