2022-12-07 16:36 조정사건부 통계 내용 수정
This commit is contained in:
parent
211c233abf
commit
a624b40cfc
233
src/main/webapp/WEB-INF/jsp/kccadr/stts/sttsAdjAdr.jsp
Normal file
233
src/main/webapp/WEB-INF/jsp/kccadr/stts/sttsAdjAdr.jsp
Normal file
@ -0,0 +1,233 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<%@ page language="java" contentType="text/html; charset=utf-8"
|
||||||
|
pageEncoding="utf-8"%>
|
||||||
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||||
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
||||||
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
||||||
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||||
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
||||||
|
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
||||||
|
<%
|
||||||
|
/**
|
||||||
|
* @Class Name : sttsAdjAdr.jsp
|
||||||
|
* @Description : 조정사건부 현황
|
||||||
|
* @Modification Information
|
||||||
|
* @
|
||||||
|
* @ 수정일 수정자 수정내용
|
||||||
|
* @ ------- -------- ---------------------------
|
||||||
|
* @ 2021.11.01 이준호 최초 생성
|
||||||
|
* @author 이준호
|
||||||
|
* @since 2021.11.01
|
||||||
|
* @version 1.0
|
||||||
|
* @see
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
%>
|
||||||
|
<html lang="ko">
|
||||||
|
<head>
|
||||||
|
<title>조정사건부 현황</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
|
<link rel="stylesheet" href="/kccadrPb/adm/css/dashboard.css">
|
||||||
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
function onSearchCondition() {
|
||||||
|
var searchCondition = $("#searchCondition").val();
|
||||||
|
if (searchCondition == '1') {
|
||||||
|
$(".search1").show();
|
||||||
|
$(".search2").hide();
|
||||||
|
} else if (searchCondition == '2') {
|
||||||
|
$(".search2").show();
|
||||||
|
$(".search1").hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function fncExcel(){
|
||||||
|
// 월만 선택시 년도 선택 필수
|
||||||
|
if ($("#searchCondition").val() == "1"
|
||||||
|
&& "" != $("#searchMonth2").val()
|
||||||
|
&& "" == $("#searchYear").val()) {
|
||||||
|
alert("년도를 선택해주세요."); return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var listForm = document.listForm ;
|
||||||
|
//listForm.pageIndex.value = pageNo ;
|
||||||
|
listForm.searchCondition.value = $("#searchCondition").val() ;
|
||||||
|
listForm.searchYear.value = $("#searchYear").val() ;
|
||||||
|
listForm.searchMonth2.value = $("#searchMonth2").val() ;
|
||||||
|
listForm.searchQuarter.value = $("#searchQuarter").val() ;
|
||||||
|
listForm.action = "<c:url value='/kccadr/stts/sttsAdjAdrExcel.do'/>";
|
||||||
|
listForm.submit();
|
||||||
|
}
|
||||||
|
|
||||||
|
function linkPage(pageNo){
|
||||||
|
var listForm = document.listForm ;
|
||||||
|
listForm.pageIndex.value = pageNo;
|
||||||
|
listForm.searchYear.value = $("#searchYear").val() ;
|
||||||
|
listForm.searchMonth2.value = $("#searchMonth2").val() ;
|
||||||
|
listForm.action = "<c:url value='/kccadr/stts/sttsAdjAdr.do'/>";
|
||||||
|
listForm.submit();
|
||||||
|
}
|
||||||
|
|
||||||
|
$(document).ready(function() {
|
||||||
|
onSearchCondition();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<form name="listForm" id="listForm" method="post">
|
||||||
|
<input type="hidden" name="pageIndex" value="<c:out value='${sttsVO.pageIndex}' default='1' />"/>
|
||||||
|
<input type="hidden" name="searchCondition" value="<c:out value='${sttsVO.searchCondition}' />"/>
|
||||||
|
<input type="hidden" name="searchYear" value="<c:out value='${sttsVO.searchYear}' />"/>
|
||||||
|
<input type="hidden" name="searchMonth2" value="<c:out value='${sttsVO.searchMonth2}' />"/>
|
||||||
|
<input type="hidden" name="searchQuarter" value="<c:out value='${sttsVO.searchQuarter}' />"/>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<!-- cont -->
|
||||||
|
<div class="cont_wrap">
|
||||||
|
<div class="box">
|
||||||
|
|
||||||
|
<!-- cont_tit -->
|
||||||
|
<div class="cont_tit">
|
||||||
|
<h2>조정사건부 현황 - 엑셀 다운로드</h2>
|
||||||
|
<ul class="cont_nav">
|
||||||
|
<li class="home"><a href="/"><i></i></a></li>
|
||||||
|
<li>
|
||||||
|
<p>통계</p>
|
||||||
|
</li>
|
||||||
|
<li><span class="cur_nav">조정사건부 현황</span></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- //cont_tit -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="cont">
|
||||||
|
<!-- list_top -->
|
||||||
|
<div class="list_top">
|
||||||
|
<div class="list_util">
|
||||||
|
<div class="btn_wrap right">
|
||||||
|
<button type="button" class="btn_down_excel" onclick="fncExcel(); return false;">엑셀 다운로드</button>
|
||||||
|
</div>
|
||||||
|
<div class="detail_search">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<p class="tit_text">구분</p>
|
||||||
|
<select name="searchCondition" id="searchCondition" onchange="onSearchCondition()">
|
||||||
|
<option value="1" ${sttsVO.searchCondition eq '1' ? 'selected' : '' }>년월</option>
|
||||||
|
<option value="2" ${sttsVO.searchCondition eq '2' ? 'selected' : '' }>분기</option>
|
||||||
|
</select>
|
||||||
|
<select name="searchYear" id="searchYear" class="search1">
|
||||||
|
<option value="">전체</option>
|
||||||
|
<option value="2021" ${sttsVO.searchYear eq '2021' ? 'selected' : '' }>2021년</option>
|
||||||
|
<option value="2022" ${sttsVO.searchYear eq '2022' ? 'selected' : '' }>2022년</option>
|
||||||
|
<option value="2023" ${sttsVO.searchYear eq '2023' ? 'selected' : '' }>2023년</option>
|
||||||
|
<option value="2024" ${sttsVO.searchYear eq '2024' ? 'selected' : '' }>2024년</option>
|
||||||
|
</select>
|
||||||
|
<select name="searchMonth2" id="searchMonth2" class="search1">
|
||||||
|
<option value="">전체</option>
|
||||||
|
<option value="01" ${sttsVO.searchMonth2 eq '01' ? 'selected' : '' }>1월</option>
|
||||||
|
<option value="02" ${sttsVO.searchMonth2 eq '02' ? 'selected' : '' }>2월</option>
|
||||||
|
<option value="03" ${sttsVO.searchMonth2 eq '03' ? 'selected' : '' }>3월</option>
|
||||||
|
<option value="04" ${sttsVO.searchMonth2 eq '04' ? 'selected' : '' }>4월</option>
|
||||||
|
<option value="05" ${sttsVO.searchMonth2 eq '05' ? 'selected' : '' }>5월</option>
|
||||||
|
<option value="06" ${sttsVO.searchMonth2 eq '06' ? 'selected' : '' }>6월</option>
|
||||||
|
<option value="07" ${sttsVO.searchMonth2 eq '07' ? 'selected' : '' }>7월</option>
|
||||||
|
<option value="08" ${sttsVO.searchMonth2 eq '08' ? 'selected' : '' }>8월</option>
|
||||||
|
<option value="09" ${sttsVO.searchMonth2 eq '09' ? 'selected' : '' }>9월</option>
|
||||||
|
<option value="10" ${sttsVO.searchMonth2 eq '10' ? 'selected' : '' }>10월</option>
|
||||||
|
<option value="11" ${sttsVO.searchMonth2 eq '11' ? 'selected' : '' }>11월</option>
|
||||||
|
<option value="12" ${sttsVO.searchMonth2 eq '12' ? 'selected' : '' }>12월</option>
|
||||||
|
</select>
|
||||||
|
<select name="searchQuarter" id="searchQuarter" class="search2">
|
||||||
|
<option value="">전체</option>
|
||||||
|
<option value="1" ${sttsVO.searchQuarter eq '1' ? 'selected' : '' }>1분기</option>
|
||||||
|
<option value="2" ${sttsVO.searchQuarter eq '2' ? 'selected' : '' }>2분기</option>
|
||||||
|
<option value="3" ${sttsVO.searchQuarter eq '3' ? 'selected' : '' }>3분기</option>
|
||||||
|
<option value="4" ${sttsVO.searchQuarter eq '4' ? 'selected' : '' }>4분기</option>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<button class="btnType07 btn_search" onclick="linkPage(1)">검색</button>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- //list_top -->
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<div class="stat_list">
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<dl>
|
||||||
|
<dt></dt>
|
||||||
|
<dd class="tbType02">
|
||||||
|
<table>
|
||||||
|
-->
|
||||||
|
<!-- list -->
|
||||||
|
<div class="list tbType01">
|
||||||
|
<table>
|
||||||
|
<colgroup>
|
||||||
|
<col style="width: 110px;">
|
||||||
|
<col style="width: 100px;">
|
||||||
|
<col style="width: 200px;">
|
||||||
|
<col style="width: 200px;">
|
||||||
|
<col style="width: 100px;">
|
||||||
|
|
||||||
|
<col style="width: 300px;">
|
||||||
|
<col style="width: 300px;">
|
||||||
|
<col style="width: 200px;">
|
||||||
|
|
||||||
|
</colgroup>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>접수번호</th>
|
||||||
|
<th>접수일자</th>
|
||||||
|
<th>신청인(대리인)</th>
|
||||||
|
<th>피신청인(대리인)</th>
|
||||||
|
<th>저작물 유형</th>
|
||||||
|
|
||||||
|
<th>분쟁 내용</th>
|
||||||
|
<th>청구내역</th>
|
||||||
|
<th>...</th>
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<c:forEach var="vo" items="${list}" varStatus="status">
|
||||||
|
<tr>
|
||||||
|
<td><p><c:out value="${vo.adrNo}" />
|
||||||
|
<%-- <br/><c:out value="${vo.reqOlCd}" /> --%>
|
||||||
|
</p></td>
|
||||||
|
<td><p><c:out value="${vo.sbmtDeDay}" /></p></td>
|
||||||
|
<td><p><c:out value="${vo.appliCantNm}" /></p></td>
|
||||||
|
<td><p><c:out value="${vo.resPonDentNm}" /></p></td>
|
||||||
|
<td><p><c:out value="${vo.ccTyTx}" /></p></td>
|
||||||
|
|
||||||
|
<td><p><c:out value="${vo.reqCn2}" /></p></td>
|
||||||
|
<td><p><c:out value="${vo.closeCn1}" /></p></td>
|
||||||
|
<td><p>...</p></td>
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
</c:forEach>
|
||||||
|
<c:if test="${!(fn:length(list) > 0)}">
|
||||||
|
<tr>
|
||||||
|
<td colspan="11"><p>자료가 없습니다. 다른 검색조건을 선택해주세요</p></td>
|
||||||
|
</tr>
|
||||||
|
</c:if>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- //list -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- //cont -->
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in New Issue
Block a user