|
@@ -191,6 +191,9 @@ public class SyncOrderInfoLogic {
|
|
|
ItfTblWorkOrderStatusService itfTblWorkOrderStatusService;
|
|
|
|
|
|
@Autowired
|
|
|
+ ItfTblCollectionRepairSymptomReasonService itfTblCollectionRepairSymptomReasonService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
SyncMapper syncMapper;
|
|
|
|
|
|
|
|
@@ -390,7 +393,7 @@ public class SyncOrderInfoLogic {
|
|
|
List<ItfTblCollectionRepair> collectionRepairList = new ArrayList<>();
|
|
|
List<ItfTblCollectionRepairPart> collectionRepairPartList = new ArrayList<>();
|
|
|
List<ItfTblCollectionRepairProject> collectionRepairProjectList = new ArrayList<>();
|
|
|
- List<ItfTblCollectionRepair> collectionRepairSymptomReasonList = new ArrayList<>();
|
|
|
+ List<ItfTblCollectionRepairSymptomReason> collectionRepairSymptomReasonList = new ArrayList<>();
|
|
|
List<ItfTblWorkOrderDetail> tblWorkOrderDetailList = new ArrayList<>();
|
|
|
|
|
|
List<ItfTblWorkOrder> itfTblWorkOrders = new ArrayList<>();
|
|
@@ -516,7 +519,7 @@ public class SyncOrderInfoLogic {
|
|
|
collectionRepairProjectList.stream().forEach(item -> item.setDownloadBatchNo(batch));
|
|
|
itfTblCollectionRepairProjectService.saveBatch(collectionRepairProjectList);
|
|
|
collectionRepairSymptomReasonList.stream().forEach(item -> item.setDownloadBatchNo(batch));
|
|
|
- itfTblCollectionRepairService.saveBatch(collectionRepairSymptomReasonList);
|
|
|
+ itfTblCollectionRepairSymptomReasonService.saveBatch(collectionRepairSymptomReasonList);
|
|
|
|
|
|
|
|
|
itfTblWorkOrderService.saveBatch(itfTblWorkOrders);
|