From a2ad71a0808a297bcb15ae00e89bea0c2a82a13d Mon Sep 17 00:00:00 2001 From: daekuk Date: Wed, 10 Dec 2025 14:10:48 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B1=B0=EB=9E=98=EB=A1=9C=EA=B7=B8=EC=97=90?= =?UTF-8?q?=EC=84=9C=20=EB=B2=95=EC=9D=B8=EB=AA=85=EC=9D=B4=20=EB=AF=B8?= =?UTF-8?q?=EB=B6=84=EB=A5=98,=20null=20=EC=9D=B4=EB=A9=B4=20=EA=B3=B5?= =?UTF-8?q?=EB=B0=B1=ED=91=9C=EC=8B=9C=EB=90=98=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../onl/transaction/tracking/trackingMan.jsp | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/WebContent/jsp/onl/transaction/tracking/trackingMan.jsp b/WebContent/jsp/onl/transaction/tracking/trackingMan.jsp index 8d28db8..4adb311 100644 --- a/WebContent/jsp/onl/transaction/tracking/trackingMan.jsp +++ b/WebContent/jsp/onl/transaction/tracking/trackingMan.jsp @@ -291,6 +291,18 @@ } + function orgNameFormatter(cellvalue, options, rowObject) { + if (cellValue == null) return ""; + + if (cellValue === "null" || cellValue === "NULL") return ""; + + if (String(cellValue).trim() === "") return ""; + + if (cellValue === "미분류") return ""; + + return cellvalue; + } + $(document).ready(function () { console.log(roleString); @@ -362,7 +374,7 @@ {name: 'TRACKASISKEY2CTNT', hidden: true}, {name: 'EAISVCSERNO_TMP', align: 'left', width: '230'}, - {name: 'KEYMGTMSGCTNT', align: 'left', width: '280'}, + {name: 'KEYMGTMSGCTNT', align: 'left', width: '240'}, {name: 'LOGPRCSSSERNO_TMP', align: 'center', width: '40'}, {name: 'TELGMRECVTRANCD', align: 'left', width: '135', hidden: true}, {name: 'EAISVCNAME', align: 'left', width: '100'}, @@ -370,8 +382,8 @@ {name: 'EAIBZWKDSTCD_TMP', align: 'center', width: '50'}, {name: 'EXTBIZCD', align: 'center', width: '50', hidden: isApiGw}, {name: 'REFKEY', align: 'left', width: '280', hidden: isApiGw}, - {name: 'CLIENTNAME', align: 'left', width: '100', hidden: !isApiGw}, - {name: 'ORGNAME', align: 'left', width: '100', hidden: !isApiGw}, + {name: 'CLIENTNAME', align: 'left', width: '280', hidden: !isApiGw}, + {name: 'ORGNAME', align: 'left', width: '100', hidden: !isApiGw, formatter: orgNameFormatter}, {name: 'MSGDPSTYMS_TMP', align: 'center', width: '150', formatter: timeStampFormat2}, {name: 'MSGPRCSSYMS', align: 'center', width: '150', formatter: timeStampFormat2}, {name: 'COMPANYCODE', align: 'center', width: '80', hidden: true},