개별총정보 - 민원상담 수정.

main
jjh 1 year ago
parent 26cc320991
commit ff923f1797

@ -42,7 +42,7 @@ public class Sprt04Bean extends AbstractComponent {
* @return * @return
*/ */
public List<DataObject> getCvlcptDscsnCns(SprtQuery req) { public List<DataObject> getCvlcptDscsnCns(SprtQuery req) {
if (req.getOrderBy().equals("")) { if (req.getOrderBy() == null) {
req.setOrderBy("CDC.REG_DT DESC"); req.setOrderBy("CDC.REG_DT DESC");
} }

@ -129,7 +129,7 @@
</when> </when>
<when test="cvlcptDscsnCn.cvlcptRcptSeCd == '03'"> <when test="cvlcptDscsnCn.cvlcptRcptSeCd == '03'">
, NULL /* 차량번호 */ , NULL /* 차량번호 */
, ( SELECT RTPYR_NO FROM TB_CRDN X WHERE X.RTPYR_ID = #{cvlcptDscsnCn.rtpyrId} ) /* 납부자 번호 */ , #{cvlcptDscsnCn.rtpyrNo} /* 납부자 번호 */
</when> </when>
<otherwise> <otherwise>
, NULL /* 차량번호 */ , NULL /* 차량번호 */

@ -283,11 +283,11 @@
ajax.get({ ajax.get({
url : wctx.url("/sprt/sprt02/030/info.do") url : wctx.url("/sprt/sprt02/030/info.do")
, headers: { Accept: "application/json; charset=utf-8" } // json , headers: { Accept: "application/json; charset=utf-8" } // json
, data : { crdnId : crdnId } , data : { crdnId : crdnId }
, success : resp => { , success : resp => {
// Dataset 셋팅 ${pageName}Control.dataset.clear();
${pageName}Control.setData([resp.opnnSbmsn]); ${pageName}Control.setData([resp.opnnSbmsn]); // Dataset 셋팅
} }
}); });
} }

@ -165,7 +165,8 @@
, headers: { Accept: "application/json; charset=utf-8" } // json , headers: { Accept: "application/json; charset=utf-8" } // json
, data : params || {} , data : params || {}
, success : resp => { , success : resp => {
${pageName}Control.setData(${cvlcptDscsnCn}); // Dataset 셋팅 ${pageName}Control.dataset.clear();
${pageName}Control.setData(resp.cvlcptDscsnCn); // Dataset 셋팅
} }
}); });
} }

Loading…
Cancel
Save