|
@@ -155,6 +155,7 @@ public class TransSchedule {
|
|
|
}
|
|
|
//邮储已经回盘文件下载到本地
|
|
|
List<String> localNewFiles = ftpUtil.localNewFiles(ftpDownloadDir, resFiles, baseDir + File.separator);
|
|
|
+ log.info("------>本次新回盘文件"+ JSONObject.toJSONString(localNewFiles));
|
|
|
|
|
|
//执行回盘业务处理
|
|
|
if (localNewFiles != null && localNewFiles.size() > 0) {
|
|
@@ -163,6 +164,7 @@ public class TransSchedule {
|
|
|
bankService.updateOrderInfoPaymentRec(trans,newFile,newFile.replaceFirst("res", "qut"));
|
|
|
}
|
|
|
}
|
|
|
+ log.info("结束调度回盘任务");
|
|
|
}
|
|
|
|
|
|
public String getClearText(String fileName){
|
|
@@ -179,4 +181,55 @@ public class TransSchedule {
|
|
|
}
|
|
|
return null;
|
|
|
}
|
|
|
+
|
|
|
+ //@Scheduled(cron = "0 0/2 * * * ?")
|
|
|
+ public void checkClearOtherText(){
|
|
|
+ log.info("--->手动解析回盘文件");
|
|
|
+ //String checkTime = DateUtils.formatDate(new Date(),DateUtils.DEFAULT_FORMAT);
|
|
|
+ //得到转账中oderInfo的转账文件
|
|
|
+ //List<String> transFiles = clearingRecordService.getBankClearingFilesByTimed(checkTime);
|
|
|
+ List<String> transFiles = new ArrayList<>();
|
|
|
+ transFiles.add("20220616qut368.txt");
|
|
|
+ /*transFiles.add("20180418qut006.txt");
|
|
|
+ transFiles.add("20180418qut007.txt");
|
|
|
+ transFiles.add("20220523qut203.txt");*/
|
|
|
+ log.info("------>有没有文件"+ JSONObject.toJSONString(transFiles));
|
|
|
+ List<String> resFiles = new ArrayList<>();
|
|
|
+ if(null!=transFiles && transFiles.size()>0){
|
|
|
+ for (String transFile : transFiles) {
|
|
|
+ //回盘文件名称
|
|
|
+ String transRetFile = transFile.replaceFirst("qut", "res");
|
|
|
+ resFiles.add(transRetFile);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ //邮储已经回盘文件下载到本地
|
|
|
+ List<String> localNewFiles = ftpUtil.localNewFiles(ftpDownloadDir, resFiles, baseDir + File.separator);
|
|
|
+
|
|
|
+ //执行回盘业务处理
|
|
|
+ if (localNewFiles != null && localNewFiles.size() > 0) {
|
|
|
+ for (String newFile : localNewFiles){
|
|
|
+ List<TransVo> trans = TransUtils.fileToTransVo(baseDir, newFile);
|
|
|
+ bankService.updateOrderInfoPaymentRec(trans,newFile ,newFile.replaceFirst("res", "qut"));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 手动解析回盘文件
|
|
|
+ */
|
|
|
+ //@Scheduled(cron = "0 0/2 * * * ?")
|
|
|
+ public void checkClearWriterText(){
|
|
|
+ log.info("--->手动解析回盘文件");
|
|
|
+ //邮储已经回盘文件下载到本地
|
|
|
+ List<String> localNewFiles = new ArrayList<>();
|
|
|
+ localNewFiles.add("20220616res368.txt");
|
|
|
+
|
|
|
+ //执行回盘业务处理
|
|
|
+ if (localNewFiles != null && localNewFiles.size() > 0) {
|
|
|
+ for (String newFile : localNewFiles){
|
|
|
+ List<TransVo> trans = TransUtils.fileToTransVo(baseDir, newFile);
|
|
|
+ bankService.updateOrderInfoPaymentRec(trans,newFile ,newFile.replaceFirst("res", "qut"));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|