QCast API #886 견적서 Excel, Pdf 다운시 Open 제품은 단가 필드에 OPEN 텍스트로 보여주도록 #10

Merged
basssy merged 1 commits from feature/qcast-886 into dev 2025-04-08 16:34:44 +09:00

View File

@ -1409,6 +1409,11 @@ public class EstimateService {
itemResponse.setSalePrice(""); itemResponse.setSalePrice("");
itemResponse.setSaleTotPrice(""); itemResponse.setSaleTotPrice("");
} }
// 886 Excel, PDF에 OPEN_FLG = 1은 단가필드에 OPEN 텍스트로 보여주도록
if ("1".equals(itemResponse.getOpenFlg())) {
itemResponse.setSalePrice("OPEN");
}
} }
// 합산 문자열 통화로 변환 처리 // 합산 문자열 통화로 변환 처리
@ -1724,7 +1729,7 @@ public class EstimateService {
quoteList.add(estimateSendResponse); quoteList.add(estimateSendResponse);
estimateSendRequest.setQuoteList(quoteList); estimateSendRequest.setQuoteList(quoteList);
//2차점명 // 2차점명
estimateSendResponse.setSecSapSalesStoreCd(estimateRequest.getSecSapSalesStoreCd()); estimateSendResponse.setSecSapSalesStoreCd(estimateRequest.getSecSapSalesStoreCd());
} }