|
|
|
@ -347,19 +347,20 @@ public class DlAllDataService {
|
|
|
|
|
spSyncUdiResponse.setProductInfoEntityList(mProductInfoEntities);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String key = "UdiPrdoucts" + System.currentTimeMillis();
|
|
|
|
|
String datas = JSON.toJSON(spSyncUdiResponse).toString();
|
|
|
|
|
if (downstream.getParamValue().equals("1")) {
|
|
|
|
|
redisUtil.set(key, datas);
|
|
|
|
|
BasicExportStatusEntity myEntity = new BasicExportStatusEntity();
|
|
|
|
|
myEntity.setId(key);
|
|
|
|
|
basicExportService.insertExportStatus(myEntity);
|
|
|
|
|
} else {
|
|
|
|
|
String path = getPath();
|
|
|
|
|
String fileName = path + FileConstant.upWaitCopy_products + "UdiPrdoucts_" + key + ".LowerIn";
|
|
|
|
|
FileUtils.SaveFileAs(datas, fileName);
|
|
|
|
|
if(CollUtil.isNotEmpty(spSyncUdiResponse.getProductInfoEntityList()) || CollUtil.isNotEmpty(spSyncUdiResponse.getUdiCompanyEntities())){
|
|
|
|
|
String key = "UdiPrdoucts" + System.currentTimeMillis();
|
|
|
|
|
String datas = JSON.toJSON(spSyncUdiResponse).toString();
|
|
|
|
|
if (downstream.getParamValue().equals("1")) {
|
|
|
|
|
redisUtil.set(key, datas);
|
|
|
|
|
BasicExportStatusEntity myEntity = new BasicExportStatusEntity();
|
|
|
|
|
myEntity.setId(key);
|
|
|
|
|
basicExportService.insertExportStatus(myEntity);
|
|
|
|
|
} else {
|
|
|
|
|
String path = getPath();
|
|
|
|
|
String fileName = path + FileConstant.upWaitCopy_products + "UdiPrdoucts_" + key + ".LowerIn";
|
|
|
|
|
FileUtils.SaveFileAs(datas, fileName);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BasicExportStatusEntity basicExportStatusEntity1 = basicExportStatusEntities.get(0);
|
|
|
|
|
basicExportStatusEntity1.setStatus(1);
|
|
|
|
|
spGetHttp.postUpdateBasicStatus(basicExportStatusEntity1);
|
|
|
|
|