|
|
@ -7,6 +7,7 @@ import com.glxp.api.admin.constant.ConstantStatus;
|
|
|
|
import com.glxp.api.admin.entity.basic.*;
|
|
|
|
import com.glxp.api.admin.entity.basic.*;
|
|
|
|
import com.glxp.api.admin.entity.info.SystemParamConfigEntity;
|
|
|
|
import com.glxp.api.admin.entity.info.SystemParamConfigEntity;
|
|
|
|
import com.glxp.api.admin.req.basic.*;
|
|
|
|
import com.glxp.api.admin.req.basic.*;
|
|
|
|
|
|
|
|
import com.glxp.api.admin.res.basic.UdiRelevanceExportJsonResponse;
|
|
|
|
import com.glxp.api.admin.res.basic.UdiRelevanceResponse;
|
|
|
|
import com.glxp.api.admin.res.basic.UdiRelevanceResponse;
|
|
|
|
import com.glxp.api.admin.service.basic.BasicUnitMaintainService;
|
|
|
|
import com.glxp.api.admin.service.basic.BasicUnitMaintainService;
|
|
|
|
import com.glxp.api.admin.service.basic.CorpExportLogService;
|
|
|
|
import com.glxp.api.admin.service.basic.CorpExportLogService;
|
|
|
@ -222,6 +223,20 @@ public class BasicGenExcelService {
|
|
|
|
udiInfoExportLogService.updateUdiInfoExportLog(udiInfoExportLogEntity);
|
|
|
|
udiInfoExportLogService.updateUdiInfoExportLog(udiInfoExportLogEntity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Async
|
|
|
|
|
|
|
|
public void uploadProductsSmpJson(String genKey, UdiRelevanceExportJsonResponse exportData) {
|
|
|
|
|
|
|
|
UdiInfoExportLogEntity udiInfoExportLogEntity = udiInfoExportLogService.selectByGenKey(genKey);
|
|
|
|
|
|
|
|
String response = HttpClient.uCloudPost(spsSyncUrl + "/udiwms/basic/products/upload", exportData);
|
|
|
|
|
|
|
|
BaseResponse baseResponse = JSONObject.parseObject(response, new TypeReference<BaseResponse>() {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
|
|
|
udiInfoExportLogEntity.setStatus(BasicProcessStatus.UDIINFO_IMPORT_SUCCESS);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
udiInfoExportLogEntity.setRemark(baseResponse.getMessage());
|
|
|
|
|
|
|
|
udiInfoExportLogEntity.setStatus(BasicProcessStatus.UDIINFO_IMPORT_FAIL);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
udiInfoExportLogService.updateUdiInfoExportLog(udiInfoExportLogEntity);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Async
|
|
|
|
@Async
|
|
|
|
public void uploadProductsSmp(String genKey, UdiInfoExportRequest udiInfoExportRequest) {
|
|
|
|
public void uploadProductsSmp(String genKey, UdiInfoExportRequest udiInfoExportRequest) {
|
|
|
|