민원 처리 수정

main
이범준 1 year ago
parent ee79f1f754
commit e8fb12ce85

@ -583,7 +583,7 @@ public class CrdnCvlcptServiceBean extends AbstractServiceBean implements CrdnCv
throw new RuntimeException("민원 전송 상태 변경 중 오류가 발생하였습니다."); throw new RuntimeException("민원 전송 상태 변경 중 오류가 발생하였습니다.");
} }
//단속상태 변경(차적조회완료 -> 부과대상)
if(targetDataList.get(i).string("CRDN_STTS_CD").equals("21")) { if(targetDataList.get(i).string("CRDN_STTS_CD").equals("21")) {
CrdnSttsHstry crdnSttsHstry = new CrdnSttsHstry(); CrdnSttsHstry crdnSttsHstry = new CrdnSttsHstry();
crdnSttsHstry.setCrdnId(targetDataList.get(i).string("CRDN_ID")); crdnSttsHstry.setCrdnId(targetDataList.get(i).string("CRDN_ID"));

@ -615,6 +615,7 @@ SELECT A.ANS_WORDS_ID
WHERE A.SGG_CD = #{sggCd} /* 시군구 코드 */ WHERE A.SGG_CD = #{sggCd} /* 시군구 코드 */
AND A.TASK_SE_CD = #{taskSeCd} /* 업무 구분 코드 */ AND A.TASK_SE_CD = #{taskSeCd} /* 업무 구분 코드 */
AND A.ANS_RSN_CD = #{ansRsnCd} /* 답변 사유 코드 */ AND A.ANS_RSN_CD = #{ansRsnCd} /* 답변 사유 코드 */
<if test="taskSeCd == 'DPV' and ansRsnCd == '01' ">
<choose> <choose>
<when test='dstrbncYn == "Y"'> <when test='dstrbncYn == "Y"'>
AND A.DSTRBNC_YN = 'Y' /* 방해 여부 */ AND A.DSTRBNC_YN = 'Y' /* 방해 여부 */
@ -623,6 +624,7 @@ SELECT A.ANS_WORDS_ID
AND A.DSTRBNC_YN = 'N' /* 방해 여부 */ AND A.DSTRBNC_YN = 'N' /* 방해 여부 */
</otherwise> </otherwise>
</choose> </choose>
</if>
AND A.USE_YN = 'Y' /* 사용 여부 */ AND A.USE_YN = 'Y' /* 사용 여부 */
</select> </select>
@ -680,6 +682,9 @@ UPDATE TB_CRDN_CVLCPT
<if test="cvlcptPrcsRsltCn != null and cvlcptPrcsRsltCn != ''"> <if test="cvlcptPrcsRsltCn != null and cvlcptPrcsRsltCn != ''">
, CVLCPT_PRCS_RSLT_CN = #{cvlcptPrcsRsltCn} /* 민원 처리 결과 내용 */ , CVLCPT_PRCS_RSLT_CN = #{cvlcptPrcsRsltCn} /* 민원 처리 결과 내용 */
</if> </if>
, CVLCPT_PRCS_CMPTN_DT = <include refid="utility.now" />
, CVLCPT_PRCS_PIC_NM = (SELECT USER_NM FROM TB_USER WHERE USER_ID=#{modifiedBy})
, CVLCPT_PRCS_PIC = #{modifiedBy}
, MDFCN_DT = <include refid="utility.now" /> /* 수정일시 */ , MDFCN_DT = <include refid="utility.now" /> /* 수정일시 */
, MDFR = #{modifiedBy} /* 수정자 */ , MDFR = #{modifiedBy} /* 수정자 */
WHERE CVLCPT_LINK_ID = #{cvlcptLinkId} WHERE CVLCPT_LINK_ID = #{cvlcptLinkId}

Loading…
Cancel
Save