From 12adb40a616f31a8b5d786ee6ffb6762a85215fa Mon Sep 17 00:00:00 2001 From: wangzhijiang <12345678> Date: Mon, 20 Feb 2023 13:46:57 +0800 Subject: [PATCH] =?UTF-8?q?uat=E6=B8=85=E5=8D=95-49-=E8=AE=A4=E8=AF=81?= =?UTF-8?q?=E8=BF=9B=E5=BA=A6=E7=9A=84=E7=BB=9F=E8=AE=A1=E5=BA=94=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E4=B8=BA=E5=BE=85=E5=BC=80=E5=A7=8B=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-boot/db/蔚来标准sql/dev_2nd_period.sql | 9 +++++++++ .../service/impl/ProjectLawsInventoryEOServiceImpl.java | 5 +++++ .../service/impl/ProjectTaskInventoryEOServiceImpl.java | 1 + 3 files changed, 15 insertions(+) diff --git a/jero-boot/db/蔚来标准sql/dev_2nd_period.sql b/jero-boot/db/蔚来标准sql/dev_2nd_period.sql index 2c10b0303..4faf12f61 100644 --- a/jero-boot/db/蔚来标准sql/dev_2nd_period.sql +++ b/jero-boot/db/蔚来标准sql/dev_2nd_period.sql @@ -201,3 +201,12 @@ ADD COLUMN `msg_content_info_cn` text NULL COMMENT '消息内容(中文)' AF -- 上报库-参数项查看页表头 责任领域更新为展示列表sql 2023-02-17 未同步生产环境 UPDATE `laws_weilai`.`onl_cgform_field` SET `is_show_list` = 1 WHERE `id` = 'c31d68e204960c073b1fb8126a443492'; + +-- 任务清单-初始化 认证进度状态sql 2023-02-20 未同步生产环境 +UPDATE `laws_weilai`.`project_task_inventory` +SET `certification_progress` = 'Not start' +WHERE + `id` IN ( select temp.temp_id from ( + SELECT id as temp_id FROM `laws_weilai`.`project_task_inventory` WHERE certification_progress IS NULL + ) temp + ); diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/project/service/impl/ProjectLawsInventoryEOServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/project/service/impl/ProjectLawsInventoryEOServiceImpl.java index 4dfb665ff..2a9e6a82e 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/project/service/impl/ProjectLawsInventoryEOServiceImpl.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/project/service/impl/ProjectLawsInventoryEOServiceImpl.java @@ -348,6 +348,7 @@ public class ProjectLawsInventoryEOServiceImpl extends ServiceImpl { @@ -5837,6 +5841,7 @@ public class ProjectLawsInventoryEOServiceImpl extends ServiceImpl