自动化立体仓库 - WMS系统
1
ZY
2024-09-25 629bc61e8fd93f5e0fbed6cf6401df9c2158f8a8
src/main/java/com/zy/asrs/service/impl/OpenServiceImpl.java
@@ -696,7 +696,7 @@
                    .setJson(JSONObject.toJSONString(requestParam))
                    .build()
                    .doPost();
            log.info("请求返回报文:{}", response);
            response = response.replace("\\", "");
            response = response.substring(1, response.length() - 1);
@@ -709,7 +709,7 @@
            int code = Integer.parseInt(jsonResult.get("ErrorCode").toString());
            if (code != 1) {
                throw new CoolException(jsonResult.get("errorMsg").toString());
                throw new CoolException(jsonResult.get("ErrorMsg").toString());
            }
            success = true;
            return code;
@@ -730,4 +730,5 @@
    }
}