Merge pull request '[1155] Excel에 출력되는 설비 용량(인정 용량)이 다릅니다 - qcast_cust_prd_id 추가' (#169) from dev into dev-deploy

Reviewed-on: #169
This commit is contained in:
ysCha 2025-07-15 11:16:06 +09:00
commit 01a6139b57
3 changed files with 8 additions and 0 deletions

View File

@ -112,4 +112,7 @@ public class ItemRequest {
@Schema(description = "unit price 아이템 오픈가 여부") @Schema(description = "unit price 아이템 오픈가 여부")
private String unitOpenFlg; private String unitOpenFlg;
@Schema(description = "Q.CAST 고객 제품 ID")
public String qcastCustPrdId;
} }

View File

@ -94,4 +94,7 @@ public class ItemResponse {
@Schema(description = "단위 중량") @Schema(description = "단위 중량")
public String grossWt; public String grossWt;
@Schema(description = "Q.CAST 고객 제품 ID")
public String qcastCustPrdId;
} }

View File

@ -1051,6 +1051,7 @@
, SPECIFICATION , SPECIFICATION
, AMOUNT , AMOUNT
, PC_ITEM_ID , PC_ITEM_ID
, QCAST_CUST_PRD_ID
) )
SELECT SELECT
#{roofItemNo} AS ROOF_ITEM_NO #{roofItemNo} AS ROOF_ITEM_NO
@ -1063,6 +1064,7 @@
, I.PNOW_W , I.PNOW_W
, #{amount} , #{amount}
, #{pcItemId} , #{pcItemId}
, #{qcastCustPrdId}
FROM M_ITEM I WITH (NOLOCK) FROM M_ITEM I WITH (NOLOCK)
WHERE I.ITEM_ID = #{itemId} WHERE I.ITEM_ID = #{itemId}
</insert> </insert>