回传地址修改

master
anthonyywj2 3 years ago
parent 1563527fa1
commit 37addc4eb0

@ -1,12 +1,7 @@
package com.glxp.mipsdl.admin.controller; package com.glxp.mipsdl.admin.controller;
import com.glxp.mipsdl.admin.client.http.PhxyyClient; import com.glxp.mipsdl.admin.client.http.PhxyyClient;
import com.glxp.mipsdl.admin.req.*;
import com.glxp.mipsdl.common.res.BaseResponse;
import com.glxp.mipsdl.common.util.ResultVOUtils;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import javax.annotation.Resource; import javax.annotation.Resource;
@ -18,29 +13,29 @@ public class TestController {
private PhxyyClient phxyyClient; private PhxyyClient phxyyClient;
@PostMapping("/test/getUnit") // @PostMapping("/test/getUnit")
public BaseResponse getUnit(@RequestBody UdiwmsUnitRequest unitRequest) { // public BaseResponse getUnit(@RequestBody UdiwmsUnitRequest unitRequest) {
return ResultVOUtils.success(phxyyClient.getUnit(unitRequest)); // return ResultVOUtils.success(phxyyClient.getUnit(unitRequest));
} // }
//
@PostMapping("/test/getPrdoucts") // @PostMapping("/test/getPrdoucts")
public BaseResponse getProducts(UdiwmsProductRequest udiwmsProductRequest){ // public BaseResponse getProducts(UdiwmsProductRequest udiwmsProductRequest){
return ResultVOUtils.success(phxyyClient.getProducts(udiwmsProductRequest)); // return ResultVOUtils.success(phxyyClient.getProducts(udiwmsProductRequest));
} // }
//
@PostMapping("/test/getOrderTypes") // @PostMapping("/test/getOrderTypes")
public BaseResponse getOrderTypes(UdiwmsBusTypeRequest udiwmsBusTypeRequest){ // public BaseResponse getOrderTypes(UdiwmsBusTypeRequest udiwmsBusTypeRequest){
return ResultVOUtils.success(phxyyClient.getOrderTypes(udiwmsBusTypeRequest)); // return ResultVOUtils.success(phxyyClient.getOrderTypes(udiwmsBusTypeRequest));
} // }
//
@PostMapping("/test/submitOrders") // @PostMapping("/test/submitOrders")
public BaseResponse submitOrders(UdiwmsOrderRequest udiwmsOrderRequest){ // public BaseResponse submitOrders(UdiwmsOrderRequest udiwmsOrderRequest){
return ResultVOUtils.success(phxyyClient.submitOrders(udiwmsOrderRequest)); // return ResultVOUtils.success(phxyyClient.submitOrders(udiwmsOrderRequest));
} // }
//
@PostMapping("/test/getWarehouse") // @PostMapping("/test/getWarehouse")
public BaseResponse getWarehouse(UdiwmsWarehouseRequest udiwmsWarehouseRequest){ // public BaseResponse getWarehouse(UdiwmsWarehouseRequest udiwmsWarehouseRequest){
return ResultVOUtils.success(phxyyClient.getWarehouse(udiwmsWarehouseRequest)); // return ResultVOUtils.success(phxyyClient.getWarehouse(udiwmsWarehouseRequest));
} // }
} }

@ -2,36 +2,40 @@ package com.glxp.mipsdl.admin.http;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.TypeReference; import com.alibaba.fastjson.TypeReference;
import com.glxp.mipsdl.admin.config.ThirdSysConfig;
import com.glxp.mipsdl.admin.req.system.PostFileThrOrderRequest; import com.glxp.mipsdl.admin.req.system.PostFileThrOrderRequest;
import com.glxp.mipsdl.admin.req.system.PostThrCorpRequest; import com.glxp.mipsdl.admin.req.system.PostThrCorpRequest;
import com.glxp.mipsdl.admin.req.system.PostThrInvProductsRequest; import com.glxp.mipsdl.admin.req.system.PostThrInvProductsRequest;
import com.glxp.mipsdl.admin.req.system.PostThrProductsRequest; import com.glxp.mipsdl.admin.req.system.PostThrProductsRequest;
import com.glxp.mipsdl.admin.util.HttpClient; import com.glxp.mipsdl.admin.util.HttpClient;
import com.glxp.mipsdl.common.res.BaseResponse; import com.glxp.mipsdl.common.res.BaseResponse;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.HttpHeaders; import org.springframework.http.HttpHeaders;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service @Service
public class UdiwmsClient { public class UdiwmsClient {
@Resource @Value("${UDIWMS_IP}")
private ThirdSysConfig thirdSysConfig; private String udiWmsUrl;
@Value("${API_KEY}")
private String apiKey;
@Value("${API_SECRET}")
private String apiSecret;
public HttpHeaders getHeaders() { public HttpHeaders getHeaders() {
HttpHeaders headers = new HttpHeaders(); HttpHeaders headers = new HttpHeaders();
headers.add("Content-Type", "application/json"); headers.add("Content-Type", "application/json");
headers.add("api_key", thirdSysConfig.getThirdSysConfig().getApikey()); headers.add("api_key", apiKey);
headers.add("secret_key", thirdSysConfig.getThirdSysConfig().getSecretkey()); headers.add("secret_key", apiSecret);
return headers; return headers;
} }
public BaseResponse postProducts(PostThrProductsRequest postThrProductsRequest) { public BaseResponse postProducts(PostThrProductsRequest postThrProductsRequest) {
String response = HttpClient.postJson(thirdSysConfig.getThirdSysConfig().getThirdSysUrl() + "/udiwms/thrsys/postThrProducts", postThrProductsRequest, getHeaders()); String response = HttpClient.postJson(udiWmsUrl + "/udiwms/thrsys/postThrProducts", postThrProductsRequest, getHeaders());
BaseResponse baseResponse = BaseResponse baseResponse =
JSONObject.parseObject(response, new TypeReference<BaseResponse>() { JSONObject.parseObject(response, new TypeReference<BaseResponse>() {
}); });
@ -40,7 +44,7 @@ public class UdiwmsClient {
public BaseResponse postCorps(PostThrCorpRequest postThrCorpRequest) { public BaseResponse postCorps(PostThrCorpRequest postThrCorpRequest) {
postThrCorpRequest.setUploadType("文件导入"); postThrCorpRequest.setUploadType("文件导入");
String response = HttpClient.postJson(thirdSysConfig.getThirdSysConfig().getThirdSysUrl() + "/udiwms/thrsys/postCorps", postThrCorpRequest, getHeaders()); String response = HttpClient.postJson(udiWmsUrl + "/udiwms/thrsys/postCorps", postThrCorpRequest, getHeaders());
BaseResponse baseResponse = BaseResponse baseResponse =
JSONObject.parseObject(response, new TypeReference<BaseResponse>() { JSONObject.parseObject(response, new TypeReference<BaseResponse>() {
}); });
@ -48,7 +52,7 @@ public class UdiwmsClient {
} }
public BaseResponse postOrderDetail(PostFileThrOrderRequest postFileThrOrderRequest) { public BaseResponse postOrderDetail(PostFileThrOrderRequest postFileThrOrderRequest) {
String response = HttpClient.postJson(thirdSysConfig.getThirdSysConfig().getThirdSysUrl() + "/udiwms/thrsys/postFileOrder", postFileThrOrderRequest, getHeaders()); String response = HttpClient.postJson(udiWmsUrl + "/udiwms/thrsys/postFileOrder", postFileThrOrderRequest, getHeaders());
BaseResponse baseResponse = BaseResponse baseResponse =
JSONObject.parseObject(response, new TypeReference<BaseResponse>() { JSONObject.parseObject(response, new TypeReference<BaseResponse>() {
}); });
@ -56,7 +60,7 @@ public class UdiwmsClient {
} }
public BaseResponse postInvProducts(PostThrInvProductsRequest postThrInvProductsRequest) { public BaseResponse postInvProducts(PostThrInvProductsRequest postThrInvProductsRequest) {
String response = HttpClient.postJson(thirdSysConfig.getThirdSysConfig().getThirdSysUrl() + "/udiwms/thrsys/postInvProducts", postThrInvProductsRequest, getHeaders()); String response = HttpClient.postJson(udiWmsUrl + "/udiwms/thrsys/postInvProducts", postThrInvProductsRequest, getHeaders());
BaseResponse baseResponse = BaseResponse baseResponse =
JSONObject.parseObject(response, new TypeReference<BaseResponse>() { JSONObject.parseObject(response, new TypeReference<BaseResponse>() {
}); });

Loading…
Cancel
Save