From 38b251b6e3c3073d02870774ee12f7ab9d363f93 Mon Sep 17 00:00:00 2001 From: hjjeong Date: Tue, 31 Mar 2026 10:33:19 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EC=88=AB=EC=9E=90=20=EC=98=A4=EB=A5=B8?= =?UTF-8?q?=EC=AA=BD=20=EC=A0=95=EB=A0=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/com/pms/service/ApprovalService.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/com/pms/service/ApprovalService.java b/src/com/pms/service/ApprovalService.java index cb195da..892f45b 100644 --- a/src/com/pms/service/ApprovalService.java +++ b/src/com/pms/service/ApprovalService.java @@ -2770,13 +2770,13 @@ public class ApprovalService { for(Map item : itemList){ item = CommonUtils.toUpperCaseMapKey(item); html.append(""); - html.append("").append(no++).append(""); + html.append("").append(no++).append(""); html.append("").append(escapeHtml(CommonUtils.checkNull(item.get("DESCRIPTION")))).append(""); html.append("").append(escapeHtml(CommonUtils.checkNull(item.get("SPECIFICATION")))).append(""); - html.append("").append(formatNumber(CommonUtils.checkNull(item.get("QUANTITY")))).append(""); - html.append("").append(escapeHtml(CommonUtils.checkNull(item.get("UNIT")))).append(""); - html.append("").append(formatDecimalNumber(CommonUtils.checkNull(item.get("UNIT_PRICE")))).append(""); - html.append("").append(formatDecimalNumber(CommonUtils.checkNull(item.get("AMOUNT")))).append(""); + html.append("").append(formatNumber(CommonUtils.checkNull(item.get("QUANTITY")))).append(""); + html.append("").append(escapeHtml(CommonUtils.checkNull(item.get("UNIT")))).append(""); + html.append("").append(formatDecimalNumber(CommonUtils.checkNull(item.get("UNIT_PRICE")))).append(""); + html.append("").append(formatDecimalNumber(CommonUtils.checkNull(item.get("AMOUNT")))).append(""); html.append("").append(escapeHtml(CommonUtils.checkNull(item.get("REMARK")))).append(""); html.append(""); } From 2083986ced7dd17495f621f4e0587a7276fdd9a5 Mon Sep 17 00:00:00 2001 From: hjjeong Date: Tue, 31 Mar 2026 11:28:02 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EC=A3=BC=EB=AC=B8=EC=84=9C=EA=B4=80?= =?UTF-8?q?=EB=A6=AC=20=EC=88=98=EC=A3=BC=EB=93=B1=EB=A1=9D=ED=99=94?= =?UTF-8?q?=EB=A9=B4=20=ED=92=88=EB=AA=A9=20=ED=95=98=EB=8B=A8=20=ED=95=A9?= =?UTF-8?q?=EA=B3=84=20=EC=9E=90=EB=8F=99=EA=B3=84=EC=82=B0=20=EC=98=81?= =?UTF-8?q?=EC=97=AD=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../contractMgmt/orderRegistFormPopup.jsp | 47 +++++++++++++++++-- 1 file changed, 44 insertions(+), 3 deletions(-) diff --git a/WebContent/WEB-INF/view/contractMgmt/orderRegistFormPopup.jsp b/WebContent/WEB-INF/view/contractMgmt/orderRegistFormPopup.jsp index 419701b..ada99a8 100644 --- a/WebContent/WEB-INF/view/contractMgmt/orderRegistFormPopup.jsp +++ b/WebContent/WEB-INF/view/contractMgmt/orderRegistFormPopup.jsp @@ -41,6 +41,14 @@ width: 100%; box-sizing: border-box; } + + #itemListTable .item-quantity, + #itemListTable .item-unit-price, + #itemListTable .item-supply-price, + #itemListTable .item-vat, + #itemListTable .item-total-amount { + text-align: right; + }