From 59cb378f6164a4bf2babb6734e896f08c53a772f Mon Sep 17 00:00:00 2001 From: leebeomjun Date: Wed, 15 Nov 2023 10:15:02 +0900 Subject: [PATCH] =?UTF-8?q?=ED=86=B5=EA=B3=84=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WEB-INF/jsp/fims/stat/stat01040-main.jsp | 2 +- .../WEB-INF/jsp/fims/stat/stat01050-main.jsp | 6 ++- .../resources/js/fims/stat/rcvmPreset.js | 38 +++++++++++++++++++ 3 files changed, 44 insertions(+), 2 deletions(-) create mode 100644 src/main/webapp/resources/js/fims/stat/rcvmPreset.js diff --git a/src/main/webapp/WEB-INF/jsp/fims/stat/stat01040-main.jsp b/src/main/webapp/WEB-INF/jsp/fims/stat/stat01040-main.jsp index a8650124..52959581 100644 --- a/src/main/webapp/WEB-INF/jsp/fims/stat/stat01040-main.jsp +++ b/src/main/webapp/WEB-INF/jsp/fims/stat/stat01040-main.jsp @@ -21,7 +21,7 @@ - diff --git a/src/main/webapp/WEB-INF/jsp/fims/stat/stat01050-main.jsp b/src/main/webapp/WEB-INF/jsp/fims/stat/stat01050-main.jsp index b289d2d4..10c5be43 100644 --- a/src/main/webapp/WEB-INF/jsp/fims/stat/stat01050-main.jsp +++ b/src/main/webapp/WEB-INF/jsp/fims/stat/stat01050-main.jsp @@ -60,7 +60,11 @@ - + + + \ No newline at end of file diff --git a/src/main/webapp/resources/js/fims/stat/rcvmPreset.js b/src/main/webapp/resources/js/fims/stat/rcvmPreset.js new file mode 100644 index 00000000..74b23f02 --- /dev/null +++ b/src/main/webapp/resources/js/fims/stat/rcvmPreset.js @@ -0,0 +1,38 @@ +var rcvmPreset1 = [ + { aggregateType : "count" }, //수납건수 + { aggregateType : "sum", sumRefCol : "RCVMT_AMT" }, //수납금액 + + { aggregateType : "count", seperatorRefCol : "PAY_MTHD_SE_CD", conditionValue : "33", + seperatorCtgrType : "code", seperatorDtlCtgr : "FIM045"}, //가상계좌수납건수 + { aggregateType : "sum", seperatorRefCol : "PAY_MTHD_SE_CD", conditionValue : "33", sumRefCol : "RCVMT_AMT", + seperatorCtgrType : "code", seperatorDtlCtgr : "FIM045"}, //가상계좌수납금액 + { aggregateType : "count", seperatorRefCol : "PAY_MTHD_SE_CD", conditionValue : "OCR", + seperatorCtgrType : "code", seperatorDtlCtgr : "FIM045"}, //OCR수납건수 + { aggregateType : "sum", seperatorRefCol : "PAY_MTHD_SE_CD", conditionValue : "OCR", sumRefCol : "RCVMT_AMT", + seperatorCtgrType : "code", seperatorDtlCtgr : "FIM045"}, //OCR수납금액 + { aggregateType : "count", seperatorRefCol : "PAY_MTHD_SE_CD", conditionValue : "08", + seperatorCtgrType : "code", seperatorDtlCtgr : "FIM045"}, //인터넷카드수납건수 + { aggregateType : "sum", seperatorRefCol : "PAY_MTHD_SE_CD", conditionValue : "08", sumRefCol : "RCVMT_AMT", + seperatorCtgrType : "code", seperatorDtlCtgr : "FIM045"}, //인터넷카드수납금액 + { aggregateType : "count", seperatorRefCol : "PAY_MTHD_SE_CD", conditionValue : "999", + seperatorCtgrType : "code", seperatorDtlCtgr : "FIM045"}, //위택스수납건수 + { aggregateType : "sum", seperatorRefCol : "PAY_MTHD_SE_CD", conditionValue : "999", sumRefCol : "RCVMT_AMT", + seperatorCtgrType : "code", seperatorDtlCtgr : "FIM045"}, //위택스수납금액 + { aggregateType : "count", seperatorRefCol : "PAY_MTHD_SE_CD", conditionValue : "998", + seperatorCtgrType : "code", seperatorDtlCtgr : "FIM045"}, //ARS수납건수 + { aggregateType : "sum", seperatorRefCol : "PAY_MTHD_SE_CD", conditionValue : "998", sumRefCol : "RCVMT_AMT", + seperatorCtgrType : "code", seperatorDtlCtgr : "FIM045"}, //ARS수납금액 + { aggregateType : "count", seperatorRefCol : "PAY_MTHD_SE_CD", conditionValue : "ETC", + seperatorCtgrType : "code", seperatorDtlCtgr : "FIM045"}, //기타수납건수 + { aggregateType : "sum", seperatorRefCol : "PAY_MTHD_SE_CD", conditionValue : "ETC", sumRefCol : "RCVMT_AMT", + seperatorCtgrType : "code", seperatorDtlCtgr : "FIM045"} //기타수납금액 +]; + + + +var rcvmPreset1_codeSubsetInfoList = [ + { sourceGroup : "FIM045", sourceCodes : ["01","02"], + targetCode : "OCR", targetCodeVal : "OCR" }, + { sourceGroup : "FIM045", sourceCodes : ["03","04","05","06","07","09","10","23","31","32","41","44","50","51","81"], + targetCode : "ETC", targetCodeVal : "기타 등" } +]; \ No newline at end of file