no message

main
이범준 2 months ago
parent 372937a81f
commit 0b87394eb5

@ -3,21 +3,21 @@
<mapper namespace="cfs.fine.dao.FinePmDao">
<!-- 부과고지 및 납부실적 조회 [FN53] -->
<resultMap id="findFinePmList-resultMap" type="cfs.fine.vo.FinePmVO">
<result property="year" column="YEAR" />
<result property="mon" column="MONTH" />
<result property="division" column="MOTION_ID2" />
<result property="notifiCnt" column="GOJI_CNT" />
<result property="notifiPri" column="GOJI_AMT" />
<result property="paymentCnt" column="NABU_CNT" />
<result property="paymentPri" column="NABU_AMT" />
<result property="year" column="YEAR" />
<result property="mon" column="MONTH" />
<result property="division" column="MOTION_ID2" />
<result property="notifiCnt" column="GOJI_CNT" />
<result property="notifiPri" column="GOJI_AMT" />
<result property="paymentCnt" column="NABU_CNT" />
<result property="paymentPri" column="NABU_AMT" />
<result property="paymentRate" column="R" />
<result property="name" column="name" />
<result property="nonpayCnt" column="NonpayCnt" />
<result property="nonpayPri" column="NonpayPri" />
<result property="cancelCnt" column="GAM_CNT" />
<result property="cancelPri" column="GAM_AMT" />
<result property="defectCnt" column="DOB_CNT" />
<result property="defectPri" column="DOB_AMT" />
<result property="name" column="name" />
<result property="nonpayCnt" column="NonpayCnt" />
<result property="nonpayPri" column="NonpayPri" />
<result property="cancelCnt" column="GAM_CNT" />
<result property="cancelPri" column="GAM_AMT" />
<result property="defectCnt" column="DOB_CNT" />
<result property="defectPri" column="DOB_AMT" />
</resultMap>
<!-- 비부과 대상차량 현황[FN54] -->
@ -452,14 +452,14 @@
FROM ( SELECT YEAR
, MONTH
, MOTION_ID
, COUNT(*) AS GOJI_CNT
, COUNT(*) AS GOJI_CNT
, NVL(SUM(NVL(LAVY_AMOUNT, 0)), 0) AS GOJI_AMT
, 0 NABU_CNT
, 0 NABU_AMT
, 0 GAM_CNT
, 0 GAM_AMT
, 0 DOB_CNT
, 0 DOB_AMT
, 0 AS NABU_CNT
, 0 AS NABU_AMT
, 0 AS GAM_CNT
, 0 AS GAM_AMT
, 0 AS DOB_CNT
, 0 AS DOB_AMT
FROM ( SELECT A.YEAR
, A.MONTH
, A.PENALTY_MANAGE_YEAR
@ -500,15 +500,15 @@
UNION ALL
SELECT YEAR
, MONTH
, '7' MOTION_ID
, COUNT(*)
, NVL(SUM(NVL(LAVY_AMOUNT, 0)), 0)
, 0 NABU_CNT
, 0 NABU_AMT
, 0 GAM_CNT
, 0 GAM_AMT
, 0 DOB_CNT
, 0 DOB_AMT
, '7' AS MOTION_ID
, COUNT(*) AS GOJI_CNT
, NVL(SUM(NVL(LAVY_AMOUNT, 0)), 0) AS GOJI_AMT
, 0 AS NABU_CNT
, 0 AS NABU_AMT
, 0 AS GAM_CNT
, 0 AS GAM_AMT
, 0 AS DOB_CNT
, 0 AS DOB_AMT
FROM ( SELECT A.YEAR
, A.MONTH
, A.PENALTY_MANAGE_YEAR
@ -537,14 +537,14 @@
SELECT YEAR
, MONTH
, MOTION_ID
, 0 GOJI_CNT
, 0 GIJI_AMT
, COUNT(*) AS N_CNT
, NVL(SUM(NVL(LAVY_AMOUNT, 0)), 0) AS N_AMOUNT
, 0 GAM_CNT
, 0 GAM_AMT
, 0 DOB_CNT
, 0 DOB_AMT
, 0 AS GOJI_CNT
, 0 AS GOJI_AMT
, COUNT(*) AS NABU_CNT
, NVL(SUM(NVL(LAVY_AMOUNT, 0)), 0) AS NABU_AMT
, 0 AS GAM_CNT
, 0 AS GAM_AMT
, 0 AS DOB_CNT
, 0 AS DOB_AMT
FROM ( SELECT A.YEAR
, A.MONTH
, SUBSTR(B.RECEIPT_ID, 1, 1) MOTION_ID
@ -578,14 +578,14 @@
SELECT YEAR
, MONTH
, MOTION_ID
, 0 GOJI_CNT
, 0 GOJI_AMT
, 0 NABU_CNT
, 0 NABU_AMT
, 0 GAM_CNT
, 0 GAM_AMT
, SUM(DOB_CNT) DOB_CNT
, SUM(DOB_AMT) DOB_AMT
, 0 AS GOJI_CNT
, 0 AS GOJI_AMT
, 0 AS NABU_CNT
, 0 AS NABU_AMT
, 0 AS GAM_CNT
, 0 AS GAM_AMT
, SUM(DOB_CNT) AS DOB_CNT
, SUM(DOB_AMT) AS DOB_AMT
FROM ( SELECT A.YEAR
, A.MONTH
, A.PENALTY_MANAGE_YEAR

Loading…
Cancel
Save