|
|
@ -44,11 +44,15 @@ import org.nl.logger.BusinessLogger; |
|
|
|
import org.nl.start.auto.run.NDCSocketConnectionAutoRun; |
|
|
|
import org.nl.utils.SpringContextHolder; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.http.HttpStatus; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
import java.text.DateFormat; |
|
|
|
import java.text.SimpleDateFormat; |
|
|
|
import java.util.*; |
|
|
|
import java.util.function.Function; |
|
|
|
import java.util.stream.Collectors; |
|
|
|
import java.util.stream.Stream; |
|
|
|
|
|
|
|
@Slf4j |
|
|
|
@Service |
|
|
@ -2060,12 +2064,84 @@ public class AgvServiceImpl implements AgvService { |
|
|
|
return ret; |
|
|
|
} |
|
|
|
|
|
|
|
public static void main(String[] args) { |
|
|
|
String address = "L1-01-01"; |
|
|
|
if (address.indexOf("-") > 0) { |
|
|
|
String str = address.substring(address.indexOf("-"), address.length()); |
|
|
|
address = address.substring(0, address.indexOf("-")); |
|
|
|
System.out.println(address); |
|
|
|
@Override |
|
|
|
public JSONObject xgAGVControlDoorSwitch(JSONObject requestParam) { |
|
|
|
try { |
|
|
|
JSONObject requestWMSParam = new JSONObject(); |
|
|
|
requestWMSParam.put("device_code", requestParam.optString("deviceID")); |
|
|
|
requestWMSParam.put("device_status", "1".equals(requestParam.optString("state")) ? "open" : "close"); |
|
|
|
JSONObject wmsResult = acsToWmsService.gccControlDoorSwitch(requestWMSParam); |
|
|
|
|
|
|
|
JSONObject result = new JSONObject(); |
|
|
|
if (HttpStatus.OK.value() == wmsResult.optInt("status")) { |
|
|
|
result.put("result", 0); |
|
|
|
result.put("message", "操作成功"); |
|
|
|
} else { |
|
|
|
result.put("result", -1); |
|
|
|
result.put("message", wmsResult.optString("message")); |
|
|
|
} |
|
|
|
return result; |
|
|
|
} catch (Exception e) { |
|
|
|
JSONObject result = new JSONObject(); |
|
|
|
result.put("result", -1); |
|
|
|
result.put("message", e.getMessage()); |
|
|
|
return result; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public JSONObject xgAGVQueryDoorStatus(JSONObject requestParam) { |
|
|
|
String[] deviceIDs = requestParam.optString("deviceIDs").split(","); |
|
|
|
|
|
|
|
if (deviceIDs.length == 1 && StrUtil.isBlank(deviceIDs[0])) { |
|
|
|
JSONObject result = new JSONObject(); |
|
|
|
result.put("result", 0); |
|
|
|
result.put("message", "操作成功"); |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|
try { |
|
|
|
com.alibaba.fastjson.JSONArray wmsResult = acsToWmsService.gccQueryDoorStatus(); |
|
|
|
|
|
|
|
if (ObjectUtil.isEmpty(wmsResult)) { |
|
|
|
JSONObject result = new JSONObject(); |
|
|
|
result.put("result", 0); |
|
|
|
result.put("message", "操作成功"); |
|
|
|
result.put("data", Arrays.stream(deviceIDs) |
|
|
|
.map(id -> { |
|
|
|
JSONObject door = new JSONObject(); |
|
|
|
door.put("deviceID", id); |
|
|
|
door.put("doorState", -1); |
|
|
|
door.put("timePoke", System.currentTimeMillis()); |
|
|
|
return door; |
|
|
|
}).collect(Collectors.toList())); |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|
List<JSONObject> data = Arrays.stream(deviceIDs).map(id -> { |
|
|
|
JSONObject door = new JSONObject(); |
|
|
|
door.put("deviceID", id); |
|
|
|
List<Object> list = wmsResult.stream().filter(o -> id.equals(((com.alibaba.fastjson.JSONObject) o).getString("device_code"))).collect(Collectors.toList()); |
|
|
|
if (list.isEmpty()) { |
|
|
|
door.put("doorState", -1); |
|
|
|
} else { |
|
|
|
com.alibaba.fastjson.JSONObject row = (com.alibaba.fastjson.JSONObject) list.get(0); |
|
|
|
door.put("doorState", "close".equals(row.getString("device_status")) ? 0 : 1); |
|
|
|
} |
|
|
|
door.put("timePoke", System.currentTimeMillis()); |
|
|
|
return door; |
|
|
|
}).collect(Collectors.toList()); |
|
|
|
|
|
|
|
JSONObject result = new JSONObject(); |
|
|
|
result.put("result", 0); |
|
|
|
result.put("message", "操作成功"); |
|
|
|
result.put("data", data); |
|
|
|
return result; |
|
|
|
} catch (Exception e) { |
|
|
|
JSONObject result = new JSONObject(); |
|
|
|
result.put("result", 0); |
|
|
|
result.put("message", e.getMessage()); |
|
|
|
return result; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|