dev #172

Merged
ysCha merged 3 commits from dev into prd-deploy 2025-07-15 13:47:42 +09:00
3 changed files with 8 additions and 0 deletions
Showing only changes of commit 485a5d831c - Show all commits

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>