견적서 PDF API UI 수
This commit is contained in:
parent
704c045e67
commit
48dadf4dd7
@ -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) {
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user