|
|
|
@ -62,7 +62,6 @@ public class ThrCorpsDlService {
|
|
|
|
|
public void importSelectCorps(String genKey, List<ThrCorpsResponse> thrCorpsResponseList, String thirdSys) {
|
|
|
|
|
ThrSystemDetailEntity piDetailEntity = thrSystemDetailService.selectByKey("corpUrl", thirdSys);
|
|
|
|
|
if (piDetailEntity == null || piDetailEntity.getValue() == null) {
|
|
|
|
|
// WebSocketServer.sendInfo("往来单位接口未设置!", "sid");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
ThrCorpImportLogEntity thrProductsImportLogEntity = thrCorpImportLogService.selectByGenKey(genKey);
|
|
|
|
@ -103,7 +102,6 @@ public class ThrCorpsDlService {
|
|
|
|
|
|
|
|
|
|
thrCorpService.insertThrCorpss(thrCorpEntities);
|
|
|
|
|
redisUtil.set(Constant.dlThrProducts, "false");
|
|
|
|
|
// WebSocketServer.sendInfo("往来单位信息下载已完成,请刷新查看!", "sid");
|
|
|
|
|
thrProductsImportLogEntity.setStatus(BasicProcessStatus.UDIINFO_IMPORT_SUCCESS);
|
|
|
|
|
thrProductsImportLogEntity.setUpdateTime(new Date());
|
|
|
|
|
thrCorpImportLogService.updateImportLog(thrProductsImportLogEntity);
|
|
|
|
@ -115,7 +113,6 @@ public class ThrCorpsDlService {
|
|
|
|
|
public void importCorps(String genKey, ThrUnitMaintainFilterRequest thrUnitMaintainFilterRequest, String thirdSys) {
|
|
|
|
|
ThrSystemDetailEntity piDetailEntity = thrSystemDetailService.selectByKey("corpUrl", thirdSys);
|
|
|
|
|
if (piDetailEntity == null || piDetailEntity.getValue() == null) {
|
|
|
|
|
// WebSocketServer.sendInfo("往来单位接口未设置!", "sid");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
ThrCorpImportLogEntity thrProductsImportLogEntity = thrCorpImportLogService.selectByGenKey(genKey);
|
|
|
|
@ -143,7 +140,6 @@ public class ThrCorpsDlService {
|
|
|
|
|
thrCorpService.insertThrCorpss(data);
|
|
|
|
|
}
|
|
|
|
|
redisUtil.set(Constant.dlThrProducts, "false");
|
|
|
|
|
// WebSocketServer.sendInfo("往来单位信息下载已完成,请刷新查看!", "sid");
|
|
|
|
|
thrProductsImportLogEntity.setStatus(BasicProcessStatus.UDIINFO_IMPORT_SUCCESS);
|
|
|
|
|
thrProductsImportLogEntity.setUpdateTime(new Date());
|
|
|
|
|
thrCorpImportLogService.updateImportLog(thrProductsImportLogEntity);
|
|
|
|
@ -169,7 +165,6 @@ public class ThrCorpsDlService {
|
|
|
|
|
return thrCorpEntity;
|
|
|
|
|
}
|
|
|
|
|
).collect(Collectors.toList());
|
|
|
|
|
// thrCorpImportDetailService.insertCorpDetailImports(thrCorpImportDetailEntities);
|
|
|
|
|
thrCorpEntities = thrCorpImportDetailEntities.stream().map(
|
|
|
|
|
item -> {
|
|
|
|
|
ThrCorpEntity thrCorpEntity = new ThrCorpEntity();
|
|
|
|
@ -278,42 +273,6 @@ public class ThrCorpsDlService {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<List<String>> genExcelData(FilterThrCorpRequest filterThrOrderRequest) {
|
|
|
|
|
|
|
|
|
|
List<List<String>> excelData = new ArrayList<>();
|
|
|
|
|
List<ThrCorpEntity> thrCorpEntityList = new ArrayList<>();
|
|
|
|
|
List<ThrCorpsResponse> thrCorpsResponseList = thrCorpService.filterThrCorps(filterThrOrderRequest);
|
|
|
|
|
if (thrCorpsResponseList.size() > 0) {
|
|
|
|
|
thrCorpEntityList = thrCorpsResponseList.stream().map(
|
|
|
|
|
item -> {
|
|
|
|
|
ThrCorpEntity thrCorpEntity = new ThrCorpEntity();
|
|
|
|
|
BeanUtil.copyProperties(item, thrCorpEntity);
|
|
|
|
|
return thrCorpEntity;
|
|
|
|
|
}
|
|
|
|
|
).collect(Collectors.toList());
|
|
|
|
|
}
|
|
|
|
|
excelData.addAll(getRows(thrCorpEntityList));
|
|
|
|
|
return excelData;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<List<String>> getRows(List<ThrCorpEntity> thrCorpEntities) {
|
|
|
|
|
List<List<String>> excelData = new ArrayList<>();
|
|
|
|
|
for (ThrCorpEntity thrCorpEntity : thrCorpEntities) {
|
|
|
|
|
List<String> rows = new ArrayList<>();
|
|
|
|
|
rows.add(thrCorpEntity.getUnitId());
|
|
|
|
|
rows.add(thrCorpEntity.getName());
|
|
|
|
|
rows.add(thrCorpEntity.getSpell());
|
|
|
|
|
rows.add(thrCorpEntity.getAddr());
|
|
|
|
|
rows.add(thrCorpEntity.getCreditNo());
|
|
|
|
|
rows.add(thrCorpEntity.getContact());
|
|
|
|
|
rows.add(thrCorpEntity.getMobile());
|
|
|
|
|
excelData.add(rows);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
return excelData;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//导出生成json文件
|
|
|
|
|
@Async
|
|
|
|
|
public void genJsonFile(String genKey, ThrCorpExportRequest thrCorpExportRequest) {
|
|
|
|
|