|
|
|
@ -947,7 +947,14 @@ public class CleanServiceImpl implements CleanService, ManagerTodoNoticeProvider
|
|
|
|
|
return JSON.parseObject(reportItem.getString("result"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return paymentApi.validTransactions(dt, fix);
|
|
|
|
|
JSONObject report = paymentApi.validTransactions(dt, fix);
|
|
|
|
|
JSONObject log = new JSONObject();
|
|
|
|
|
log.put("valid_date", dt);
|
|
|
|
|
log.put("create_time", new Date());
|
|
|
|
|
log.put("result", report.toJSONString());
|
|
|
|
|
validationLogMapper.removeByDate(dt);
|
|
|
|
|
validationLogMapper.save(log);
|
|
|
|
|
return report;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private byte[] getZipByteArr(List<JSONObject> fileByteArrWithName) throws IOException {
|
|
|
|
|