dev #172

Merged
ysCha merged 3 commits from dev into prd-deploy 2025-07-15 13:47:42 +09:00
5 changed files with 10 additions and 1 deletions

View File

@ -457,6 +457,7 @@ public class EstimateService {
itemRequest.setItemCtgGr(itemResponse.getItemCtgGr());
itemRequest.setPartAdd("0");
itemRequest.setDelFlg("0");
itemRequest.setQcastCustPrdId(itemResponse.getQcastCustPrdId());
break;
}
}

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

@ -23,7 +23,7 @@ spring:
names: ${job.name:NONE}
enabled: false
profiles:
scheduler: N
scheduler: Y
#QSP url 하나시스운영 #https://jp.qsalesplatform.com
#QSP url 하나시스개발 #http://121.168.9.37:8080

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>