自动化立体仓库 - WMS系统
#
LSH
2023-02-13 fcc407a26c3565d3ff5feae683dbc04e71b6e3ca
src/main/java/com/zy/asrs/utils/PostMesDataUtils.java
@@ -16,10 +16,7 @@
    @Autowired
    private ApiLogService apiLogService;
    @Value("${mes.url}")
    private String mesUrl;
    public ReturnT<String> postMesData(String mesPath, Object combParam){
    public ReturnT<String> postMesData(String name,String URL,String mesPath, Object combParam){
        if (true){
            return SUCCESS;
        }
@@ -31,24 +28,17 @@
//                map.put("appkey","ea1f0459efc02a79f046f982767939ae");
                response = new HttpHandler.Builder()
//                        .setHeaders(map)
                        .setUri(mesUrl)
                        .setUri(URL)
                        .setPath(mesPath)
                        .setJson(JSON.toJSONString(combParam))
                        .build()
                        .doPost();
                JSONObject jsonObject = JSON.parseObject(response);
                if (jsonObject.getInteger("code").equals(200)) {
//                    if (jsonObject.getDate("isComplete").equals(true)){
                    success = true;
//                    }else if (jsonObject.getDate("isComplete").equals(false)){
//                        success = false;
//                    }else {
//                        log.error("返回值出错!!!url:{};request:{};response:{}", mesUrl+"/"+mesPath, JSON.toJSONString(combParam), response);
//                        throw new CoolException("返回值出错");
//                    }
                } else {
                    log.error("请求接口失败!!!url:{};request:{};response:{}", mesUrl+"/"+mesPath, JSON.toJSONString(combParam), response);
                    throw new CoolException("上报mes系统失败");
                    log.error("请求接口失败!!!url:{};request:{};response:{}", URL+"/"+mesPath, JSON.toJSONString(combParam), response);
                    throw new CoolException("上报"+name);
                }
            } catch (Exception e) {
                log.error("fail", e);
@@ -58,8 +48,8 @@
                try {
                    // 保存接口日志
                    apiLogService.save(
                            "上报mes系统",
                            mesUrl +"/"+ mesPath,
                            "上报"+name,
                            URL +"/"+ mesPath,
                            null,
                            "127.0.0.1",
                            JSON.toJSONString(combParam),