From 4e3884c32ad681a63e50bb21b8e8a7a69e85ba08 Mon Sep 17 00:00:00 2001 From: "DESKTOP-6ARNG1Q\\dlsgk" Date: Tue, 4 Mar 2025 17:59:16 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B0=9C=EC=A0=84=EC=8B=9C=EB=AE=AC=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=EC=85=98=20PCS=20=EA=B8=B0=EC=A4=80=20=ED=85=8C?= =?UTF-8?q?=EC=9D=B4=EB=B8=94=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mappers/pwrGnrSimulation/pwrGnrSimMapper.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/resources/mappers/pwrGnrSimulation/pwrGnrSimMapper.xml b/src/main/resources/mappers/pwrGnrSimulation/pwrGnrSimMapper.xml index cf7be68f..af2e597e 100644 --- a/src/main/resources/mappers/pwrGnrSimulation/pwrGnrSimMapper.xml +++ b/src/main/resources/mappers/pwrGnrSimulation/pwrGnrSimMapper.xml @@ -53,12 +53,12 @@ /* sqlid : com.interplug.qcast.api.pwrGnrSimulation.selectRoofPcsGroupList (견적서 지붕재 pcs 그룹 list 조회) */ SELECT B.ITEM_ID - , B.ITEM_NO - , B.AMOUNT + , C.ITEM_NO + , 1 AS AMOUNT , D.CNV_EFF , D.AMP - , B.SPECIFICATION - FROM T_PART_ESTIMATE B WITH (NOLOCK) + , C.PNOW_W AS SPECIFICATION + FROM T_PART_CIRCUIT_ITEM_ESTIMATE B WITH (NOLOCK) INNER JOIN M_ITEM C WITH (NOLOCK) ON B.ITEM_ID = C.ITEM_ID LEFT OUTER JOIN M_ITEM_INFO D WITH (NOLOCK) @@ -66,7 +66,7 @@ WHERE C.POWER_COM_FLG ='1' /* PCS만 */ AND B.OBJECT_NO = #{objectNo} AND B.PLAN_NO = #{planNo} - ORDER BY B.SPECIFICATION + ORDER BY C.PNOW_W /* TODO :: 직렬,병렬 조건 추가필요 */