Quellcode durchsuchen

修改获取物料信息问题的bug

suntg vor 7 Jahren
Ursprung
Commit
a46cd92ce6
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      src/main/java/com/uas/platform/b2b/ps/ProductUtils.java

+ 1 - 1
src/main/java/com/uas/platform/b2b/ps/ProductUtils.java

@@ -396,7 +396,7 @@ public class ProductUtils {
         HashMap<String, Object> map = new HashMap<>(2);
         HashMap<String, Object> map = new HashMap<>(2);
         map.put("enUU", enUU);
         map.put("enUU", enUU);
         map.put("code", URLEncoder.encode(code, HTTP.UTF_8));
         map.put("code", URLEncoder.encode(code, HTTP.UTF_8));
-        Response res = HttpUtil.sendGetRequest(PRODUCT_PUBLIC_SERVICE_URL + "/get/findByEnUUAndCode", map);
+        Response res = HttpUtil.sendGetRequest(PRODUCT_PUBLIC_SERVICE_URL + "/product/get/findByEnUUAndCode", map);
         if (HttpStatus.OK.value() == res.getStatusCode()) {
         if (HttpStatus.OK.value() == res.getStatusCode()) {
             return JSONObject.parseArray(res.getResponseText(), Product.class);
             return JSONObject.parseArray(res.getResponseText(), Product.class);
         } else {
         } else {