서비스신청 조회 조건 추가 처리
This commit is contained in:
parent
5b45e527c8
commit
bd95b67c87
@ -39,8 +39,8 @@
|
||||
file_store: D:/z_temp_pro/itsm_file_upload
|
||||
auth_server: http://localhost:11000
|
||||
api_server: http://localhost:11010
|
||||
# api_search_server: http://192.168.8.138:48381 # 개발
|
||||
api_search_server: http://192.168.8.138:49381 # 운영
|
||||
api_search_server: http://192.168.8.138:48381 # 개발
|
||||
# api_search_server: http://192.168.8.138:49381 # 운영
|
||||
sendmail:
|
||||
id: tW9kMpd3SiAnf3RQBOZapw==
|
||||
password: Tkkj8p2PYfZ+AmpQMPLHF8ksj8vrtJouj6xczU8ShM8=
|
||||
|
||||
@ -695,6 +695,11 @@
|
||||
<input type="hidden" name="searchKeyword" value="<c:out value='${searchVO.searchKeyword}'/>" >
|
||||
<input type="hidden" name="pageIndex" value="<c:out value='${searchVO.pageIndex}'/>" >
|
||||
<input type="hidden" name="multiUserSelectYn" value="" >
|
||||
<input type="hidden" name="reportId" value="<c:out value='${searchVO.reportId}'/>" >
|
||||
<input type="hidden" name="incidentNum" value="<c:out value='${searchVO.incidentNum}'/>" >
|
||||
<input type="hidden" name="regUser" value="<c:out value='${searchVO.regUser}'/>" >
|
||||
<input type="hidden" name="reportTitle" value="<c:out value='${searchVO.reportTitle}'/>" >
|
||||
<input type="hidden" name="status" value="<c:out value='${searchVO.status}'/>" >
|
||||
|
||||
<!-- 임시정보 -->
|
||||
<input type="hidden" id="inReportSeq" name="inReportSeq" value="${resultReport.inReportSeq}"/>
|
||||
|
||||
@ -691,6 +691,14 @@
|
||||
<input type="hidden" name="multiUserSelectYn" value="" />
|
||||
<input type="hidden" name="inTask" id="inTask" value="${searchVO.inTask}" />
|
||||
|
||||
<!-- 2025.12.24 나혁제 검색정보 추가 -->
|
||||
<input type="hidden" name="reportId" value="<c:out value='${searchVO.reportId}'/>" >
|
||||
<input type="hidden" name="incidentNum" value="<c:out value='${searchVO.incidentNum}'/>" >
|
||||
<input type="hidden" name="regUser" value="<c:out value='${searchVO.regUser}'/>" >
|
||||
<input type="hidden" name="reportTitle" value="<c:out value='${searchVO.reportTitle}'/>" >
|
||||
<input type="hidden" name="status" value="<c:out value='${searchVO.status}'/>" >
|
||||
|
||||
|
||||
<!-- 임시정보 -->
|
||||
<input type="hidden" id="inReportSeq" name="inReportSeq" value="${resultReport.inReportSeq}" />
|
||||
<input type="hidden" id="inReportStatus" name="inReportStatus" value="${resultReport.inReportStatus}" />
|
||||
|
||||
@ -43,7 +43,7 @@
|
||||
//----------------------------------------
|
||||
// 검색
|
||||
// ----------------------------------------
|
||||
function fncSearchSvcDeskList()
|
||||
function fncSearchSvcDeskReqList()
|
||||
{
|
||||
linkPage(1);
|
||||
}
|
||||
@ -74,29 +74,8 @@
|
||||
// ----------------------------------------
|
||||
function linkPage(pageIndex)
|
||||
{
|
||||
var arComplete = []; // 처리상태
|
||||
var arStatus = []; // 승인상태
|
||||
|
||||
if($("#chk2_1").is(":checked")) arComplete.push("0");
|
||||
if($("#chk2_2").is(":checked")) arComplete.push("1");
|
||||
|
||||
if($("#chk1_1").is(":checked")) arStatus.push("0");
|
||||
if($("#chk1_2").is(":checked")) arStatus.push("1");
|
||||
if($("#chk1_3").is(":checked")) arStatus.push("2");
|
||||
if($("#chk1_4").is(":checked")) arStatus.push("3");
|
||||
|
||||
console.log("arComplete =>" + arComplete);
|
||||
console.log("arStatus =>" + arStatus);
|
||||
|
||||
$("#complete").val(arComplete.join(","));
|
||||
$("#status" ).val(arStatus.join(","));
|
||||
|
||||
console.log("complete =>" + complete);
|
||||
console.log("status =>" + status);
|
||||
|
||||
document.listForm.pageIndex.value = pageIndex;
|
||||
// 2025.12.04 나혁제 한페이지당 목록건수 추가
|
||||
document.listForm.pageUnit.value = document.listForm.selPageSize.value;
|
||||
document.listForm.pageIndex.value = pageIndex;
|
||||
// document.listForm.pageUnit.value = document.listForm.selPageSize.value;
|
||||
|
||||
document.listForm.action = "<c:url value='/srm/searchReqIncident.do'/>";
|
||||
document.listForm.submit();
|
||||
@ -146,7 +125,7 @@
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="btnArea">
|
||||
<button type="button" class="btn-search" onclick="fncSearchSvcDeskList(); return false;" title="조회">조회</button>
|
||||
<button type="button" class="btn-search" onclick="fncSearchSvcDeskReqList(); return false;" title="조회">조회</button>
|
||||
</div>
|
||||
</div>
|
||||
<!--//검색 :e -->
|
||||
@ -229,8 +208,7 @@
|
||||
<!-- body_wrap :start -->
|
||||
|
||||
<input type="hidden" name="pageIndex" value="<c:out value='${searchVO.pageIndex}'/>"/>
|
||||
<input type="hidden" name="pageUnit" value="<c:out value='${searchVO.pageSize}'/>"/> <!-- 2025.12.04 나혁제 페이지당건수 -->
|
||||
|
||||
|
||||
<!-- 입력조건 -->
|
||||
<input type="hidden" name="complete" id="complete" value=""/>
|
||||
<input type="hidden" name="status" id="status" value=""/>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user