|
@@ -20,20 +20,17 @@ public class SynFileOrderOperatingLog {
|
|
|
|
|
|
@Resource
|
|
|
OrderOperatingLogFileService orderOperatingLogFileService;
|
|
|
- @Resource
|
|
|
- GLPPWXGQueryAddService glppwxgQueryAddService;
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
// 从格力总部同步的反馈明细附件生成平台的附件信息
|
|
|
- @Scheduled(fixedDelayString = "${zjzbx}")
|
|
|
- public void processBX(){
|
|
|
+ @Scheduled(fixedDelay = 1 * 60 * 1000)
|
|
|
+ public void process(){
|
|
|
if (zjzbxc.equals(TaskConfigEnum.FALSE.getCode())){
|
|
|
return;
|
|
|
}
|
|
|
- if (1==1){
|
|
|
- return;
|
|
|
- }
|
|
|
+
|
|
|
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
|
|
@@ -41,8 +38,6 @@ public class SynFileOrderOperatingLog {
|
|
|
|
|
|
orderOperatingLogFileService.extractedRepairFile();
|
|
|
|
|
|
- glppwxgQueryAddService.extractedBx();
|
|
|
-
|
|
|
log.info("生成维修工单同步的附件信息结束: \uF0B7{}",sdf.format(new Date()));
|
|
|
}
|
|
|
}
|