|
@@ -3598,7 +3598,9 @@ public class TaskController extends BladeController {
|
|
|
}
|
|
|
});
|
|
|
CompletableFuture.runAsync(() -> {
|
|
|
- jdbcTemplate.update("INSERT INTO s_reprot_raw(report_id,raw_json) VALUES (?,?)", new Object[]{report.getId(), JSON.toJSONString(rawListMap)});
|
|
|
+ /*原始数据备用*/
|
|
|
+ jdbcTemplate.execute("delete from s_report_raw where report_id="+report.getId());
|
|
|
+ jdbcTemplate.update("INSERT INTO s_report_raw(report_id,raw_json) VALUES (?,?)", report.getId(), JSON.toJSONString(rawListMap));
|
|
|
});
|
|
|
/*写死合并*/
|
|
|
/*List<ReportMergeCellsConfig> configList = ReportMergeCellsConfig.bulider();*/
|