|
|
|
@ -21,38 +21,7 @@ public class ErpInvClient {
|
|
|
|
|
@Resource
|
|
|
|
|
HttpOkClient httpOkClient;
|
|
|
|
|
|
|
|
|
|
public List<ErpOnHandResponse> getOnHand(ErpOnhandRequest onhandRequest, String url) {
|
|
|
|
|
|
|
|
|
|
BaseResponse<PageSimpleResponse<ErpOnHandResponse>> onHandsResponse = getOnHandResponse(onhandRequest, url);
|
|
|
|
|
List<ErpOnHandResponse> erpOnHandResponses = onHandsResponse.getData().getList();
|
|
|
|
|
return erpOnHandResponses;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BaseResponse<PageSimpleResponse<ErpOnHandResponse>> getOnHandResponse(ErpOnhandRequest onhandRequest, String url) {
|
|
|
|
|
|
|
|
|
|
Map<String, Object> paramMap = new HashMap<>(16);
|
|
|
|
|
if (onhandRequest.getBatchNo() != null && !onhandRequest.getBatchNo().equals(""))
|
|
|
|
|
paramMap.put("batchNo", onhandRequest.getBatchNo());
|
|
|
|
|
if (onhandRequest.getWarehouseCode() != null && !onhandRequest.getWarehouseCode().equals(""))
|
|
|
|
|
paramMap.put("warehouseCode", onhandRequest.getWarehouseCode());
|
|
|
|
|
if (onhandRequest.getInventoryCode() != null && !onhandRequest.getInventoryCode().equals(""))
|
|
|
|
|
paramMap.put("inventoryCode", onhandRequest.getInventoryCode());
|
|
|
|
|
if (onhandRequest.getPage() != null)
|
|
|
|
|
paramMap.put("page", onhandRequest.getPage());
|
|
|
|
|
if (onhandRequest.getLimit() != null)
|
|
|
|
|
paramMap.put("limit", onhandRequest.getLimit());
|
|
|
|
|
// String response = HttpClient.mipsGet(url, paramMap);
|
|
|
|
|
String response = httpOkClient.uCloudPost(url, onhandRequest);
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse<PageSimpleResponse<ErpOnHandResponse>> onHandsResponse =
|
|
|
|
|
JSONObject.parseObject(response, new TypeReference<BaseResponse<PageSimpleResponse<ErpOnHandResponse>>>() {
|
|
|
|
|
});
|
|
|
|
|
return onHandsResponse;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BaseResponse<PageSimpleResponse<ErpInvProductResponse>> getInvPrdoductResponse(ErpOnhandRequest onhandRequest, String url) {
|
|
|
|
|
|
|
|
|
|