|
|
|
@ -31,9 +31,6 @@ import java.util.Map;
|
|
|
|
|
@Service
|
|
|
|
|
public class SpGetHttpClient {
|
|
|
|
|
|
|
|
|
|
// @Value("${SPSYNC_IP}")
|
|
|
|
|
// private String spsSyncUrl;
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
private OkHttpCli okHttpCli;
|
|
|
|
|
|
|
|
|
@ -47,9 +44,9 @@ public class SpGetHttpClient {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BaseResponse<PageSimpleResponse<IOOrderStatusEntity>> getOrderStatus() {
|
|
|
|
|
Map<String, Object> paramMap = new HashMap<>(16);
|
|
|
|
|
paramMap.put("status", 1);
|
|
|
|
|
String response = UHttpClient.mipsGet(getIpUrl() + "/spms/inout/order/status", paramMap);
|
|
|
|
|
Map<String, String> paramMap = new HashMap<>(16);
|
|
|
|
|
paramMap.put("status", 1 + "");
|
|
|
|
|
String response = okHttpCli.doGet(getIpUrl() + "/spms/inout/order/status", paramMap);
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse<PageSimpleResponse<IOOrderStatusEntity>> data =
|
|
|
|
|
JSONObject.parseObject(response, new TypeReference<BaseResponse<PageSimpleResponse<IOOrderStatusEntity>>>() {
|
|
|
|
@ -64,9 +61,9 @@ public class SpGetHttpClient {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BaseResponse<List<DlOrderResponse>> getOrders(String orderId) {
|
|
|
|
|
Map<String, Object> paramMap = new HashMap<>(16);
|
|
|
|
|
Map<String, String> paramMap = new HashMap<>(16);
|
|
|
|
|
paramMap.put("orderId", orderId);
|
|
|
|
|
String response = UHttpClient.mipsGet(getIpUrl() + "/spms/inout/order/dlByStatus", paramMap);
|
|
|
|
|
String response = okHttpCli.doGet(getIpUrl() + "/spms/inout/order/dlByStatus", paramMap);
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse<List<DlOrderResponse>> data =
|
|
|
|
|
JSONObject.parseObject(response, new TypeReference<BaseResponse<List<DlOrderResponse>>>() {
|
|
|
|
@ -83,7 +80,8 @@ public class SpGetHttpClient {
|
|
|
|
|
OrderStatusFilterRequest orderStatusFilterRequest = new OrderStatusFilterRequest();
|
|
|
|
|
orderStatusFilterRequest.setOrderId(orderId);
|
|
|
|
|
orderStatusFilterRequest.setStatus(2);
|
|
|
|
|
String result = UHttpClient.postJson(getIpUrl() + "/spms/inout/order/updateStatus", orderStatusFilterRequest);
|
|
|
|
|
String json = JSONUtil.toJsonStr(orderStatusFilterRequest);
|
|
|
|
|
String result = okHttpCli.doPostJson(getIpUrl() + "/spms/inout/order/updateStatus", json);
|
|
|
|
|
BaseResponse<String> response =
|
|
|
|
|
JSONObject.parseObject(result, new TypeReference<BaseResponse<String>>() {
|
|
|
|
|
});
|
|
|
|
@ -92,9 +90,9 @@ public class SpGetHttpClient {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BaseResponse<List<BasicExportStatusEntity>> getBasicStatus(String type) {
|
|
|
|
|
Map<String, Object> paramMap = new HashMap<>(16);
|
|
|
|
|
Map<String, String> paramMap = new HashMap<>(16);
|
|
|
|
|
paramMap.put("type", type);
|
|
|
|
|
String response = UHttpClient.mipsGet(getIpUrl() + "/spssync/basic/udiinfo/getStatus", paramMap);
|
|
|
|
|
String response = okHttpCli.doGet(getIpUrl() + "/spssync/basic/udiinfo/getStatus", paramMap);
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse<List<BasicExportStatusEntity>> data =
|
|
|
|
|
JSONObject.parseObject(response, new TypeReference<BaseResponse<List<BasicExportStatusEntity>>>() {
|
|
|
|
@ -108,8 +106,7 @@ public class SpGetHttpClient {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BaseResponse<String> testConnect() {
|
|
|
|
|
Map<String, Object> paramMap = new HashMap<>(16);
|
|
|
|
|
String response = UHttpClient.mipsGet(getIpUrl() + "/sps/sync/connect/test", paramMap);
|
|
|
|
|
String response = okHttpCli.doGet(getIpUrl() + "/sps/sync/connect/test");
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse<String> data =
|
|
|
|
|
JSONObject.parseObject(response, new TypeReference<BaseResponse<String>>() {
|
|
|
|
@ -123,7 +120,7 @@ public class SpGetHttpClient {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BaseResponse<List<BasicExportStatusEntity>> getBasicStatus(BasicExportStatusRequest basicExportStatusRequest) {
|
|
|
|
|
Map<String, Object> paramMap = new HashMap<>(16);
|
|
|
|
|
Map<String, String> paramMap = new HashMap<>(16);
|
|
|
|
|
if (basicExportStatusRequest.getType() != null)
|
|
|
|
|
paramMap.put("type", basicExportStatusRequest.getType() + "");
|
|
|
|
|
if (basicExportStatusRequest.getStatus() != null)
|
|
|
|
@ -131,8 +128,8 @@ public class SpGetHttpClient {
|
|
|
|
|
if (basicExportStatusRequest.getId() != null)
|
|
|
|
|
paramMap.put("id", basicExportStatusRequest.getId());
|
|
|
|
|
if (basicExportStatusRequest.getScheduleType() != null)
|
|
|
|
|
paramMap.put("scheduleType", basicExportStatusRequest.getScheduleType());
|
|
|
|
|
String response = UHttpClient.mipsGet(getIpUrl() + "/spssync/basic/udiinfo/getStatus", paramMap);
|
|
|
|
|
paramMap.put("scheduleType", basicExportStatusRequest.getScheduleType() + "");
|
|
|
|
|
String response = okHttpCli.doGet(getIpUrl() + "/spssync/basic/udiinfo/getStatus", paramMap);
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse<List<BasicExportStatusEntity>> data =
|
|
|
|
|
JSONObject.parseObject(response, new TypeReference<BaseResponse<List<BasicExportStatusEntity>>>() {
|
|
|
|
@ -160,7 +157,8 @@ public class SpGetHttpClient {
|
|
|
|
|
public BaseResponse<String> postBasicStatus(String id) {
|
|
|
|
|
BasicExportStatusRequest basicStatusFilterRequest = new BasicExportStatusRequest();
|
|
|
|
|
basicStatusFilterRequest.setId(id);
|
|
|
|
|
String result = UHttpClient.postJson(getIpUrl() + "/spssync/basic/udiinfo/deleteByStatus", basicStatusFilterRequest);
|
|
|
|
|
String json = JSONUtil.toJsonStr(basicStatusFilterRequest);
|
|
|
|
|
String result = okHttpCli.doPostJson(getIpUrl() + "/spssync/basic/udiinfo/deleteByStatus", json);
|
|
|
|
|
BaseResponse<String> response =
|
|
|
|
|
JSONObject.parseObject(result, new TypeReference<BaseResponse<String>>() {
|
|
|
|
|
});
|
|
|
|
@ -169,7 +167,8 @@ public class SpGetHttpClient {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BaseResponse<String> postAllBaseData(SpsSyncDataResponse syncDataResponse) {
|
|
|
|
|
String result = UHttpClient.postJson(getIpUrl() + "/sps/sync/basic/upload", syncDataResponse);
|
|
|
|
|
String json = JSONUtil.toJsonStr(syncDataResponse);
|
|
|
|
|
String result = okHttpCli.doPostJson(getIpUrl() + "/sps/sync/basic/upload", json);
|
|
|
|
|
BaseResponse<String> response =
|
|
|
|
|
JSONObject.parseObject(result, new TypeReference<BaseResponse<String>>() {
|
|
|
|
|
});
|
|
|
|
@ -178,7 +177,8 @@ public class SpGetHttpClient {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BaseResponse<String> postAllBus(SpsSyncBusResponse spsSyncBusResponse) {
|
|
|
|
|
String result = UHttpClient.postJson(getIpUrl() + "/sps/sync/busType/upload", spsSyncBusResponse);
|
|
|
|
|
String json = JSONUtil.toJsonStr(spsSyncBusResponse);
|
|
|
|
|
String result = okHttpCli.doPostJson(getIpUrl() + "/sps/sync/busType/upload", json);
|
|
|
|
|
BaseResponse<String> response =
|
|
|
|
|
JSONObject.parseObject(result, new TypeReference<BaseResponse<String>>() {
|
|
|
|
|
});
|
|
|
|
@ -187,7 +187,8 @@ public class SpGetHttpClient {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BaseResponse<String> postAllOrder(SpsSyncOrderResponse spsSyncOrderResponse) {
|
|
|
|
|
String result = UHttpClient.postJson(getIpUrl() + "/sps/sync/order/upload", spsSyncOrderResponse);
|
|
|
|
|
String json = JSONUtil.toJsonStr(spsSyncOrderResponse);
|
|
|
|
|
String result = okHttpCli.doPostJson(getIpUrl() + "/sps/sync/order/upload", json);
|
|
|
|
|
BaseResponse<String> response =
|
|
|
|
|
JSONObject.parseObject(result, new TypeReference<BaseResponse<String>>() {
|
|
|
|
|
});
|
|
|
|
@ -195,7 +196,8 @@ public class SpGetHttpClient {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BaseResponse<String> postAllSchedule(SpsSyncScheduleResponse spsSyncScheduleResponse) {
|
|
|
|
|
String result = UHttpClient.postJson(getIpUrl() + "/sps/sync/schedule/upload", spsSyncScheduleResponse);
|
|
|
|
|
String json = JSONUtil.toJsonStr(spsSyncScheduleResponse);
|
|
|
|
|
String result = okHttpCli.doPostJson(getIpUrl() + "/sps/sync/schedule/upload", json);
|
|
|
|
|
BaseResponse<String> response =
|
|
|
|
|
JSONObject.parseObject(result, new TypeReference<BaseResponse<String>>() {
|
|
|
|
|
});
|
|
|
|
|