feat:법원연계 - 목록 (페이지) / 등록 (페이지, 기능) 완료
This commit is contained in:
parent
9399d64b4f
commit
46a2800bdd
@ -27,6 +27,7 @@ public class AdjCourtCnctnVO extends ComDefaultVO implements Serializable {
|
||||
private String rprtDe = "";
|
||||
private String rprtMonth = "";
|
||||
private String processDay = "";
|
||||
private String courtFld = "";
|
||||
private String reqInfo = "";
|
||||
private String aplcnInfo = "";
|
||||
private String rspndInfo = "";
|
||||
@ -120,6 +121,12 @@ public class AdjCourtCnctnVO extends ComDefaultVO implements Serializable {
|
||||
public void setProcessDay(String processDay) {
|
||||
this.processDay = processDay;
|
||||
}
|
||||
public String getCourtFld() {
|
||||
return courtFld;
|
||||
}
|
||||
public void setCourtFld(String courtFld) {
|
||||
this.courtFld = courtFld;
|
||||
}
|
||||
public String getReqInfo() {
|
||||
return reqInfo;
|
||||
}
|
||||
|
||||
@ -21,6 +21,20 @@ import kcc.kccadr.adjReqMgrOff.service.AdjReqMgrOffLineVO;
|
||||
import kcc.kccadr.adjReqMgrPast.service.AdjReqMgrPastVO;
|
||||
import kcc.kccadr.cmm.RestResponse;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author : 이호영
|
||||
* @fileName : AdjCourtCnctnController.java
|
||||
* @date : 2022.10.28
|
||||
* @description : 법원연계
|
||||
* ===========================================================
|
||||
* DATE AUTHOR NOTE
|
||||
* ----------------------------------------------------------- *
|
||||
* 2022.10.28 이호영 최초 생성
|
||||
*
|
||||
*
|
||||
*
|
||||
*/
|
||||
@Controller
|
||||
public class AdjCourtCnctnController {
|
||||
|
||||
|
||||
@ -2871,12 +2871,12 @@
|
||||
<property name="strategy" ref="courtStrategy" />
|
||||
<property name="blockSize" value="10"/>
|
||||
<property name="table" value="IDS"/>
|
||||
<property name="tableName" value="COURT_"/>
|
||||
<property name="tableName" value="COURT_ID"/>
|
||||
</bean>
|
||||
<!-- 첨부파일 ID Generation Strategy Config -->
|
||||
<bean name="courtStrategy"
|
||||
class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl">
|
||||
<property name="prefix" value="FILE_" />
|
||||
<property name="prefix" value="COURT_" />
|
||||
<property name="cipers" value="15" />
|
||||
<property name="fillChar" value="0" />
|
||||
</bean>
|
||||
|
||||
@ -20,6 +20,7 @@
|
||||
, RPRT_DE
|
||||
, RPRT_MONTH
|
||||
, PROCESS_DAY
|
||||
, COURT_FLD
|
||||
, APLCN_INFO
|
||||
, RSPND_INFO
|
||||
, APLCN_DPTY
|
||||
@ -48,6 +49,7 @@
|
||||
,TO_DATETIME(TO_CHAR(#rprtDe#,'YYYY-MM-DD'))
|
||||
, #rprtMonth#
|
||||
, #processDay#
|
||||
, #courtFld#
|
||||
, #aplcnInfo#
|
||||
, #rspndInfo#
|
||||
, #aplcnDpty#
|
||||
@ -62,7 +64,7 @@
|
||||
, #rmrks#
|
||||
, #useYn#
|
||||
,NOW()
|
||||
,TO_DATETIME(TO_CHAR(#frstRegisterId#,'YYYY-MM-DD'))
|
||||
,#frstRegisterId#
|
||||
)
|
||||
</insert>
|
||||
|
||||
|
||||
@ -64,13 +64,13 @@ function fn_goDetail(adrSeq){
|
||||
<div class="cont_wrap">
|
||||
<div class="box">
|
||||
<div class="cont_tit">
|
||||
<h2>과거사건목록</h2>
|
||||
<h2>법원연계조정목록</h2>
|
||||
<ul class="cont_nav">
|
||||
<li class="home"><a href="/"><i></i></a></li>
|
||||
<!-- <li> -->
|
||||
<!-- <p>xxx</p> -->
|
||||
<!-- </li> -->
|
||||
<li><span class="cur_nav">과거사건 기록 목록</span></li>
|
||||
<li><span class="cur_nav">법원연계조정 목록</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- <div class="cont inte_cont"> -->
|
||||
|
||||
@ -15,20 +15,16 @@
|
||||
<title>조정종결상세</title>
|
||||
<script type="text/javaScript" language="javascript">
|
||||
|
||||
// 불성립종결통보서 상세페이지 이동
|
||||
function goToCrtDetailNotice(){
|
||||
var detailForm1 = document.detailForm1 ;
|
||||
detailForm1.action = "<c:url value='/kccadr/adjPgrMgr/crt/crtDetailNotice.do'/>";
|
||||
detailForm1.submit();
|
||||
}
|
||||
$(document).ready(function(){
|
||||
|
||||
//조정조서 상세페이지 이동
|
||||
function goToDrtCtrDetailNotice(){
|
||||
var detailForm1 = document.detailForm1 ;
|
||||
detailForm1.action = "<c:url value='/kccadr/adjPgrMgr/drtCtr/drtCtrDetailNotice.do'/>";
|
||||
detailForm1.submit();
|
||||
}
|
||||
$('#alctnDe, #rprtDe').change(function(){
|
||||
|
||||
console.log($(this).val());
|
||||
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
|
||||
|
||||
function fn_regist(){
|
||||
@ -140,10 +136,10 @@ function fn_GoList(){
|
||||
<td>
|
||||
<div id="sel_date" class="sel_date">
|
||||
<input readonly="readonly" type="text" class="startDate inp" title="결정일자" id="dcsnDe" name="dcsnDe" value="" data-datecontrol="true">
|
||||
<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
|
||||
<div class="calendar_in" id="calendarName_dcsnDe" style="z-index: 9;">
|
||||
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('dcsnDe-lry','',this)" class="btn_cal"></button>
|
||||
<div id="dcsnDe-lry" class="calendarPop" style="display: none;">
|
||||
<iframe id="startDate01-ifrm" name="startDate01-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
|
||||
<iframe id="startDate01-ifrm" name="dcsnDe-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -151,11 +147,11 @@ function fn_GoList(){
|
||||
<th>수령일자</th>
|
||||
<td>
|
||||
<div id="sel_date" class="sel_date">
|
||||
<input readonly="readonly" type="text" class="endDate inp" title="수령일자" id="rcvDe" name="rcvDe" value="" data-datecontrol="true">
|
||||
<div class="calendar_in" id="calendarName_endDate" style="z-index: 9;">
|
||||
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('endDate-lry','',this)" class="btn_cal" ></button>
|
||||
<div id="endDate-lry" class="calendarPop" style="display: none;">
|
||||
<iframe id="endDate-ifrm" name="endDate-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html"title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
|
||||
<input readonly="readonly" type="text" class="startDate inp" title="결정일자" id="rcvDe" name="rcvDe" value="" data-datecontrol="true">
|
||||
<div class="calendar_in" id="calendarName_rcvDe" style="z-index: 9;">
|
||||
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('rcvDe-lry','',this)" class="btn_cal"></button>
|
||||
<div id="rcvDe-lry" class="calendarPop" style="display: none;">
|
||||
<iframe id="startDate01-ifrm" name="rcvDe-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -165,11 +161,11 @@ function fn_GoList(){
|
||||
<th>배당일자</th>
|
||||
<td>
|
||||
<div id="sel_date" class="sel_date">
|
||||
<input readonly="readonly" type="text" class="allocation inp" title="배당일자" id="alctnDe" name="alctnDe" value="" data-datecontrol="true">
|
||||
<input readonly="readonly" type="text" class="alctnDe inp" title="배당일자" id="alctnDe" name="alctnDe" value="" data-datecontrol="true">
|
||||
<div class="calendar_in" id="calendarName_endDate" style="z-index: 9;">
|
||||
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('allocation-lry','',this)" class="btn_cal" ></button>
|
||||
<div id="allocation-lry" class="calendarPop" style="display: none;">
|
||||
<iframe id="allocation-ifrm" name="allocation-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html"title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
|
||||
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('alctnDe-lry','',this)" class="btn_cal" ></button>
|
||||
<div id="alctnDe-lry" class="calendarPop" style="display: none;">
|
||||
<iframe id="alctnDe-ifrm" name="alctnDe-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html"title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -188,11 +184,11 @@ function fn_GoList(){
|
||||
<th>사무처리기한</th>
|
||||
<td>
|
||||
<div id="sel_date" class="sel_date">
|
||||
<input readonly="readonly" type="text" class="report inp" title="사무처리기한" id="samuDate" name="samu" value="" data-datecontrol="true">
|
||||
<div class="calendar_in" id="calendarName_samu" style="z-index: 9;">
|
||||
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('samu-lry','',this)" class="btn_cal" ></button>
|
||||
<div id="samu-lry" class="calendarPop" style="display: none;">
|
||||
<iframe id="samu-ifrm" name="samu-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html"title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
|
||||
<input readonly="readonly" type="text" class="officeWorkDe inp" title="사무처리기한" id="officeWorkDe" name="officeWorkDe" value="" data-datecontrol="true">
|
||||
<div class="calendar_in" id="calendarName_officeWorkDe" style="z-index: 9;">
|
||||
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('officeWorkDe-lry','',this)" class="btn_cal" ></button>
|
||||
<div id="officeWorkDe-lry" class="calendarPop" style="display: none;">
|
||||
<iframe id="officeWorkDe-ifrm" name="officeWorkDe-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html"title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -202,11 +198,11 @@ function fn_GoList(){
|
||||
<th>보고일자</th>
|
||||
<td>
|
||||
<div id="sel_date" class="sel_date">
|
||||
<input readonly="readonly" type="text" class="report inp" title="보고일자" id="rprtDe" name="rprtDe" value="" data-datecontrol="true">
|
||||
<div class="calendar_in" id="calendarName_report" style="z-index: 9;">
|
||||
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('report-lry','',this)" class="btn_cal" ></button>
|
||||
<div id="report-lry" class="calendarPop" style="display: none;">
|
||||
<iframe id="report-ifrm" name="report-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html"title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
|
||||
<input readonly="readonly" type="text" class="rprtDe inp" title="보고일자" id="rprtDe" name="rprtDe" value="" data-datecontrol="true">
|
||||
<div class="calendar_in" id="calendarName_rprtDe" style="z-index: 9;">
|
||||
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('rprtDe-lry','',this)" class="btn_cal" ></button>
|
||||
<div id="rprtDe-lry" class="calendarPop" style="display: none;">
|
||||
<iframe id="rprtDe-ifrm" name="rprtDe-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html"title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user