feat:법원연계조정관리 - 수정페이지 완료
This commit is contained in:
parent
f43a6a3d5c
commit
9df4676073
@ -1,8 +1,19 @@
|
|||||||
package kcc.kccadr.adjCourtCnctn.service;
|
package kcc.kccadr.adjCourtCnctn.service;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import kcc.kccadr.adjReqMgrOff.service.AdjReqMgrOffLineVO;
|
||||||
import kcc.kccadr.cmm.RestResponse;
|
import kcc.kccadr.cmm.RestResponse;
|
||||||
|
|
||||||
public interface AdjCourtCnctnService {
|
public interface AdjCourtCnctnService {
|
||||||
|
|
||||||
RestResponse insertCourtCnctn(AdjCourtCnctnVO adjCourtCnctnVO);
|
RestResponse insertCourtCnctn(AdjCourtCnctnVO adjCourtCnctnVO);
|
||||||
|
|
||||||
|
int adjCourtCnctnListCount(AdjCourtCnctnVO adjCourtCnctnVO);
|
||||||
|
|
||||||
|
List<AdjCourtCnctnVO> adjCourtCnctnList(AdjCourtCnctnVO adjCourtCnctnVO);
|
||||||
|
|
||||||
|
AdjCourtCnctnVO findByid(AdjCourtCnctnVO adjCourtCnctnVO);
|
||||||
|
|
||||||
|
RestResponse updateCourtCnctn(AdjCourtCnctnVO adjCourtCnctnVO);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -49,6 +49,9 @@ public class AdjCourtCnctnVO extends ComDefaultVO implements Serializable {
|
|||||||
private String lastUpdusrId = "";
|
private String lastUpdusrId = "";
|
||||||
|
|
||||||
|
|
||||||
|
private String searchCondition2 = "";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public String getCourtSeq() {
|
public String getCourtSeq() {
|
||||||
return courtSeq;
|
return courtSeq;
|
||||||
@ -242,6 +245,12 @@ public class AdjCourtCnctnVO extends ComDefaultVO implements Serializable {
|
|||||||
public void setRmrks(String rmrks) {
|
public void setRmrks(String rmrks) {
|
||||||
this.rmrks = rmrks;
|
this.rmrks = rmrks;
|
||||||
}
|
}
|
||||||
|
public String getSearchCondition2() {
|
||||||
|
return searchCondition2;
|
||||||
|
}
|
||||||
|
public void setSearchCondition2(String searchCondition2) {
|
||||||
|
this.searchCondition2 = searchCondition2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -7,6 +7,7 @@ import org.springframework.stereotype.Repository;
|
|||||||
import egovframework.rte.psl.dataaccess.EgovAbstractDAO;
|
import egovframework.rte.psl.dataaccess.EgovAbstractDAO;
|
||||||
import kcc.kccadr.adjCourtCnctn.service.AdjCourtCnctnVO;
|
import kcc.kccadr.adjCourtCnctn.service.AdjCourtCnctnVO;
|
||||||
import kcc.kccadr.adjReqMgrOff.service.AdjReqMgrOffLineVO;
|
import kcc.kccadr.adjReqMgrOff.service.AdjReqMgrOffLineVO;
|
||||||
|
import kcc.kccadr.adjReqMgrPast.service.AdjReqMgrPastVO;
|
||||||
import kcc.kccadr.cmm.RestResponse;
|
import kcc.kccadr.cmm.RestResponse;
|
||||||
|
|
||||||
@Repository("AdjCourtCnctnDAO")
|
@Repository("AdjCourtCnctnDAO")
|
||||||
@ -16,4 +17,21 @@ public class AdjCourtCnctnDAO extends EgovAbstractDAO {
|
|||||||
insert("adjCourtCnctnDAO.insertCourtCnctn", adjCourtCnctnVO);
|
insert("adjCourtCnctnDAO.insertCourtCnctn", adjCourtCnctnVO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int selectAdjCourtCnctnListCount(AdjCourtCnctnVO adjCourtCnctnVO) {
|
||||||
|
return (int) select("adjCourtCnctnDAO.adjCourtCnctnListCount", adjCourtCnctnVO);
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<AdjCourtCnctnVO> selectAdjCourtCnctnList(AdjCourtCnctnVO adjCourtCnctnVO) {
|
||||||
|
return (List<AdjCourtCnctnVO>) list("adjCourtCnctnDAO.adjCourtCnctnList", adjCourtCnctnVO);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AdjCourtCnctnVO findByid(AdjCourtCnctnVO adjCourtCnctnVO) {
|
||||||
|
return (AdjCourtCnctnVO) select("adjCourtCnctnDAO.findByid", adjCourtCnctnVO);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void updateCourtCnctn(AdjCourtCnctnVO adjCourtCnctnVO) {
|
||||||
|
update("adjCourtCnctnDAO.updateCourtCnctn", adjCourtCnctnVO);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -48,6 +48,31 @@ public class AdjCourtCnctnServiceImpl extends EgovAbstractServiceImpl implements
|
|||||||
}
|
}
|
||||||
return new RestResponse(HttpStatus.OK, "등록 되었습니다.", LocalDateTime.now());
|
return new RestResponse(HttpStatus.OK, "등록 되었습니다.", LocalDateTime.now());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int adjCourtCnctnListCount(AdjCourtCnctnVO adjCourtCnctnVO) {
|
||||||
|
return adjCourtCnctnDAO.selectAdjCourtCnctnListCount(adjCourtCnctnVO);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<AdjCourtCnctnVO> adjCourtCnctnList(AdjCourtCnctnVO adjCourtCnctnVO) {
|
||||||
|
return adjCourtCnctnDAO.selectAdjCourtCnctnList(adjCourtCnctnVO);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AdjCourtCnctnVO findByid(AdjCourtCnctnVO adjCourtCnctnVO) {
|
||||||
|
return adjCourtCnctnDAO.findByid(adjCourtCnctnVO);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public RestResponse updateCourtCnctn(AdjCourtCnctnVO adjCourtCnctnVO) {
|
||||||
|
try {
|
||||||
|
adjCourtCnctnDAO.updateCourtCnctn(adjCourtCnctnVO);
|
||||||
|
} catch (Exception e) {
|
||||||
|
return new RestResponse(HttpStatus.BAD_REQUEST, "수정에 실패하였습니다.", LocalDateTime.now());
|
||||||
|
}
|
||||||
|
return new RestResponse(HttpStatus.OK, "수정 되었습니다.", LocalDateTime.now());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -49,10 +49,10 @@ public class AdjCourtCnctnController {
|
|||||||
adjCourtCnctnVO.setPageUnit(adjCourtCnctnVO.getPageUnit());
|
adjCourtCnctnVO.setPageUnit(adjCourtCnctnVO.getPageUnit());
|
||||||
}
|
}
|
||||||
|
|
||||||
// if("".equals(adjReqMgrOffLineVO.getSearchSortCnd())){
|
if("".equals(adjCourtCnctnVO.getSearchSortCnd())){
|
||||||
// adjReqMgrOffLineVO.setSearchSortCnd("RS.ADR_SEQ");
|
adjCourtCnctnVO.setSearchSortCnd("COURT_SEQ");
|
||||||
// adjReqMgrOffLineVO.setSearchSortOrd("desc");
|
adjCourtCnctnVO.setSearchSortOrd("desc");
|
||||||
// }
|
}
|
||||||
// if(("3".equals(adjReqMgrOffLineVO.getSearchCondition()) || "4".equals(adjReqMgrOffLineVO.getSearchCondition())) && StringUtils.isNotBlank(adjReqMgrOffLineVO.getSearchKeyword())){
|
// if(("3".equals(adjReqMgrOffLineVO.getSearchCondition()) || "4".equals(adjReqMgrOffLineVO.getSearchCondition())) && StringUtils.isNotBlank(adjReqMgrOffLineVO.getSearchKeyword())){
|
||||||
// adjReqMgrOffLineVO.setSearchKeyword(egovCryptoUtil.encrypt(adjReqMgrOffLineVO.getSearchKeyword()));
|
// adjReqMgrOffLineVO.setSearchKeyword(egovCryptoUtil.encrypt(adjReqMgrOffLineVO.getSearchKeyword()));
|
||||||
// }
|
// }
|
||||||
@ -66,31 +66,54 @@ public class AdjCourtCnctnController {
|
|||||||
adjCourtCnctnVO.setFirstIndex(paginationInfo.getFirstRecordIndex());
|
adjCourtCnctnVO.setFirstIndex(paginationInfo.getFirstRecordIndex());
|
||||||
adjCourtCnctnVO.setLastIndex(paginationInfo.getLastRecordIndex());
|
adjCourtCnctnVO.setLastIndex(paginationInfo.getLastRecordIndex());
|
||||||
adjCourtCnctnVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage());
|
adjCourtCnctnVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage());
|
||||||
// paginationInfo.setTotalRecordCount(adjReqMgrOffLineService.adjReqMgrOffListCount(adjReqMgrOffLineVO));
|
paginationInfo.setTotalRecordCount(adjCourtCnctnService.adjCourtCnctnListCount(adjCourtCnctnVO));
|
||||||
model.addAttribute("paginationInfo", paginationInfo);
|
model.addAttribute("paginationInfo", paginationInfo);
|
||||||
// List<AdjReqMgrOffLineVO> list = adjReqMgrOffLineService.adjReqMgrOffList(adjReqMgrOffLineVO);
|
List<AdjCourtCnctnVO> list = adjCourtCnctnService.adjCourtCnctnList(adjCourtCnctnVO);
|
||||||
List<AdjReqMgrOffLineVO> list = new ArrayList<>();
|
|
||||||
// 복호화
|
// 복호화
|
||||||
model.addAttribute("list", list);
|
model.addAttribute("list", list);
|
||||||
|
|
||||||
|
|
||||||
return "kccadr/adjCourtCnctn/adjCourtCnctnList";
|
return "kccadr/adjCourtCnctn/adjCourtCnctnList";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@RequestMapping("/kccadr/adjCourtCnctn/adjCourtCnctnDetail.do")
|
||||||
|
public String adjCourtCnctnDetail(@ModelAttribute("adjCourtCnctnVO") AdjCourtCnctnVO CourtVO, ModelMap model) throws Exception {
|
||||||
|
|
||||||
|
AdjCourtCnctnVO adjCourtCnctnVO = adjCourtCnctnService.findByid(CourtVO);
|
||||||
|
model.addAttribute("courtVO", adjCourtCnctnVO);
|
||||||
|
return "kccadr/adjCourtCnctn/adjCourtCnctnDetail";
|
||||||
|
}
|
||||||
|
|
||||||
|
@RequestMapping("/kccadr/adjCourtCnctn/adjCourtCnctnModify.do")
|
||||||
|
public String adjCourtCnctnModify(@ModelAttribute("adjCourtCnctnVO") AdjCourtCnctnVO CourtVO, ModelMap model) throws Exception {
|
||||||
|
|
||||||
|
AdjCourtCnctnVO adjCourtCnctnVO = adjCourtCnctnService.findByid(CourtVO);
|
||||||
|
model.addAttribute("courtVO", adjCourtCnctnVO);
|
||||||
|
return "kccadr/adjCourtCnctn/adjCourtCnctnModify";
|
||||||
|
}
|
||||||
|
|
||||||
@RequestMapping("/kccadr/adjCourtCnctn/adjCourtCnctnRegist.do")
|
@RequestMapping("/kccadr/adjCourtCnctn/adjCourtCnctnRegist.do")
|
||||||
public String adjCourtCnctnRegist(@ModelAttribute("adjCourtCnctnVO") AdjCourtCnctnVO adjCourtCnctnVO, ModelMap model) throws Exception {
|
public String adjCourtCnctnRegist(@ModelAttribute("adjCourtCnctnVO") AdjCourtCnctnVO adjCourtCnctnVO, ModelMap model) throws Exception {
|
||||||
|
|
||||||
AdjReqMgrPastVO adjReqMgrPastVO = new AdjReqMgrPastVO();
|
AdjReqMgrPastVO adjReqMgrPastVO = new AdjReqMgrPastVO();
|
||||||
model.addAttribute("mainVO", adjReqMgrPastVO);
|
model.addAttribute("courtVO", adjReqMgrPastVO);
|
||||||
return "kccadr/adjCourtCnctn/adjCourtCnctnRegist";
|
return "kccadr/adjCourtCnctn/adjCourtCnctnRegist";
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequestMapping("/kccadr/adjCourtCnctn/adjCourtCnctnRegistAjax.do")
|
@RequestMapping("/kccadr/adjCourtCnctn/adjCourtCnctnRegistAjax.do")
|
||||||
public ResponseEntity<RestResponse> insertExmpAppManager(@ModelAttribute("adjCourtCnctnVO") AdjCourtCnctnVO adjCourtCnctnVO) throws Exception {
|
public ResponseEntity<RestResponse> adjCourtCnctnRegistAjax(@ModelAttribute("adjCourtCnctnVO") AdjCourtCnctnVO adjCourtCnctnVO) throws Exception {
|
||||||
|
|
||||||
LoginVO loginVO = (LoginVO) EgovUserDetailsHelper.getAuthenticatedUser();
|
LoginVO loginVO = (LoginVO) EgovUserDetailsHelper.getAuthenticatedUser();
|
||||||
adjCourtCnctnVO.setFrstRegisterId(loginVO.getUniqId());
|
adjCourtCnctnVO.setFrstRegisterId(loginVO.getUniqId());
|
||||||
return ResponseEntity.ok().body(adjCourtCnctnService.insertCourtCnctn(adjCourtCnctnVO));
|
return ResponseEntity.ok().body(adjCourtCnctnService.insertCourtCnctn(adjCourtCnctnVO));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@RequestMapping("/kccadr/adjCourtCnctn/adjCourtCnctnUpdateAjax.do")
|
||||||
|
public ResponseEntity<RestResponse> adjCourtCnctnUpdateAjax(@ModelAttribute("adjCourtCnctnVO") AdjCourtCnctnVO adjCourtCnctnVO) throws Exception {
|
||||||
|
|
||||||
|
LoginVO loginVO = (LoginVO) EgovUserDetailsHelper.getAuthenticatedUser();
|
||||||
|
adjCourtCnctnVO.setLastUpdusrId(loginVO.getUniqId());
|
||||||
|
return ResponseEntity.ok().body(adjCourtCnctnService.updateCourtCnctn(adjCourtCnctnVO));
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2876,7 +2876,7 @@
|
|||||||
<!-- 첨부파일 ID Generation Strategy Config -->
|
<!-- 첨부파일 ID Generation Strategy Config -->
|
||||||
<bean name="courtStrategy"
|
<bean name="courtStrategy"
|
||||||
class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl">
|
class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl">
|
||||||
<property name="prefix" value="COURT_" />
|
<property name="prefix" value="CURT_" />
|
||||||
<property name="cipers" value="15" />
|
<property name="cipers" value="15" />
|
||||||
<property name="fillChar" value="0" />
|
<property name="fillChar" value="0" />
|
||||||
</bean>
|
</bean>
|
||||||
|
|||||||
@ -5,7 +5,219 @@
|
|||||||
<typeAlias alias="adjCourtCnctnVO" type="kcc.kccadr.adjCourtCnctn.service.AdjCourtCnctnVO"/>
|
<typeAlias alias="adjCourtCnctnVO" type="kcc.kccadr.adjCourtCnctn.service.AdjCourtCnctnVO"/>
|
||||||
|
|
||||||
|
|
||||||
<!-- 조정사건정보 등록 : 업무시스템 조정신청 저장 -->
|
<select id="adjCourtCnctnDAO.adjCourtCnctnListCount" parameterClass="adjCourtCnctnVO" resultClass="Integer">
|
||||||
|
SELECT
|
||||||
|
COUNT(1) AS TOT
|
||||||
|
FROM
|
||||||
|
ADJ_COURT_CNCTN_MGR
|
||||||
|
<!--
|
||||||
|
/*작성중*/
|
||||||
|
<isEqual property="searchCondition" prepend="AND" compareValue="10">
|
||||||
|
amm.ADR_END_DE IS NULL
|
||||||
|
</isEqual>
|
||||||
|
|
||||||
|
/*작성완료*/
|
||||||
|
<isEqual property="searchCondition" prepend="AND" compareValue="20">
|
||||||
|
amm.ADR_END_DE IS NOT NULL
|
||||||
|
</isEqual>
|
||||||
|
|
||||||
|
/*검색 조정번호:10, 조정조사관:20, 조정부:30 */
|
||||||
|
<isEqual property="searchCondition2" prepend="AND" compareValue="10">
|
||||||
|
amm.ADR_NO LIKE CONCAT('%' , #searchKeyword#, '%')
|
||||||
|
</isEqual>
|
||||||
|
<isEqual property="searchCondition2" prepend="AND" compareValue="20">
|
||||||
|
aamp.ASS_PST_USR_NM LIKE CONCAT('%' , #searchKeyword#, '%')
|
||||||
|
</isEqual>
|
||||||
|
<isEqual property="searchCondition2" prepend="AND" compareValue="30">
|
||||||
|
amdm.MEM_DEPT_NM LIKE CONCAT('%' , #searchKeyword#, '%')
|
||||||
|
</isEqual>
|
||||||
|
|
||||||
|
|
||||||
|
/*날짜 검색 - 기간지정*/
|
||||||
|
<isEqual property="searchYear" compareValue="99">
|
||||||
|
<isNotEmpty prepend="AND" property="searchStartDt">
|
||||||
|
TO_CHAR(amm.FRST_REGIST_PNTTM,'YYYYMMDD') <![CDATA[ >= ]]> REPLACE(#searchStartDt#, '-' , '')
|
||||||
|
</isNotEmpty>
|
||||||
|
|
||||||
|
<isNotEmpty prepend="AND" property="searchEndDt">
|
||||||
|
TO_CHAR(amm.FRST_REGIST_PNTTM,'YYYYMMDD')<![CDATA[ <= ]]> REPLACE(#searchEndDt#, '-' , '')
|
||||||
|
</isNotEmpty>
|
||||||
|
</isEqual>
|
||||||
|
/*날짜 검색 - 1년 전까지*/
|
||||||
|
<isEqual property="searchYear" compareValue="1">
|
||||||
|
<isNotEmpty prepend="AND" property="searchStartDt">
|
||||||
|
TO_CHAR(amm.FRST_REGIST_PNTTM,'YYYYMMDD') <![CDATA[ >= ]]> REPLACE(#diffYear#, '-' , '')
|
||||||
|
</isNotEmpty>
|
||||||
|
</isEqual>
|
||||||
|
/*날짜 검색 - 3년 전까지*/
|
||||||
|
<isEqual property="searchYear" compareValue="3">
|
||||||
|
<isNotEmpty prepend="AND" property="searchStartDt">
|
||||||
|
TO_CHAR(amm.FRST_REGIST_PNTTM,'YYYYMMDD') <![CDATA[ >= ]]> REPLACE(#diffYear#, '-' , '')
|
||||||
|
</isNotEmpty>
|
||||||
|
</isEqual>
|
||||||
|
/*날짜 검색 - 6년 전까지*/
|
||||||
|
<isEqual property="searchYear" compareValue="6">
|
||||||
|
<isNotEmpty prepend="AND" property="searchStartDt">
|
||||||
|
TO_CHAR(amm.FRST_REGIST_PNTTM,'YYYYMMDD') <![CDATA[ >= ]]> REPLACE(#diffYear#, '-' , '')
|
||||||
|
</isNotEmpty>
|
||||||
|
</isEqual>
|
||||||
|
|
||||||
|
|
||||||
|
/*조정상태*/
|
||||||
|
<isNotEmpty property="searchStatCdList">
|
||||||
|
<iterate open="(" close=")" conjunction="," property="searchStatCdList" prepend="AND ah.STAT_CD IN " > #searchStatCdList[]#</iterate>
|
||||||
|
</isNotEmpty>
|
||||||
|
-->
|
||||||
|
</select>
|
||||||
|
|
||||||
|
|
||||||
|
<select id="adjCourtCnctnDAO.findByid" parameterClass="adjCourtCnctnVO" resultClass="adjCourtCnctnVO">
|
||||||
|
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
COURT_SEQ as courtSeq
|
||||||
|
, COURT_NUM as courtNum
|
||||||
|
, COURT_ORG_NO as courtOrgNo
|
||||||
|
, COURT_NO as courtNo
|
||||||
|
, TO_CHAR(DCSN_DE,'YYYY-MM-DD') as dcsnDe
|
||||||
|
, TO_CHAR(RCV_DE,'YYYY-MM-DD') as rcvDe
|
||||||
|
, TO_CHAR(ALCTN_DE,'YYYY-MM-DD') as alctnDe
|
||||||
|
, ALCTN_MONTH as alctnMonth
|
||||||
|
, TO_CHAR(OFFICE_WORK_DE,'YYYY-MM-DD') as officeworkDe
|
||||||
|
, TO_CHAR(RPRT_DE,'YYYY-MM-DD') as rprtDe
|
||||||
|
, RPRT_MONTH as rprtMonth
|
||||||
|
, PROCESS_DAY as processDay
|
||||||
|
, COURT_FLD as courtFld
|
||||||
|
, ACCDNT_CN as accdntCn
|
||||||
|
, APLCN_INFO as aplcnInfo
|
||||||
|
, RSPND_INFO as rspndInfo
|
||||||
|
, APLCN_DPTY as aplcnDpty
|
||||||
|
, RSPND_DPTY as rspndDpty
|
||||||
|
, COURT_RSLT as courtRslt
|
||||||
|
, COURT_DETAIL_RSLT as courtDetailRslt
|
||||||
|
, ADJ_CMSNR as adjCmsnr
|
||||||
|
, PAY as pay
|
||||||
|
, APP_DE as appDe
|
||||||
|
, PYMNT_DAY as pymntDay
|
||||||
|
, EXTNS as extns
|
||||||
|
, RMRKS as rmrks
|
||||||
|
, USE_YN as use_yn
|
||||||
|
, TO_CHAR(FRST_REGIST_PNTTM,'YYYY-MM-DD') as frstRegistPnttm
|
||||||
|
, FRST_REGISTER_ID as frstRegisterId
|
||||||
|
, TO_CHAR(LAST_UPDT_PNTTM,'YYYY-MM-DD') as lastUpdtPnttm
|
||||||
|
, LAST_UPDT_PNTTM as lastUpdtPnttm
|
||||||
|
FROM
|
||||||
|
ADJ_COURT_CNCTN_MGR
|
||||||
|
WHERE
|
||||||
|
COURT_SEQ = #courtSeq#
|
||||||
|
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<select id="adjCourtCnctnDAO.adjCourtCnctnList" parameterClass="adjCourtCnctnVO" resultClass="adjCourtCnctnVO">
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
COURT_SEQ as courtSeq
|
||||||
|
, COURT_NUM as courtNum
|
||||||
|
, COURT_ORG_NO as courtOrgNo
|
||||||
|
, COURT_NO as courtNo
|
||||||
|
, TO_CHAR(DCSN_DE,'YYYY-MM-DD') as dcsnDe
|
||||||
|
, TO_CHAR(RCV_DE,'YYYY-MM-DD') as rcvDe
|
||||||
|
, TO_CHAR(ALCTN_DE,'YYYY-MM-DD') as alctnDe
|
||||||
|
, ALCTN_MONTH as alctnMonth
|
||||||
|
, TO_CHAR(OFFICE_WORK_DE,'YYYY-MM-DD') as officeworkDe
|
||||||
|
, TO_CHAR(RPRT_DE,'YYYY-MM-DD') as rprtDe
|
||||||
|
, RPRT_MONTH as rprtMonth
|
||||||
|
, PROCESS_DAY as processDay
|
||||||
|
, COURT_FLD as courtFld
|
||||||
|
, ACCDNT_CN as accdntCn
|
||||||
|
, APLCN_INFO as aplcnInfo
|
||||||
|
, RSPND_INFO as rspndInfo
|
||||||
|
, APLCN_DPTY as aplcnDpty
|
||||||
|
, RSPND_DPTY as rspndDpty
|
||||||
|
, COURT_RSLT as courtRslt
|
||||||
|
, COURT_DETAIL_RSLT as courtDetailRslt
|
||||||
|
, ADJ_CMSNR as adjCmsnr
|
||||||
|
, PAY as pay
|
||||||
|
, APP_DE as appDe
|
||||||
|
, PYMNT_DAY as pymntDay
|
||||||
|
, EXTNS as extns
|
||||||
|
, RMRKS as rmrks
|
||||||
|
, USE_YN as use_yn
|
||||||
|
, TO_CHAR(FRST_REGIST_PNTTM,'YYYY-MM-DD') as frstRegistPnttm
|
||||||
|
, FRST_REGISTER_ID as frstRegisterId
|
||||||
|
, TO_CHAR(LAST_UPDT_PNTTM,'YYYY-MM-DD') as lastUpdtPnttm
|
||||||
|
, LAST_UPDT_PNTTM as lastUpdtPnttm
|
||||||
|
FROM
|
||||||
|
ADJ_COURT_CNCTN_MGR
|
||||||
|
WHERE
|
||||||
|
1=1
|
||||||
|
<!--
|
||||||
|
/*작성중*/
|
||||||
|
<isEqual property="searchCondition" prepend="AND" compareValue="10">
|
||||||
|
amm.ADR_END_DE IS NULL
|
||||||
|
</isEqual>
|
||||||
|
|
||||||
|
/*작성완료*/
|
||||||
|
<isEqual property="searchCondition" prepend="AND" compareValue="20">
|
||||||
|
amm.ADR_END_DE IS NOT NULL
|
||||||
|
</isEqual>
|
||||||
|
|
||||||
|
/*검색 조정번호:10, 조정조사관:20, 조정부:30 */
|
||||||
|
<isEqual property="searchCondition2" prepend="AND" compareValue="10">
|
||||||
|
amm.ADR_NO LIKE CONCAT('%' , #searchKeyword#, '%')
|
||||||
|
</isEqual>
|
||||||
|
<isEqual property="searchCondition2" prepend="AND" compareValue="20">
|
||||||
|
aamp.ASS_PST_USR_NM LIKE CONCAT('%' , #searchKeyword#, '%')
|
||||||
|
</isEqual>
|
||||||
|
<isEqual property="searchCondition2" prepend="AND" compareValue="30">
|
||||||
|
amdm.MEM_DEPT_NM LIKE CONCAT('%' , #searchKeyword#, '%')
|
||||||
|
</isEqual>
|
||||||
|
|
||||||
|
/*조정상태*/
|
||||||
|
<isNotEmpty property="searchStatCdList">
|
||||||
|
<iterate open="(" close=")" conjunction="," property="searchStatCdList" prepend="AND ah.STAT_CD IN " > #searchStatCdList[]#</iterate>
|
||||||
|
</isNotEmpty>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*날짜 검색 - 기간지정*/
|
||||||
|
<isEqual property="searchYear" compareValue="99">
|
||||||
|
<isNotEmpty prepend="AND" property="searchStartDt">
|
||||||
|
TO_CHAR(amm.FRST_REGIST_PNTTM,'YYYYMMDD') <![CDATA[ >= ]]> REPLACE(#searchStartDt#, '-' , '')
|
||||||
|
</isNotEmpty>
|
||||||
|
|
||||||
|
<isNotEmpty prepend="AND" property="searchEndDt">
|
||||||
|
TO_CHAR(amm.FRST_REGIST_PNTTM,'YYYYMMDD')<![CDATA[ <= ]]> REPLACE(#searchEndDt#, '-' , '')
|
||||||
|
</isNotEmpty>
|
||||||
|
</isEqual>
|
||||||
|
/*날짜 검색 - 1년 전까지*/
|
||||||
|
<isEqual property="searchYear" compareValue="1">
|
||||||
|
<isNotEmpty prepend="AND" property="searchStartDt">
|
||||||
|
TO_CHAR(amm.FRST_REGIST_PNTTM,'YYYYMMDD') <![CDATA[ >= ]]> REPLACE(#diffYear#, '-' , '')
|
||||||
|
</isNotEmpty>
|
||||||
|
</isEqual>
|
||||||
|
/*날짜 검색 - 3년 전까지*/
|
||||||
|
<isEqual property="searchYear" compareValue="3">
|
||||||
|
<isNotEmpty prepend="AND" property="searchStartDt">
|
||||||
|
TO_CHAR(amm.FRST_REGIST_PNTTM,'YYYYMMDD') <![CDATA[ >= ]]> REPLACE(#diffYear#, '-' , '')
|
||||||
|
</isNotEmpty>
|
||||||
|
</isEqual>
|
||||||
|
/*날짜 검색 - 6년 전까지*/
|
||||||
|
<isEqual property="searchYear" compareValue="6">
|
||||||
|
<isNotEmpty prepend="AND" property="searchStartDt">
|
||||||
|
TO_CHAR(amm.FRST_REGIST_PNTTM,'YYYYMMDD') <![CDATA[ >= ]]> REPLACE(#diffYear#, '-' , '')
|
||||||
|
</isNotEmpty>
|
||||||
|
</isEqual>
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
ORDER BY COURT_SEQ
|
||||||
|
<isNotEmpty property="searchSortOrd">
|
||||||
|
$searchSortOrd$
|
||||||
|
</isNotEmpty>
|
||||||
|
LIMIT #recordCountPerPage# OFFSET #firstIndex#
|
||||||
|
</select>
|
||||||
|
|
||||||
<insert id="adjCourtCnctnDAO.insertCourtCnctn" parameterClass="adjCourtCnctnVO">
|
<insert id="adjCourtCnctnDAO.insertCourtCnctn" parameterClass="adjCourtCnctnVO">
|
||||||
INSERT INTO ADJ_COURT_CNCTN_MGR (
|
INSERT INTO ADJ_COURT_CNCTN_MGR (
|
||||||
COURT_SEQ
|
COURT_SEQ
|
||||||
@ -69,6 +281,39 @@
|
|||||||
,#frstRegisterId#
|
,#frstRegisterId#
|
||||||
)
|
)
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
<update id="adjCourtCnctnDAO.updateCourtCnctn" parameterClass="adjCourtCnctnVO">
|
||||||
|
UPDATE ADJ_COURT_CNCTN_MGR SET
|
||||||
|
COURT_NUM = #courtNum#
|
||||||
|
, COURT_ORG_NO = #courtOrgNo#
|
||||||
|
, COURT_NO = #courtNo#
|
||||||
|
, DCSN_DE = TO_DATETIME(TO_CHAR(#dcsnDe#,'YYYY-MM-DD'))
|
||||||
|
, RCV_DE = TO_DATETIME(TO_CHAR(#rcvDe#,'YYYY-MM-DD'))
|
||||||
|
, ALCTN_DE = TO_DATETIME(TO_CHAR(#alctnDe#,'YYYY-MM-DD'))
|
||||||
|
, ALCTN_MONTH = #alctnMonth#
|
||||||
|
, OFFICE_WORK_DE = TO_DATETIME(TO_CHAR(#officeWorkDe#,'YYYY-MM-DD'))
|
||||||
|
, RPRT_DE = TO_DATETIME(TO_CHAR(#rprtDe#,'YYYY-MM-DD'))
|
||||||
|
, RPRT_MONTH = #rprtMonth#
|
||||||
|
, PROCESS_DAY = #processDay#
|
||||||
|
, COURT_FLD = #courtFld#
|
||||||
|
, ACCDNT_CN = #accdntCn#
|
||||||
|
, APLCN_INFO = #aplcnInfo#
|
||||||
|
, RSPND_INFO = #rspndInfo#
|
||||||
|
, APLCN_DPTY = #aplcnDpty#
|
||||||
|
, RSPND_DPTY = #rspndDpty#
|
||||||
|
, COURT_RSLT = #courtRslt#
|
||||||
|
, COURT_DETAIL_RSLT = #courtDetailRslt#
|
||||||
|
, ADJ_CMSNR = #adjCmsnr#
|
||||||
|
, PAY = #pay#
|
||||||
|
, APP_DE = #appDe#
|
||||||
|
, PYMNT_DAY = #pymntDay#
|
||||||
|
, EXTNS = #extns#
|
||||||
|
, RMRKS = #rmrks#
|
||||||
|
, LAST_UPDT_PNTTM = NOW()
|
||||||
|
, LAST_UPDUSR_ID = #frstRegisterId#
|
||||||
|
where
|
||||||
|
COURT_SEQ = #courtSeq#
|
||||||
|
|
||||||
|
</update>
|
||||||
|
|
||||||
</sqlMap>
|
</sqlMap>
|
||||||
|
|||||||
@ -7,20 +7,20 @@
|
|||||||
<application generated-by="eclipse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zeroturnaround.com" xsi:schemaLocation="http://www.zeroturnaround.com http://update.zeroturnaround.com/jrebel/rebel-2_1.xsd">
|
<application generated-by="eclipse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zeroturnaround.com" xsi:schemaLocation="http://www.zeroturnaround.com http://update.zeroturnaround.com/jrebel/rebel-2_1.xsd">
|
||||||
|
|
||||||
<classpath>
|
<classpath>
|
||||||
<dir name="D:/Development/git_repository/kcc_adr_advc_git/target/classes">
|
<dir name="${rebel.workspace.path}/kcc_adr_advc_git/target/classes">
|
||||||
</dir>
|
</dir>
|
||||||
</classpath>
|
</classpath>
|
||||||
|
|
||||||
<web>
|
<web>
|
||||||
<link target="/">
|
<link target="/">
|
||||||
<dir name="D:/Development/git_repository/kcc_adr_advc_git/target/m2e-wtp/web-resources">
|
<dir name="${rebel.workspace.path}/kcc_adr_advc_git/target/m2e-wtp/web-resources">
|
||||||
<exclude name="/"/>
|
<exclude name="/"/>
|
||||||
</dir>
|
</dir>
|
||||||
</link>
|
</link>
|
||||||
<link target="/">
|
<link target="/">
|
||||||
<dir name="D:/Development/git_repository/kcc_adr_advc_git/src/main/webapp">
|
<dir name="${rebel.workspace.path}/kcc_adr_advc_git/src/main/webapp">
|
||||||
</dir>
|
</dir>
|
||||||
</link>
|
</link>
|
||||||
</web>
|
</web>
|
||||||
|
|
||||||
</application>
|
</application>
|
||||||
@ -0,0 +1,242 @@
|
|||||||
|
<%@ page contentType="text/html; charset=utf-8"%>
|
||||||
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||||
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
||||||
|
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
|
||||||
|
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
|
||||||
|
<%@ 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" %>
|
||||||
|
<%@ taglib prefix="double-submit" uri="http://www.egovframe.go.kr/tags/double-submit/jsp" %>
|
||||||
|
<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Language" content="ko" >
|
||||||
|
<title>법원연계조정관리 - 상세</title>
|
||||||
|
<script type="text/javaScript" language="javascript">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//목록 이동
|
||||||
|
function fn_GoList(){
|
||||||
|
var goListForm = document.goListForm ;
|
||||||
|
goListForm.submit();
|
||||||
|
}
|
||||||
|
|
||||||
|
//수정 화면으로 이동
|
||||||
|
function fn_modyfi(){
|
||||||
|
var goModifyForm = document.goModifyForm ;
|
||||||
|
goModifyForm.submit();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.btn_layout01 .area_left,.btn_layout01 .area_right{width: auto}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<c:url var="list_url" value="/kccadr/adjCourtCnctn/adjCourtCnctnList.do" />
|
||||||
|
<c:url var="modify_url" value="/kccadr/adjCourtCnctn/adjCourtCnctnModify.do" />
|
||||||
|
<form id="goListForm" name="goListForm" method="post" action="${list_url }">
|
||||||
|
<input type="hidden" name="searchKeyword" value=""/>
|
||||||
|
<input type="hidden" name="pageIndex" value="<c:out value='${courtVO.pageIndex}'/>"/>
|
||||||
|
<input type="hidden" name="searchSortCnd" value="<c:out value="${courtVO.searchSortCnd}" />" />
|
||||||
|
<input type="hidden" name="searchSortOrd" value="<c:out value="${courtVO.searchSortOrd}" />" />
|
||||||
|
<input type="hidden" name="pageUnit" value="<c:out value="${courtVO.pageUnit}" />" />
|
||||||
|
</form>
|
||||||
|
<form id="goModifyForm" name="goModifyForm" method="post" action="${modify_url }">
|
||||||
|
<input type="hidden" name="courtSeq" value="<c:out value="${courtVO.courtSeq}" />" />
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<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>
|
||||||
|
<p>법원연계조정목록</p>
|
||||||
|
</li>
|
||||||
|
<li><span class="cur_nav">법원연계조정상세</span></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- //cont_tit -->
|
||||||
|
|
||||||
|
|
||||||
|
<form id="cnctnForm" name="cnctnForm" method="post">
|
||||||
|
<div class="cont">
|
||||||
|
<!-- //cont_tit -->
|
||||||
|
<div class="tab_cont on">
|
||||||
|
<p class="tb_tit">조정 사건</p>
|
||||||
|
<div class="tbType02">
|
||||||
|
<table>
|
||||||
|
<colgroup>
|
||||||
|
<col style="width: 17%;">
|
||||||
|
<col style="width: 35%;">
|
||||||
|
<col style="width: 17%;">
|
||||||
|
<col style="width: 35%;">
|
||||||
|
</colgroup>
|
||||||
|
<tbody class="border_0">
|
||||||
|
<tr>
|
||||||
|
<th>번호</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.courtNum }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>결정일자</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.dcsnDe }" />
|
||||||
|
</td>
|
||||||
|
<th>수령일자</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.rcvDe }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>배당일자</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.alctnDe }" />
|
||||||
|
</td>
|
||||||
|
<th>배당월</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.alctnMonth}월" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>사무처리기한</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.officeWorkDe }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>보고일자</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.rprtDe }" />
|
||||||
|
</td>
|
||||||
|
<th>보고월</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.rprtMonth}" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>소요일</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.processDay}" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>본 사건번호</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.courtOrgNo }" />
|
||||||
|
</td>
|
||||||
|
<th>조정 사건번호</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.courtNo }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>분야</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.courtFld }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr style="height: 100px;">
|
||||||
|
<th>신청인 정보</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<c:out value="${courtVO.aplcnInfo }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr style="height: 100px;">
|
||||||
|
<th>피신청인 정보</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<c:out value="${courtVO.rspndInfo }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr style="height: 100px;">
|
||||||
|
<th>원고/<br />신청인(대리인)</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<c:out value="${courtVO.aplcnDpty }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr style="height: 100px;">
|
||||||
|
<th>피고/<br />피신청인(대리인)</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<c:out value="${courtVO.rspndDpty }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr style="height: 200px;">
|
||||||
|
<th>사건내용</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<c:out value="${courtVO.accdntCn }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>결과</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.courtRslt }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr style="height: 200px;">
|
||||||
|
<th>세부결과</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<c:out value="${courtVO.courtDetailRslt }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>조정위원</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.adjCmsnr }" />
|
||||||
|
</td>
|
||||||
|
<th>수당금액</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.pay }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>대면기일</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<c:out value="${courtVO.appDe }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>지급일자</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.pymntDay }" />
|
||||||
|
</td>
|
||||||
|
<th>1차연장</th>
|
||||||
|
<td>
|
||||||
|
<c:out value="${courtVO.extns }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr style="height: 200px;">
|
||||||
|
<th>비고</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<c:out value="${courtVO.rmrks }" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="btn_wrap btn_layout01">
|
||||||
|
<div class="area_left"></div>
|
||||||
|
<div class="area_right">
|
||||||
|
<button type="button" class="btnType06" onclick="fn_modyfi(); return false;">수정</button>
|
||||||
|
<button type="button" class="btnType03" onclick="fn_GoList(); return false;">목록</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
@ -44,14 +44,14 @@ function linkPage(pageNo){
|
|||||||
function fn_Create(){
|
function fn_Create(){
|
||||||
|
|
||||||
var goForm = document.goForm;
|
var goForm = document.goForm;
|
||||||
goForm.adrSeq.value = "";
|
|
||||||
goForm.submit();
|
goForm.submit();
|
||||||
}
|
}
|
||||||
|
|
||||||
function fn_goDetail(adrSeq){
|
function fn_goDetail(courtSeq){
|
||||||
|
|
||||||
var goForm = document.goForm;
|
var goForm = document.goForm;
|
||||||
goForm.adrSeq.value = adrSeq;
|
goForm.action = "<c:url value='/kccadr/adjCourtCnctn/adjCourtCnctnDetail.do'/>";
|
||||||
|
goForm.courtSeq.value = courtSeq;
|
||||||
goForm.submit();
|
goForm.submit();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -59,8 +59,8 @@ function fn_goDetail(adrSeq){
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<form id="listForm" name="listForm" action="" method="post">
|
<form id="listForm" name="listForm" action="" method="post">
|
||||||
<input type="hidden" name="pageIndex" value="<c:out value='${adjReqMgrPastVO.pageIndex}' default='1' />"/>
|
<input type="hidden" name="pageIndex" value="<c:out value='${adjCourtCnctnVO.pageIndex}' default='1' />"/>
|
||||||
<input type="hidden" name="searchSortOrd" value="<c:out value="${adjReqMgrPastVO.searchSortOrd }" />"/>
|
<input type="hidden" name="searchSortOrd" value="<c:out value="${adjCourtCnctnVO.searchSortOrd }" />"/>
|
||||||
<div class="cont_wrap">
|
<div class="cont_wrap">
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<div class="cont_tit">
|
<div class="cont_tit">
|
||||||
@ -91,60 +91,35 @@ function fn_goDetail(adrSeq){
|
|||||||
<p class="tit_text">구분</p>
|
<p class="tit_text">구분</p>
|
||||||
<select name="searchCondition2" id="searchCondition2" title="선택">
|
<select name="searchCondition2" id="searchCondition2" title="선택">
|
||||||
<option value="">선택</option>
|
<option value="">선택</option>
|
||||||
<option value="10" <c:if test="${adjReqMgrPastVO.searchCondition2 == '10'}">selected</c:if>>조정번호</option>
|
<option value="10" <c:if test="${adjCourtCnctnVO.searchCondition2 == ''}">selected</c:if>>조정번호</option>
|
||||||
<option value="20" <c:if test="${adjReqMgrPastVO.searchCondition2 == '20'}">selected</c:if>>조정조사관</option>
|
<option value="20" <c:if test="${adjCourtCnctnVO.searchCondition2 == '20'}">selected</c:if>>조정조사관</option>
|
||||||
<option value="30" <c:if test="${adjReqMgrPastVO.searchCondition2 == '30'}">selected</c:if>>조정부</option>
|
<option value="30" <c:if test="${adjCourtCnctnVO.searchCondition2 == '30'}">selected</c:if>>조정부</option>
|
||||||
</select>
|
</select>
|
||||||
<input type="text" class="search_input" id="searchKeyword" name="searchKeyword" value="<c:out value='${adjReqMgrPastVO.searchKeyword}'/>" placeholder="검색어를 입력하세요.">
|
<input type="text" class="search_input" id="searchKeyword" name="searchKeyword" value="<c:out value='${adjCourtCnctnVO.searchKeyword}'/>" placeholder="검색어를 입력하세요.">
|
||||||
<button class="btnType07 btn_search" onclick="fncGoList()">검색</button>
|
<button class="btnType07 btn_search" onclick="fncGoList()">검색</button>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<p class="tit_text">조정상태</p>
|
<p class="tit_text">결정일자</p>
|
||||||
<div class="check_wrap">
|
|
||||||
<span>
|
|
||||||
<input type="checkbox" id="searchStatCdAll" name="searchStatCdAll" value="Y">
|
|
||||||
<label for="searchStatCdAll">전체</label>
|
|
||||||
</span>
|
|
||||||
<span>
|
|
||||||
<input type="checkbox" id="searchStatCd1" name="searchStatCdList" value="305050" <c:if test="${fn:indexOf(adjReqMgrPastVO.searchStatCdList,'305050') > -1 }"> checked </c:if>>
|
|
||||||
<label for="searchStatCd1">조정취하</label>
|
|
||||||
</span>
|
|
||||||
<span>
|
|
||||||
<input type="checkbox" id="searchStatCd2" name="searchStatCdList" value="304050" <c:if test="${fn:indexOf(adjReqMgrPastVO.searchStatCdList,'304050') > -1 }"> checked </c:if>>
|
|
||||||
<label for="searchStatCd2">조정조서종결(성립)</label>
|
|
||||||
</span>
|
|
||||||
<span>
|
|
||||||
<input type="checkbox" id="searchStatCd3" name="searchStatCdList" value="307050" <c:if test="${fn:indexOf(adjReqMgrPastVO.searchStatCdList,'307050') > -1 }"> checked </c:if>>
|
|
||||||
<label for="searchStatCd3">불성립종결(불성립 / 조정권고 불성립 / 직권조정 불성립)</label>
|
|
||||||
</span>
|
|
||||||
<span>
|
|
||||||
<input type="checkbox" id="searchStatCd4" name="searchStatCdList" value="306050" <c:if test="${fn:indexOf(adjReqMgrPastVO.searchStatCdList,'306050') > -1 }"> checked </c:if>>
|
|
||||||
<label for="searchStatCd4">직권조정성립</label>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<p class="tit_text">신청일자</p>
|
|
||||||
<div class="radio_wrap">
|
<div class="radio_wrap">
|
||||||
<span>
|
<span>
|
||||||
<input ${adjReqMgrPastVO.searchYear eq '1' ? 'checked' : ''} value="1" type="radio" name="searchYear" id="year1">
|
<input ${adjCourtCnctnVO.searchYear eq '1' ? 'checked' : ''} value="1" type="radio" name="searchYear" id="year1">
|
||||||
<label for="year1">1년</label>
|
<label for="year1">1년</label>
|
||||||
</span>
|
</span>
|
||||||
<span>
|
<span>
|
||||||
<input ${adjReqMgrPastVO.searchYear eq '3' ? 'checked' : ''} value="3" type="radio" name="searchYear" id="year3">
|
<input ${adjCourtCnctnVO.searchYear eq '3' ? 'checked' : ''} value="3" type="radio" name="searchYear" id="year3">
|
||||||
<label for="year3">3년</label>
|
<label for="year3">3년</label>
|
||||||
</span>
|
</span>
|
||||||
<span>
|
<span>
|
||||||
<input ${adjReqMgrPastVO.searchYear eq '6' ? 'checked' : ''} value="6" type="radio" name="searchYear" id="year6">
|
<input ${adjCourtCnctnVO.searchYear eq '6' ? 'checked' : ''} value="6" type="radio" name="searchYear" id="year6">
|
||||||
<label for="year6">6년</label>
|
<label for="year6">6년</label>
|
||||||
</span>
|
</span>
|
||||||
<span>
|
<span>
|
||||||
<input ${adjReqMgrPastVO.searchYear eq '99' ? 'checked' : ''} value="99" type="radio" name="searchYear" id="yearEtc">
|
<input ${adjCourtCnctnVO.searchYear eq '99' ? 'checked' : ''} value="99" type="radio" name="searchYear" id="yearEtc">
|
||||||
<label for="yearEtc">기간지정</label>
|
<label for="yearEtc">기간지정</label>
|
||||||
</span>
|
</span>
|
||||||
<div id="sel_date" class="sel_date">
|
<div id="sel_date" class="sel_date">
|
||||||
<div class="calendar_wrap">
|
<div class="calendar_wrap">
|
||||||
<input type="text" class="startDate inp" title="검색시작일" id="startDate01" name="searchStartDt" value="${adjReqMgrPastVO.searchStartDt}" data-datecontrol="true" readonly>
|
<input type="text" class="startDate inp" title="검색시작일" id="startDate01" name="searchStartDt" value="${adjCourtCnctnVO.searchStartDt}" data-datecontrol="true" readonly>
|
||||||
<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
|
<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
|
||||||
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('startDate01-lry','',this)" class="btn_cal"></button>
|
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('startDate01-lry','',this)" class="btn_cal"></button>
|
||||||
<div id="startDate01-lry" class="calendarPop" style="display: none;">
|
<div id="startDate01-lry" class="calendarPop" style="display: none;">
|
||||||
@ -154,7 +129,7 @@ function fn_goDetail(adrSeq){
|
|||||||
</div>
|
</div>
|
||||||
~
|
~
|
||||||
<div class="calendar_wrap">
|
<div class="calendar_wrap">
|
||||||
<input type="text" class="endDate inp" title="검색종료일" id="endDate" name="searchEndDt" value="${adjReqMgrPastVO.searchEndDt}" data-datecontrol="true" readonly>
|
<input type="text" class="endDate inp" title="검색종료일" id="endDate" name="searchEndDt" value="${adjCourtCnctnVO.searchEndDt}" data-datecontrol="true" readonly>
|
||||||
<div class="calendar_in" id="calendarName_endDate" style="z-index: 9;">
|
<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>
|
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('endDate-lry','',this)" class="btn_cal" ></button>
|
||||||
<div id="endDate-lry" class="calendarPop" style="display: none;">
|
<div id="endDate-lry" class="calendarPop" style="display: none;">
|
||||||
@ -180,8 +155,8 @@ function fn_goDetail(adrSeq){
|
|||||||
<!-- </select> -->
|
<!-- </select> -->
|
||||||
<select name="searchCondition" id="searchCondition" onchange="linkPage(1);" title="분류 선택" style="width: 140px">
|
<select name="searchCondition" id="searchCondition" onchange="linkPage(1);" title="분류 선택" style="width: 140px">
|
||||||
<option value="">작성여부</option>
|
<option value="">작성여부</option>
|
||||||
<option value="10" <c:if test="${adjReqMgrPastVO.searchCondition eq 10 }">selected</c:if>>작성중</option>
|
<option value="10" <c:if test="${adjCourtCnctnVO.searchCondition eq 10 }">selected</c:if>>작성중</option>
|
||||||
<option value="20" <c:if test="${adjReqMgrPastVO.searchCondition eq 20 }">selected</c:if>>작성완료</option>
|
<option value="20" <c:if test="${adjCourtCnctnVO.searchCondition eq 20 }">selected</c:if>>작성완료</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -189,66 +164,54 @@ function fn_goDetail(adrSeq){
|
|||||||
<div class="list tbType01">
|
<div class="list tbType01">
|
||||||
<table>
|
<table>
|
||||||
<colgroup>
|
<colgroup>
|
||||||
<col style="width: 7%">
|
<col style="width: 50px">
|
||||||
<col style="width: 16%">
|
<col style="width: 10%">
|
||||||
<col style="width: 16%">
|
<col style="width: 70px">
|
||||||
|
<col style="width: 70px">
|
||||||
<col style="width: auto">
|
<col style="width: auto">
|
||||||
<col style="width: 17%">
|
<col style="width: 70px">
|
||||||
|
<col style="width: 10%">
|
||||||
</colgroup>
|
</colgroup>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>번호</th>
|
<th>번호</th>
|
||||||
<th>조정번호</th>
|
<th>조정 사건번호</th>
|
||||||
<th>신청인</th>
|
<th>분야</th>
|
||||||
<th>피신청인</th>
|
<th>결과</th>
|
||||||
<th>조사관</th>
|
<th>사건번호</th>
|
||||||
<th>조정부</th>
|
<th>조정위원</th>
|
||||||
<th>저작물종류</th>
|
<th>결정일자</th>
|
||||||
<th>조정결과<!-- <button class="sort btn_sort" id="sort_RS.ADR_SEQ">▲</button> --></th>
|
|
||||||
<th>작성여부</th>
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="list" items="${list }" varStatus="status">
|
<c:forEach var="list" items="${list }" varStatus="status">
|
||||||
<tr style=" cursor: pointer;" onclick="fn_goDetail('<c:out value="${list.adrSeq }" />')">
|
<c:choose>
|
||||||
|
<c:when test="${fn:length(list.accdntCn) > 50}">
|
||||||
|
<c:set var="accdntCn" value = "${fn:substring(list.accdntCn, 0, 48)}..." />
|
||||||
|
</c:when>
|
||||||
|
<c:otherwise>
|
||||||
|
<c:set var="accdntCn" value = "${fn:substring(list.accdntCn, 0, 50)}" />
|
||||||
|
</c:otherwise>
|
||||||
|
</c:choose>
|
||||||
|
|
||||||
|
<tr style=" cursor: pointer;" onclick="fn_goDetail('<c:out value="${list.courtSeq }" />')">
|
||||||
<td>
|
<td>
|
||||||
<c:if test="${adjReqMgrPastVO.searchSortOrd eq 'desc' }">
|
<c:if test="${adjCourtCnctnVO.searchSortOrd eq 'desc' }">
|
||||||
<c:out value="${ ( paginationInfo.totalRecordCount - ((adjReqMgrPastVO.pageIndex -1)*adjReqMgrPastVO.pageUnit) ) - status.index }"/>
|
<c:out value="${ ( paginationInfo.totalRecordCount - ((adjCourtCnctnVO.pageIndex -1)*adjCourtCnctnVO.pageUnit) ) - status.index }"/>
|
||||||
</c:if>
|
</c:if>
|
||||||
<c:if test="${adjReqMgrPastVO.searchSortOrd eq 'asc' }">
|
<c:if test="${adjCourtCnctnVO.searchSortOrd eq 'asc' }">
|
||||||
<c:out value="${(adjReqMgrPastVO.pageIndex - 1) * adjReqMgrPastVO.pageUnit + status.count}"/>
|
<c:out value="${(adjCourtCnctnVO.pageIndex - 1) * adjCourtCnctnVO.pageUnit + status.count}"/>
|
||||||
</c:if>
|
</c:if>
|
||||||
</td>
|
|
||||||
<td><c:out value="${list.adrNo }" /></td>
|
|
||||||
<td><c:out value="${list.rpplNm }" /></td>
|
|
||||||
<td><c:out value="${list.prpplNm }" /></td>
|
|
||||||
<td><c:out value="${list.assPstUsrNm }" /></td>
|
|
||||||
<td><c:out value="${list.memDeptNm }" /></td>
|
|
||||||
<%-- <td><a href="javascript:;" onclick="fn_goDetail('<c:out value="${list.adrSeq }" />')" title="상세페이지로 이동"><kc:code codeId="CC002" code="${list.ccTy}"/></a></td> --%>
|
|
||||||
<td><kc:code codeId="CC002" code="${list.ccTy}"/></td>
|
|
||||||
<td>
|
|
||||||
<c:choose>
|
|
||||||
<c:when test="${empty list.statTx }">
|
|
||||||
-
|
|
||||||
</c:when>
|
|
||||||
<c:otherwise>
|
|
||||||
<c:out value="${list.statTx }" />
|
|
||||||
</c:otherwise>
|
|
||||||
</c:choose>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<c:choose>
|
|
||||||
<c:when test="${empty list.adrEndDe }">
|
|
||||||
작성중
|
|
||||||
</c:when>
|
|
||||||
<c:otherwise>
|
|
||||||
작성완료
|
|
||||||
</c:otherwise>
|
|
||||||
</c:choose>
|
|
||||||
</td>
|
</td>
|
||||||
|
<td><c:out value="${list.courtNo }" /></td>
|
||||||
|
<td><c:out value="${list.courtFld }" /></td>
|
||||||
|
<td><c:out value="${list.courtRslt }" /></td>
|
||||||
|
<td><c:out value="${accdntCn }" /></td>
|
||||||
|
<td><c:out value="${list.adjCmsnr }" /></td>
|
||||||
|
<td><c:out value="${list.dcsnDe }" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
<c:if test="${empty list}">
|
<c:if test="${empty list}">
|
||||||
<tr><td colspan="9"><spring:message code="common.nodata.msg" /></td></tr>
|
<tr><td colspan="9"><spring:message code="common.nodata.msg" /></td></tr>
|
||||||
</c:if>
|
</c:if>
|
||||||
</tbody>
|
</tbody>
|
||||||
@ -271,7 +234,7 @@ function fn_goDetail(adrSeq){
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<form id="goForm" name="goForm" action="<c:url value="/kccadr/adjCourtCnctn/adjCourtCnctnRegist.do" />" method="post">
|
<form id="goForm" name="goForm" action="<c:url value="/kccadr/adjCourtCnctn/adjCourtCnctnRegist.do" />" method="post">
|
||||||
<input type="hidden" id="adrSeq" name="adrSeq" value="" />
|
<input type="hidden" id="courtSeq" name="courtSeq" value="" />
|
||||||
</form>
|
</form>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -0,0 +1,358 @@
|
|||||||
|
<%@ page contentType="text/html; charset=utf-8"%>
|
||||||
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||||
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
||||||
|
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
|
||||||
|
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
|
||||||
|
<%@ 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" %>
|
||||||
|
<%@ taglib prefix="double-submit" uri="http://www.egovframe.go.kr/tags/double-submit/jsp" %>
|
||||||
|
<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Language" content="ko" >
|
||||||
|
<title>법원연계조정관리 - 수정</title>
|
||||||
|
<script type="text/javaScript" language="javascript">
|
||||||
|
|
||||||
|
$(document).ready(function(){
|
||||||
|
|
||||||
|
// 배당일자, 보고일자 선택하면 발동되는 event
|
||||||
|
// 소요일 계산
|
||||||
|
$('#alctnDe, #rprtDe').on('focusin',function(){
|
||||||
|
|
||||||
|
var alctnVal = $('#alctnDe').val();
|
||||||
|
var rprtVal = $('#rprtDe').val();
|
||||||
|
|
||||||
|
if(alctnVal && rprtVal)
|
||||||
|
{
|
||||||
|
|
||||||
|
var returnVal = 0;
|
||||||
|
|
||||||
|
alctnVal = alctnVal.replaceAll("-", "");
|
||||||
|
rprtVal = rprtVal.replaceAll("-", "");
|
||||||
|
|
||||||
|
returnVal = Number(rprtVal) - Number(alctnVal);
|
||||||
|
|
||||||
|
$('#processDay').val('');
|
||||||
|
$('#processDay').val(returnVal);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 보고월
|
||||||
|
if($(this).attr('id') === 'rprtDe')
|
||||||
|
{
|
||||||
|
var month = $(this).val().split('-')[1].replace(/(^0+)/, "");
|
||||||
|
|
||||||
|
$('#rprtMonth').val(month+'월');
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
function fn_modify(){
|
||||||
|
|
||||||
|
var msg = "수정 하시겠습니까?"
|
||||||
|
if(confirm(msg)){
|
||||||
|
//신청인 정보 입력
|
||||||
|
var data = new FormData(document.cnctnForm);
|
||||||
|
var url= "/kccadr/adjCourtCnctn/adjCourtCnctnUpdateAjax.do";
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
type: "POST",
|
||||||
|
url: url,
|
||||||
|
data: data,
|
||||||
|
dataType:'json',
|
||||||
|
async: false,
|
||||||
|
processData: false,
|
||||||
|
contentType: false,
|
||||||
|
cache: false,
|
||||||
|
success: function (data) {
|
||||||
|
alert(data.data);
|
||||||
|
if(data.status == 'OK')
|
||||||
|
{
|
||||||
|
$('#goListForm').submit();
|
||||||
|
}
|
||||||
|
else if(data.status == 'Unauthorized' || data.status == 'BAD_REQUEST')
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
error: function (e) { alert("저장에 실패하였습니다."); console.log("ERROR : ", e); }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 목록 이동
|
||||||
|
function fn_GoList(){
|
||||||
|
var goListForm = document.goListForm ;
|
||||||
|
goListForm.action = "<c:url value='/kccadr/adjCourtCnctn/adjCourtCnctnList.do'/>";
|
||||||
|
goListForm.submit();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.btn_layout01 .area_left,.btn_layout01 .area_right{width: auto}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<c:url var="list_url" value="/kccadr/adjCourtCnctn/adjCourtCnctnList.do" />
|
||||||
|
<form id="goListForm" name="goListForm" method="post" action="${list_url }">
|
||||||
|
<input type="hidden" name="searchKeyword" value=""/>
|
||||||
|
<input type="hidden" name="pageIndex" value="<c:out value='${adjCourtCnctnVO.pageIndex}'/>"/>
|
||||||
|
<input type="hidden" name="searchSortCnd" value="<c:out value="${adjCourtCnctnVO.searchSortCnd}" />" />
|
||||||
|
<input type="hidden" name="searchSortOrd" value="<c:out value="${adjCourtCnctnVO.searchSortOrd}" />" />
|
||||||
|
<input type="hidden" name="pageUnit" value="<c:out value="${adjCourtCnctnVO.pageUnit}" />" />
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<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>
|
||||||
|
<p>법원연계조정목록</p>
|
||||||
|
</li>
|
||||||
|
<li><span class="cur_nav">법원연계조정수정</span></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- //cont_tit -->
|
||||||
|
|
||||||
|
|
||||||
|
<form id="cnctnForm" name="cnctnForm" method="post">
|
||||||
|
<input type="hidden" name="courtSeq" value="<c:out value="${courtVO.courtSeq }" />">
|
||||||
|
<div class="cont">
|
||||||
|
<!-- //cont_tit -->
|
||||||
|
<div class="tab_cont on">
|
||||||
|
<p class="tb_tit">조정 사건</p>
|
||||||
|
<div class="tbType02">
|
||||||
|
<table>
|
||||||
|
<colgroup>
|
||||||
|
<col style="width: 17%;">
|
||||||
|
<col style="width: 35%;">
|
||||||
|
<col style="width: 17%;">
|
||||||
|
<col style="width: 35%;">
|
||||||
|
</colgroup>
|
||||||
|
<tbody class="border_0">
|
||||||
|
<tr>
|
||||||
|
<th>번호</th>
|
||||||
|
<td>
|
||||||
|
<p class="change_text">
|
||||||
|
<input type="text" id="courtNum" name="courtNum" value="<c:out value="${fn:trim(courtVO.courtNum) }" />"/>
|
||||||
|
</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>결정일자</th>
|
||||||
|
<td>
|
||||||
|
<div id="sel_date" class="sel_date">
|
||||||
|
<input readonly="readonly" type="text" class="startDate inp" title="결정일자" id="dcsnDe" name="dcsnDe" value="<c:out value="${courtVO.dcsnDe }" />" data-datecontrol="true">
|
||||||
|
<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="dcsnDe-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<th>수령일자</th>
|
||||||
|
<td>
|
||||||
|
<div id="sel_date" class="sel_date">
|
||||||
|
<input readonly="readonly" type="text" class="startDate inp" title="결정일자" id="rcvDe" name="rcvDe" value="<c:out value="${courtVO.rcvDe }" />" 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>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>배당일자</th>
|
||||||
|
<td>
|
||||||
|
<div id="sel_date" class="sel_date">
|
||||||
|
<input readonly="readonly" type="text" class="alctnDe inp" title="배당일자" id="alctnDe" name="alctnDe" value="<c:out value="${courtVO.alctnDe }" />" data-datecontrol="true" onchange="test(this);">
|
||||||
|
<div class="calendar_in" id="calendarName_endDate" style="z-index: 9;">
|
||||||
|
<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>
|
||||||
|
</td>
|
||||||
|
<th>배당월</th>
|
||||||
|
<td>
|
||||||
|
<select id="alctnMonth" name="alctnMonth">
|
||||||
|
<option value="">선택</option>
|
||||||
|
<c:forEach var="i" begin="1" end="12" step="1">
|
||||||
|
<option value="${i}" <c:if test="${fn:trim(courtVO.alctnMonth) eq i }">selected="selected"</c:if> >${i}월</option>
|
||||||
|
</c:forEach>
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>사무처리기한</th>
|
||||||
|
<td>
|
||||||
|
<div id="sel_date" class="sel_date">
|
||||||
|
<input readonly="readonly" type="text" class="officeWorkDe inp" title="사무처리기한" id="officeWorkDe" name="officeWorkDe" value="<c:out value="${courtVO.officeWorkDe }" />" 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>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>보고일자</th>
|
||||||
|
<td>
|
||||||
|
<div id="sel_date" class="sel_date">
|
||||||
|
<input readonly="readonly" type="text" class="rprtDe inp" title="보고일자" id="rprtDe" name="rprtDe" value="<c:out value="${courtVO.rprtDe }" />" 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>
|
||||||
|
</td>
|
||||||
|
<th>보고월</th>
|
||||||
|
<td>
|
||||||
|
<!-- <select id="rprtMonth" name="rprtMonth"> -->
|
||||||
|
<!-- <option value="">선택</option> -->
|
||||||
|
<%-- <c:forEach var="i" begin="1" end="12" step="1"> --%>
|
||||||
|
<%-- <option value="${i}">${i}월</option> --%>
|
||||||
|
<%-- </c:forEach> --%>
|
||||||
|
<!-- </select> -->
|
||||||
|
<input type="text" id="rprtMonth" name="rprtMonth" value="<c:out value="${courtVO.rprtMonth }" />" placeholder="보고일자 선택" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>소요일</th>
|
||||||
|
<td>
|
||||||
|
<input readonly="readonly" type="text" id="processDay" name="processDay" value="<c:out value="${courtVO.processDay }" />" placeholder=""/>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>본 사건번호</th>
|
||||||
|
<td>
|
||||||
|
<input type="text" id="courtOrgNo" name="courtOrgNo" value="<c:out value="${courtVO.courtOrgNo }" />" />
|
||||||
|
</td>
|
||||||
|
<th>조정 사건번호</th>
|
||||||
|
<td>
|
||||||
|
<input type="text" id="courtNo" name="courtNo" value="<c:out value="${courtVO.courtNo }" />" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>분야</th>
|
||||||
|
<td>
|
||||||
|
<input type="text" id="courtFld" name="courtFld" value="<c:out value="${courtVO.courtFld }" />" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>신청인 정보</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<textarea name="aplcnInfo" id="aplcnInfo" value="<c:out value="${courtVO.aplcnInfo }" />" cols="30" rows="3"><c:out value="${courtVO.aplcnInfo }" /></textarea>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>피신청인 정보</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<textarea name="rspndInfo" id="rspndInfo" value="<c:out value="${courtVO.rspndInfo }" />" cols="30" rows="3"><c:out value="${courtVO.rspndInfo }" /></textarea>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>원고/<br />신청인(대리인)</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<textarea name="aplcnDpty" id="aplcnDpty" value="<c:out value="${courtVO.aplcnDpty }" />" cols="30" rows="3"><c:out value="${courtVO.aplcnDpty }" /></textarea>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>피고/<br />피신청인(대리인)</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<textarea name="rspndDpty" id="rspndDpty" value="<c:out value="${courtVO.rspndDpty }" />" cols="30" rows="3"><c:out value="${courtVO.rspndDpty }" /></textarea>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>사건내용</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<textarea name="accdntCn" id="accdntCn" value="<c:out value="${courtVO.accdntCn }" />" cols="30" rows="3"><c:out value="${courtVO.accdntCn }" /></textarea>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>결과</th>
|
||||||
|
<td>
|
||||||
|
<input type="text" id="courtRslt" name="courtRslt" value="<c:out value="${courtVO.courtRslt }" />"/>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr style="height: 200px;">
|
||||||
|
<th>세부결과</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<textarea id="courtDetailRslt" name="courtDetailRslt" value="<c:out value="${courtVO.courtDetailRslt }" />" cols="30" rows="5"><c:out value="${courtVO.courtDetailRslt }" /></textarea>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>조정위원</th>
|
||||||
|
<td>
|
||||||
|
<input type="text" id="adjCmsnr" name="adjCmsnr" value="<c:out value="${courtVO.adjCmsnr }" />" />
|
||||||
|
</td>
|
||||||
|
<th>수당금액</th>
|
||||||
|
<td>
|
||||||
|
<input type="text" id="pay" name="pay" value="<c:out value="${courtVO.pay }" />" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>대면기일</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<input type="text" id="appDe" name="appDe" value="<c:out value="${courtVO.appDe }" />" size="98" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>지급일자</th>
|
||||||
|
<td>
|
||||||
|
<input type="text" id="pymntDay" name="pymntDay" value="<c:out value="${courtVO.pymntDay }" />" />
|
||||||
|
</td>
|
||||||
|
<th>1차연장</th>
|
||||||
|
<td>
|
||||||
|
<input type="text" id="extns" name="extns" value="<c:out value="${courtVO.extns }" />" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>비고</th>
|
||||||
|
<td colspan="3">
|
||||||
|
<textarea name="rmrks" id="rmrks" value="<c:out value="${courtVO.rmrks }" />" cols="30" rows="5"><c:out value="${courtVO.rmrks }" /></textarea>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="btn_wrap btn_layout01">
|
||||||
|
<div class="area_left"></div>
|
||||||
|
<div class="area_right">
|
||||||
|
<button type="button" class="btnType06" onclick="fn_modify(); return false;">수정</button>
|
||||||
|
<button type="button" class="btnType03" onclick="fn_GoList(); return false;">목록</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
@ -74,8 +74,7 @@ function fn_regist(){
|
|||||||
alert(data.data);
|
alert(data.data);
|
||||||
if(data.status == 'OK')
|
if(data.status == 'OK')
|
||||||
{
|
{
|
||||||
$('#adrSeqHidden').val(data.dataSub);
|
$('#goListForm').submit();
|
||||||
$('#nextGoPageForm').submit();
|
|
||||||
}
|
}
|
||||||
else if(data.status == 'Unauthorized' || data.status == 'BAD_REQUEST')
|
else if(data.status == 'Unauthorized' || data.status == 'BAD_REQUEST')
|
||||||
{
|
{
|
||||||
@ -102,7 +101,8 @@ function fn_GoList(){
|
|||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<form id="goListForm" name="goListForm" method="post" >
|
<c:url var="list_url" value="/kccadr/adjCourtCnctn/adjCourtCnctnList.do" />
|
||||||
|
<form id="goListForm" name="goListForm" method="post" action="${list_url }">
|
||||||
<input type="hidden" name="searchKeyword" value=""/>
|
<input type="hidden" name="searchKeyword" value=""/>
|
||||||
<input type="hidden" name="pageIndex" value="<c:out value='${adjCourtCnctnVO.pageIndex}'/>"/>
|
<input type="hidden" name="pageIndex" value="<c:out value='${adjCourtCnctnVO.pageIndex}'/>"/>
|
||||||
<input type="hidden" name="searchSortCnd" value="<c:out value="${adjCourtCnctnVO.searchSortCnd}" />" />
|
<input type="hidden" name="searchSortCnd" value="<c:out value="${adjCourtCnctnVO.searchSortCnd}" />" />
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user