fix: 단속관리 > 목록 조회 정렬 조건 변경

main
Jonguk. Lim 2 years ago
parent c6c253a2b2
commit 588194ca7f

@ -116,7 +116,7 @@
AND trr.regist_se_code = #{registSeCode}
</if>
</where>
ORDER BY trr.sys_code, trr.reglt_se_code, teerc.extrl_reglt_cntc_id, tecsd.interface_seq_n, trr.reglt_de, trr.vhcle_no, trr.reglt_begin_time
ORDER BY trr.sys_code, trr.reglt_se_code, teerc.extrl_reglt_cntc_id, tecsd.interface_seq_n, tecsd.ctzn_sttemnt_detail_sn, trr.reglt_de, trr.vhcle_no, trr.reglt_begin_time
</select>

@ -291,13 +291,13 @@ Date Author Description
const regltSeCode = res.infoDTO.regltSeCode;
//FIXME : 시민신고상세 순번까지 포함하여 보여줄지 여부 결정 필요
if(regltSeCode === '${citizen}'){
dataKey = res.infoDTO.interfaceSeqN; // + res.infoDTO.ctznSttemntDetailSn;
dataKey = res.infoDTO.interfaceSeqN + ' - ' + res.infoDTO.ctznSttemntDetailSn;
}else{
dataKey = res.infoDTO.extrlRegltCntcId;
}
$('#txtTitle').text(
$('#txtTitle').html(
ComboCodeData.regltSeCode.filter(d => d.value === res.infoDTO.regltSeCode)[0].text
+ ' [' + dataKey + ']'
+ '&nbsp;&nbsp;&nbsp;[&nbsp;' + dataKey + '&nbsp;]'
);
cmmImgDownload('#imgList', res.attchFiles, fnPopupBiz.pagePopup, true, '60px');

Loading…
Cancel
Save