[1155] Excel에 출력되는 설비 용량(인정 용량)이 다릅니다 - qcast_cust_prd_id 추가

This commit is contained in:
cha 2025-07-15 11:15:23 +09:00
parent cf7a5ceb17
commit 485a5d831c
3 changed files with 8 additions and 0 deletions

View File

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

View File

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

View File

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