Compare commits

...

2 Commits

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());
} }