|
|
@ -1,24 +1,15 @@
|
|
|
|
package com.glxp.sale.admin.thread.didl;
|
|
|
|
package com.glxp.sale.admin.thread.didl;
|
|
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
|
|
|
|
|
import com.glxp.sale.admin.constant.FileConstant;
|
|
|
|
|
|
|
|
import com.glxp.sale.admin.entity.param.SystemParamConfigEntity;
|
|
|
|
import com.glxp.sale.admin.entity.param.SystemParamConfigEntity;
|
|
|
|
import com.glxp.sale.admin.entity.sync.BasicExportStatusEntity;
|
|
|
|
|
|
|
|
import com.glxp.sale.admin.entity.sync.UdiCompanyEntity;
|
|
|
|
|
|
|
|
import com.glxp.sale.admin.service.param.SystemParamConfigService;
|
|
|
|
import com.glxp.sale.admin.service.param.SystemParamConfigService;
|
|
|
|
import com.glxp.sale.admin.service.sync.BasicExportService;
|
|
|
|
import com.glxp.sale.admin.service.sync.BasicExportService;
|
|
|
|
import com.glxp.sale.admin.util.FileUtils;
|
|
|
|
|
|
|
|
import com.glxp.sale.admin.util.RedisUtil;
|
|
|
|
import com.glxp.sale.admin.util.RedisUtil;
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
|
|
|
|
import org.springframework.scheduling.annotation.Async;
|
|
|
|
import org.springframework.scheduling.annotation.Async;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Service
|
|
|
|
@Service
|
|
|
|
public class AsyncCompanyDlService {
|
|
|
|
public class AsyncCompanyDlService {
|
|
|
@ -41,41 +32,41 @@ public class AsyncCompanyDlService {
|
|
|
|
|
|
|
|
|
|
|
|
@Async
|
|
|
|
@Async
|
|
|
|
public void asyncDiByTime(String updateTime) {
|
|
|
|
public void asyncDiByTime(String updateTime) {
|
|
|
|
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
|
|
|
|
// SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
|
|
|
|
if (systemParamConfigEntity.getParamValue().equals("1")) {
|
|
|
|
// if (systemParamConfigEntity.getParamValue().equals("1")) {
|
|
|
|
List<UdiCompanyEntity> mUdiCompanyEntities = new ArrayList<>();
|
|
|
|
// List<UdiCompanyEntity> mUdiCompanyEntities = new ArrayList<>();
|
|
|
|
int page = 1;
|
|
|
|
// int page = 1;
|
|
|
|
int limit = 300;
|
|
|
|
// int limit = 300;
|
|
|
|
while (true) {
|
|
|
|
// while (true) {
|
|
|
|
logger.info("更新时间:" + updateTime + "----" + page + "----" + limit);
|
|
|
|
// logger.info("更新时间:" + updateTime + "----" + page + "----" + limit);
|
|
|
|
List<UdiCompanyEntity> udiCompanyEntities = asyncDiDlHelper.dlCompanyByTime(page, limit, updateTime);
|
|
|
|
// List<UdiCompanyEntity> udiCompanyEntities = asyncDiDlHelper.dlCompanyByTime(page, limit, updateTime);
|
|
|
|
if (udiCompanyEntities != null && udiCompanyEntities.size() > 0) {
|
|
|
|
// if (udiCompanyEntities != null && udiCompanyEntities.size() > 0) {
|
|
|
|
mUdiCompanyEntities.addAll(udiCompanyEntities);
|
|
|
|
// mUdiCompanyEntities.addAll(udiCompanyEntities);
|
|
|
|
if (udiCompanyEntities.size() < limit) {
|
|
|
|
// if (udiCompanyEntities.size() < limit) {
|
|
|
|
break;
|
|
|
|
// break;
|
|
|
|
} else {
|
|
|
|
// } else {
|
|
|
|
page++;
|
|
|
|
// page++;
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
} else {
|
|
|
|
// } else {
|
|
|
|
break;
|
|
|
|
// break;
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
logger.info("更新时间:" + updateTime + "----" + "下载结束");
|
|
|
|
// logger.info("更新时间:" + updateTime + "----" + "下载结束");
|
|
|
|
|
|
|
|
//
|
|
|
|
SystemParamConfigEntity downstream = systemParamConfigService.selectByParamKey("sync_downstream_enable");
|
|
|
|
// SystemParamConfigEntity downstream = systemParamConfigService.selectByParamKey("sync_downstream_enable");
|
|
|
|
String key = "UdiCompanys" + System.currentTimeMillis();
|
|
|
|
// String key = "UdiCompanys" + System.currentTimeMillis();
|
|
|
|
String datas = JSON.toJSON(mUdiCompanyEntities).toString();
|
|
|
|
// String datas = JSON.toJSON(mUdiCompanyEntities).toString();
|
|
|
|
if (downstream.getParamValue().equals("1")) {
|
|
|
|
// if (downstream.getParamValue().equals("1")) {
|
|
|
|
redisUtil.set(key, datas);
|
|
|
|
// redisUtil.set(key, datas);
|
|
|
|
BasicExportStatusEntity myEntity = new BasicExportStatusEntity();
|
|
|
|
// BasicExportStatusEntity myEntity = new BasicExportStatusEntity();
|
|
|
|
myEntity.setId(key);
|
|
|
|
// myEntity.setId(key);
|
|
|
|
basicExportService.insertExportStatus(myEntity);
|
|
|
|
// basicExportService.insertExportStatus(myEntity);
|
|
|
|
} else {
|
|
|
|
// } else {
|
|
|
|
String path = getPath();
|
|
|
|
// String path = getPath();
|
|
|
|
String fileName = path + FileConstant.upWaitCopy_products + "UdiCompanys_" + key + ".LowerIn";
|
|
|
|
// String fileName = path + FileConstant.upWaitCopy_products + "UdiCompanys_" + key + ".LowerIn";
|
|
|
|
FileUtils.SaveFileAs(datas, fileName);
|
|
|
|
// FileUtils.SaveFileAs(datas, fileName);
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|