|
@@ -146,7 +146,7 @@ public class DetailDownloadServiceImpl implements DetailDownloadService {
|
|
|
+ " c.download_task_type_name "
|
|
|
+ " FROM itf_gree_to_fa_download_task_list a,itf_gree_to_fa_download_task_type c "
|
|
|
+ " where a.download_task_type=c.download_task_type "
|
|
|
- + " and a.download_key_value='8d25c103548411eebd1b00163e0aad48' ");
|
|
|
+ + " and a.download_key_value='F1343427044A4432B7EC18C5A7AB9BBD' ");
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -419,6 +419,7 @@ public class DetailDownloadServiceImpl implements DetailDownloadService {
|
|
|
List<OrderInstallDetail> oids = new ArrayList<>();
|
|
|
List<OrderInstallDetailCode> oidcs = new ArrayList<>();
|
|
|
List<ItfGreeToFaDownloadTaskList> its = new ArrayList<>();
|
|
|
+ List<String> ids = new ArrayList<>();
|
|
|
int count = 1;
|
|
|
int outid=0;
|
|
|
|
|
@@ -447,7 +448,10 @@ public class DetailDownloadServiceImpl implements DetailDownloadService {
|
|
|
.eq(OrderInstallDetail::getOrderBaseId, order.getId())
|
|
|
.eq(OrderInstallDetail::getStatus,0).list();
|
|
|
if (CollectionUtils.isNotEmpty(delorderDetailRec)){
|
|
|
- orderInstallDetailService.removeByIds(delorderDetailRec);
|
|
|
+ delorderDetailRec.stream().forEach(ddr -> {
|
|
|
+ ids.add(ddr.getId());
|
|
|
+ });
|
|
|
+ orderInstallDetailService.removeByIds(ids);
|
|
|
}
|
|
|
|
|
|
for (ItfTblAzWgmxJyktDownload item :jykts){
|
|
@@ -1750,6 +1754,7 @@ public class DetailDownloadServiceImpl implements DetailDownloadService {
|
|
|
public void processOrderInstallDetailS(String downloadTaskNo, String pgguid) throws Exception {
|
|
|
List<OrderInstallDetail> oids = new ArrayList<>();
|
|
|
List<ItfGreeToFaDownloadTaskList> its = new ArrayList<>();
|
|
|
+ List<String> ids = new ArrayList<>();
|
|
|
int count = 1;
|
|
|
|
|
|
// 提取数据
|
|
@@ -1777,7 +1782,10 @@ public class DetailDownloadServiceImpl implements DetailDownloadService {
|
|
|
.eq(OrderInstallDetail::getOrderBaseId, order.getId())
|
|
|
.eq(OrderInstallDetail::getStatus,0).list();
|
|
|
if (CollectionUtils.isNotEmpty(delorderDetailRec)){
|
|
|
- orderInstallDetailService.removeByIds(delorderDetailRec);
|
|
|
+ delorderDetailRec.stream().forEach(ddr -> {
|
|
|
+ ids.add(ddr.getId());
|
|
|
+ });
|
|
|
+ orderInstallDetailService.removeByIds(ids);
|
|
|
}
|
|
|
|
|
|
for (ItfTblAzWgmxSyktDownload item :sykts){
|
|
@@ -1848,6 +1856,7 @@ public class DetailDownloadServiceImpl implements DetailDownloadService {
|
|
|
List<OrderInstallDetail> oids = new ArrayList<>();
|
|
|
List<ItfGreeToFaDownloadTaskList> its = new ArrayList<>();
|
|
|
List<OrderInstallDetailCode> oidcs = new ArrayList<>();
|
|
|
+ List<String> ids = new ArrayList<>();
|
|
|
int count = 1;
|
|
|
|
|
|
// 提取数据
|
|
@@ -1874,7 +1883,10 @@ public class DetailDownloadServiceImpl implements DetailDownloadService {
|
|
|
.eq(OrderInstallDetail::getOrderBaseId, order.getId())
|
|
|
.eq(OrderInstallDetail::getStatus,0).list();
|
|
|
if (CollectionUtils.isNotEmpty(delorderDetailRec)){
|
|
|
- orderInstallDetailService.removeByIds(delorderDetailRec);
|
|
|
+ delorderDetailRec.stream().forEach(ddr -> {
|
|
|
+ ids.add(ddr.getId());
|
|
|
+ });
|
|
|
+ orderInstallDetailService.removeByIds(ids);
|
|
|
}
|
|
|
|
|
|
for (ItfTblAzWgmxQitaDownload item :qts){
|