견적서 PDF API UI 수

This commit is contained in:
LAPTOP-L3VE7KK2\USER 2025-01-08 09:47:07 +09:00
parent 704c045e67
commit 48dadf4dd7
2 changed files with 15 additions and 5 deletions

View File

@ -1342,10 +1342,15 @@ public class EstimateService {
elm.text(StringUtils.defaultString(data.getObjectName()));
elm = doc.getElementById("objectNo1");
elm.text(StringUtils.defaultString(data.getObjectNo()));
elm.text(
StringUtils.defaultString(data.getObjectNo())
+ " / "
+ StringUtils.defaultString(data.getPlanNo()));
/*
elm = doc.getElementById("planNo");
elm.text(StringUtils.defaultString(data.getPlanNo()));
*/
elm = doc.getElementById("estimateDate");
elm.text(StringUtils.defaultString(data.getEstimateDate()));
@ -1432,8 +1437,13 @@ public class EstimateService {
elm = doc.getElementById("totPrice1");
elm.text(StringUtils.defaultString(data.getTotPrice()));
elm = doc.getElementById("remarks");
elm.text(StringUtils.defaultString(data.getRemarks()));
if (!StringUtils.isEmpty(data.getRemarks())) {
elm = doc.getElementById("remarks");
elm.text(StringUtils.defaultString(data.getRemarks()));
} else {
elm = doc.getElementById("remarks");
elm.remove();
}
// 견적서 특이사항 목록 설정
if (data.getNoteList() != null) {

View File

@ -372,10 +372,10 @@
<span class="tit">見積書番号 :</span>
<span id="objectNo1"></span>
</div>
<div class="product-count">
<!--<div class="product-count">
<span class="tit">プラン :</span>
<span id="planNo"></span>
</div>
</div>-->
</div>
<div class="product-form">
<span class="tit">日付 :</span>