From b8fb5b844ca9e92d353431201f318c9b0b0f3ee2 Mon Sep 17 00:00:00 2001 From: ysCha Date: Wed, 30 Jul 2025 13:58:39 +0900 Subject: [PATCH] =?UTF-8?q?[1221]=20=EC=97=91=EC=85=80=EC=97=90=20?= =?UTF-8?q?=ED=95=98=EC=84=B8=EB=B9=84=EC=B9=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../qcast/biz/estimate/dto/RoofResponse.java | 3 +++ .../mappers/estimate/estimateMapper.xml | 6 +++++- ...el_download_quotation_detail_template.xlsx | Bin 73738 -> 74468 bytes 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/interplug/qcast/biz/estimate/dto/RoofResponse.java b/src/main/java/com/interplug/qcast/biz/estimate/dto/RoofResponse.java index a1c9bd6f..dc2071c1 100644 --- a/src/main/java/com/interplug/qcast/biz/estimate/dto/RoofResponse.java +++ b/src/main/java/com/interplug/qcast/biz/estimate/dto/RoofResponse.java @@ -91,4 +91,7 @@ public class RoofResponse { @Schema(description = "PC 아이템 ID") private String pcItemId; + + @Schema(description = "하세비치") + private Integer roofHajebichi; } diff --git a/src/main/resources/mappers/estimate/estimateMapper.xml b/src/main/resources/mappers/estimate/estimateMapper.xml index 288b815f..1ff28cb9 100644 --- a/src/main/resources/mappers/estimate/estimateMapper.xml +++ b/src/main/resources/mappers/estimate/estimateMapper.xml @@ -421,6 +421,7 @@ , ISNULL(C1.CODE_NM, '') AS ROOF_MATERIAL_NAME , ISNULL(C2.CODE_NM, '') AS SUPPORT_METHOD_NAME , ISNULL(C3.CODE_NM, '') AS CONSTRUCT_SPECIFICATION_NAME + , CR.ROOF_HAJEBICHI FROM T_PLAN P WITH (NOLOCK) INNER JOIN T_PLAN_INFO PI WITH (NOLOCK) ON P.OBJECT_NO = PI.OBJECT_NO @@ -437,12 +438,15 @@ LEFT OUTER JOIN M_COMM_L C3 WITH (NOLOCK) ON C3.HEAD_CD = '201300' AND RE.CONSTRUCT_SPECIFICATION = C3.CODE + LEFT OUTER JOIN TB_CANVAS_ROOF_MATERIALS_ADD CR WITH (NOLOCK) + ON P.OBJECT_NO = CR.OBJECT_NO + AND P.PLAN_NO = CR.PLAN_NO WHERE P.OBJECT_NO = #{objectNo} AND P.PLAN_NO = #{planNo}