From 1e20367c38c6d3d22eec70e8957cf58dd71cd1fe Mon Sep 17 00:00:00 2001 From: zhangrui Date: Tue, 28 Apr 2026 14:04:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BD=93=E6=A3=80=E7=AE=A1=E7=90=86=EF=BC=9A?= =?UTF-8?q?=E4=BD=93=E6=A3=80=E9=A1=B9=E7=9B=AE=E4=BF=9D=E5=AD=98=E4=B8=8D?= =?UTF-8?q?=E9=9C=80=E8=A6=81=E9=87=8D=E6=96=B0=E7=94=9F=E6=88=90=E7=A1=AE?= =?UTF-8?q?=E8=AE=A4=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../HealthCheckupProjectMangeController.java | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/main/java/com/budwk/app/zhgh/dayofficework/healthCheckup/controller/HealthCheckupProjectMangeController.java b/src/main/java/com/budwk/app/zhgh/dayofficework/healthCheckup/controller/HealthCheckupProjectMangeController.java index b8c18170..9d474723 100644 --- a/src/main/java/com/budwk/app/zhgh/dayofficework/healthCheckup/controller/HealthCheckupProjectMangeController.java +++ b/src/main/java/com/budwk/app/zhgh/dayofficework/healthCheckup/controller/HealthCheckupProjectMangeController.java @@ -141,17 +141,17 @@ public class HealthCheckupProjectMangeController { healthCheckupProjectService.update(healthCheckupProject); } - healthCheckupProjectService.dao().clear(HealthCheckupUnionConfirm.class, Cnd.where("projectId", "=", projectId)); - List unionList = healthCheckupProjectService.dao().query(Sys_union.class, Cnd.NEW()); - List confirmList = new ArrayList<>(); - unionList.forEach(item -> { - HealthCheckupUnionConfirm c = new HealthCheckupUnionConfirm(); - c.setProjectId(projectId); - c.setUnionId(item.getId()); - c.setIsAudit(false); - confirmList.add(c); - }); - healthCheckupProjectService.dao().insert(confirmList); +// healthCheckupProjectService.dao().clear(HealthCheckupUnionConfirm.class, Cnd.where("projectId", "=", projectId)); +// List unionList = healthCheckupProjectService.dao().query(Sys_union.class, Cnd.NEW()); +// List confirmList = new ArrayList<>(); +// unionList.forEach(item -> { +// HealthCheckupUnionConfirm c = new HealthCheckupUnionConfirm(); +// c.setProjectId(projectId); +// c.setUnionId(item.getId()); +// c.setIsAudit(false); +// confirmList.add(c); +// }); +// healthCheckupProjectService.dao().insert(confirmList); Sys_home_activity sysHomeActivity = activityCultureService.dao().fetch(Sys_home_activity.class, Cnd.where("id", "=", healthCheckupProject.getId())); if(ObjectUtil.isNotEmpty(sysHomeActivity)){