|
|
|
@ -8,6 +8,7 @@ import com.glxp.api.httpClient.utils.HttpOkClient;
|
|
|
|
|
import com.glxp.api.req.thrsys.ThrOnhandRequest;
|
|
|
|
|
import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.api.res.thrsys.ThrInvProductResponse;
|
|
|
|
|
import com.glxp.api.util.StringUtils;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
@ -23,30 +24,6 @@ public class ErpInvClientImpl implements ErpInvClient {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public BaseResponse<PageSimpleResponse<ThrInvProductResponse>> getInvPrdoductResponse(ThrOnhandRequest 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.getInventoryName() != null && !onhandRequest.getInventoryName().equals(""))
|
|
|
|
|
paramMap.put("inventoryName", onhandRequest.getInventoryName());
|
|
|
|
|
if (onhandRequest.getSpec() != null && !onhandRequest.getSpec().equals(""))
|
|
|
|
|
paramMap.put("spec", onhandRequest.getSpec());
|
|
|
|
|
if (onhandRequest.getRegisterCertNo() != null && !onhandRequest.getRegisterCertNo().equals(""))
|
|
|
|
|
paramMap.put("registerCertNo", onhandRequest.getRegisterCertNo());
|
|
|
|
|
if (onhandRequest.getManufactory() != null && !onhandRequest.getManufactory().equals(""))
|
|
|
|
|
paramMap.put("manufactory", onhandRequest.getManufactory());
|
|
|
|
|
|
|
|
|
|
if (onhandRequest.getFilterCount() != null && !onhandRequest.getFilterCount().equals(""))
|
|
|
|
|
paramMap.put("filterCount", onhandRequest.getFilterCount());
|
|
|
|
|
if (onhandRequest.getPage() != null)
|
|
|
|
|
paramMap.put("page", onhandRequest.getPage());
|
|
|
|
|
if (onhandRequest.getLimit() != null)
|
|
|
|
|
paramMap.put("limit", onhandRequest.getLimit());
|
|
|
|
|
|
|
|
|
|
String response = httpOkClient.uCloudPost(url, onhandRequest);
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse<PageSimpleResponse<ThrInvProductResponse>> onHandsResponse =
|
|
|
|
|