|
|
|
|
@ -51,6 +51,17 @@
|
|
|
|
|
<li>
|
|
|
|
|
<input type="text" id="schExmnr" name="schExmnr" maxlength="50" class="input" style="width: 150px;" autocomplete="off"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="th">진행단계</li>
|
|
|
|
|
<li>
|
|
|
|
|
<select id="schCrdnPrcsSttsCd" name="schCrdnPrcsSttsCd" class="input" style="width: 120px;">
|
|
|
|
|
<option value="">전체</option>
|
|
|
|
|
<c:forEach var="code" items="${crdnPrcsSttsCdList}">
|
|
|
|
|
<option value="${code.cdId}" <c:if test="${param.schCrdnPrcsSttsCd eq code.cdId}">selected</c:if>>
|
|
|
|
|
${code.cdNm}
|
|
|
|
|
</option>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</select>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<ul class="rig2">
|
|
|
|
|
<li><button type="button" id="search_btn" class="newbtnss bg1">검색</button></li>
|
|
|
|
|
@ -101,12 +112,14 @@
|
|
|
|
|
var schRgnSeCd = $.trim(nvl($("#schRgnSeCd").val(), ""));
|
|
|
|
|
var schDsclMthdCd = $.trim(nvl($("#schDsclMthdCd").val(), ""));
|
|
|
|
|
var schExmnr = $.trim(nvl($("#schExmnr").val(), ""));
|
|
|
|
|
var schCrdnPrcsSttsCd = $.trim(nvl($("#schCrdnPrcsSttsCd").val(), ""));
|
|
|
|
|
|
|
|
|
|
SEARCH_COND.schCrdnYr = schCrdnYr;
|
|
|
|
|
SEARCH_COND.schCrdnNo = schCrdnNo;
|
|
|
|
|
SEARCH_COND.schRgnSeCd = schRgnSeCd;
|
|
|
|
|
SEARCH_COND.schDsclMthdCd = schDsclMthdCd;
|
|
|
|
|
SEARCH_COND.schExmnr = schExmnr;
|
|
|
|
|
SEARCH_COND.schCrdnPrcsSttsCd = schCrdnPrcsSttsCd;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@ -217,6 +230,12 @@
|
|
|
|
|
return e.value === 'Y' ? '재부과' : '일반';
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
header: '진행단계',
|
|
|
|
|
name: 'crdnPrcsSttsCdNm',
|
|
|
|
|
align: 'center',
|
|
|
|
|
width: 100
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
header: '등록일시',
|
|
|
|
|
name: 'regDt',
|
|
|
|
|
|