Merge branch 'hylee'
This commit is contained in:
commit
f8528be323
@ -646,9 +646,18 @@ public class ApmController {
|
|||||||
@RequestMapping(value = "popup/adjstReqOpenExamplePop.do")
|
@RequestMapping(value = "popup/adjstReqOpenExamplePop.do")
|
||||||
public String adjstReqOpenExamplePop(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception {
|
public String adjstReqOpenExamplePop(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception {
|
||||||
|
|
||||||
model.addAttribute("ccTy", adjstReqVO.getCcTy());
|
List<AdjstReqVO> exmp = adjstReqService.selectAdjstReqOpenExamplePop(adjstReqVO);
|
||||||
model.addAttribute("exmpCd", adjstReqVO.getExmpCd());
|
|
||||||
|
|
||||||
|
// if (exmp != null && StringUtils.isNotBlank(exmp.getAtchFileId())) {
|
||||||
|
// FileVO fileVO = new FileVO();
|
||||||
|
// fileVO.setAtchFileId(exmp.getAtchFileId());
|
||||||
|
// List<FileVO> fileList = fileService.selectFileInfs(fileVO);
|
||||||
|
// model.addAttribute("fileList", fileList);
|
||||||
|
// }
|
||||||
|
model.addAttribute("exmp", exmp);
|
||||||
|
model.addAttribute("ccTy", adjstReqVO.getCcTy());
|
||||||
|
model.addAttribute("exmpCd", adjstReqVO.getExmpCd());
|
||||||
|
|
||||||
|
|
||||||
return "/kccadr/adjPgrMgr/apm/popup/adjstReqOpenExamplePop";
|
return "/kccadr/adjPgrMgr/apm/popup/adjstReqOpenExamplePop";
|
||||||
}
|
}
|
||||||
@ -664,7 +673,7 @@ public class ApmController {
|
|||||||
@RequestMapping(value = "popup/adjstReqOpenExamplePop2.do")
|
@RequestMapping(value = "popup/adjstReqOpenExamplePop2.do")
|
||||||
public String adjstReqOpenExamplePop2(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception {
|
public String adjstReqOpenExamplePop2(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception {
|
||||||
|
|
||||||
AdjstReqVO exmp = adjstReqService.selectAdjstReqOpenExamplePop(adjstReqVO);
|
AdjstReqVO exmp = adjstReqService.selectAdjstReqOpenExamplePop(adjstReqVO).get(0);
|
||||||
|
|
||||||
if (exmp != null && StringUtils.isNotBlank(exmp.getAtchFileId())) {
|
if (exmp != null && StringUtils.isNotBlank(exmp.getAtchFileId())) {
|
||||||
FileVO fileVO = new FileVO();
|
FileVO fileVO = new FileVO();
|
||||||
|
|||||||
@ -53,7 +53,7 @@ public interface AdjstReqService {
|
|||||||
|
|
||||||
public AdjstReqVO selectAdjstReqOpenExamplePopCn(AdjstReqVO adjstReqVO) throws Exception;
|
public AdjstReqVO selectAdjstReqOpenExamplePopCn(AdjstReqVO adjstReqVO) throws Exception;
|
||||||
|
|
||||||
public AdjstReqVO selectAdjstReqOpenExamplePop(AdjstReqVO adjstReqVO) throws Exception;
|
public List<AdjstReqVO> selectAdjstReqOpenExamplePop(AdjstReqVO adjstReqVO) throws Exception;
|
||||||
|
|
||||||
// 조정사건 대리인/신청인/피신청인 정보 불러오기
|
// 조정사건 대리인/신청인/피신청인 정보 불러오기
|
||||||
public List<AdjstReqVO> selectAdjsReqUserListByadjSeq(AdjstReqVO adjstReqVO) throws Exception;
|
public List<AdjstReqVO> selectAdjsReqUserListByadjSeq(AdjstReqVO adjstReqVO) throws Exception;
|
||||||
|
|||||||
@ -165,6 +165,7 @@ public class AdjstReqVO extends ComDefaultVO implements Serializable {
|
|||||||
private String reqDetail;
|
private String reqDetail;
|
||||||
private String rejtReson;
|
private String rejtReson;
|
||||||
private String edtStatus;
|
private String edtStatus;
|
||||||
|
private String exmpMgrId;
|
||||||
private String exmpCd;
|
private String exmpCd;
|
||||||
private String exmpCn;
|
private String exmpCn;
|
||||||
private String exmpTit;
|
private String exmpTit;
|
||||||
@ -881,6 +882,12 @@ public class AdjstReqVO extends ComDefaultVO implements Serializable {
|
|||||||
public void setLoginNextUrl(String loginNextUrl) {
|
public void setLoginNextUrl(String loginNextUrl) {
|
||||||
this.loginNextUrl = loginNextUrl;
|
this.loginNextUrl = loginNextUrl;
|
||||||
}
|
}
|
||||||
|
public String getExmpMgrId() {
|
||||||
|
return exmpMgrId;
|
||||||
|
}
|
||||||
|
public void setExmpMgrId(String exmpMgrId) {
|
||||||
|
this.exmpMgrId = exmpMgrId;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -176,8 +176,8 @@ public class AdjstReqDAO extends EgovAbstractDAO {
|
|||||||
return (AdjstReqVO) select("AdjstReqDAO.selectAdjstReqOpenAnswerExamplePop",adjstReqVO);
|
return (AdjstReqVO) select("AdjstReqDAO.selectAdjstReqOpenAnswerExamplePop",adjstReqVO);
|
||||||
}
|
}
|
||||||
|
|
||||||
public AdjstReqVO selectAdjstReqOpenExamplePop(AdjstReqVO adjstReqVO) throws Exception {
|
public List<AdjstReqVO> selectAdjstReqOpenExamplePop(AdjstReqVO adjstReqVO) throws Exception {
|
||||||
return (AdjstReqVO) select("AdjstReqDAO.selectAdjstReqOpenExamplePop",adjstReqVO);
|
return (List<AdjstReqVO>) list("AdjstReqDAO.selectAdjstReqOpenExamplePop",adjstReqVO);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int selectRespondentSchChk(AdjstReqVO adjstReqVO) {
|
public int selectRespondentSchChk(AdjstReqVO adjstReqVO) {
|
||||||
|
|||||||
@ -1177,7 +1177,7 @@ public class AdjstReqServiceImpl extends EgovAbstractServiceImpl implements Adj
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public AdjstReqVO selectAdjstReqOpenExamplePop(AdjstReqVO adjstReqVO) throws Exception {
|
public List<AdjstReqVO> selectAdjstReqOpenExamplePop(AdjstReqVO adjstReqVO) throws Exception {
|
||||||
return adjstReqDAO.selectAdjstReqOpenExamplePop(adjstReqVO);
|
return adjstReqDAO.selectAdjstReqOpenExamplePop(adjstReqVO);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -50,6 +50,7 @@ import kcc.com.utl.fcc.service.EgovStringUtil;
|
|||||||
import kcc.com.utl.user.service.CheckAdrProcessUtil;
|
import kcc.com.utl.user.service.CheckAdrProcessUtil;
|
||||||
import kcc.kccadr.accdnt.crtfc.service.CrtfcService;
|
import kcc.kccadr.accdnt.crtfc.service.CrtfcService;
|
||||||
import kcc.kccadr.adjPgrMgr.exmp.cmm.ExmpManageVO;
|
import kcc.kccadr.adjPgrMgr.exmp.cmm.ExmpManageVO;
|
||||||
|
import kcc.kccadr.adjReqMgrPast.service.AdjReqMgrPastVO;
|
||||||
import kcc.kccadr.adjst.service.AdjstReqService;
|
import kcc.kccadr.adjst.service.AdjstReqService;
|
||||||
import kcc.kccadr.adjst.service.AdjstReqVO;
|
import kcc.kccadr.adjst.service.AdjstReqVO;
|
||||||
import kcc.kccadr.cmm.KccadrConstants;
|
import kcc.kccadr.cmm.KccadrConstants;
|
||||||
@ -203,10 +204,34 @@ public class AdjstReqWebController {
|
|||||||
*/
|
*/
|
||||||
@RequestMapping("/web/kccadr/adjst/popup/adjstReqOpenExamplePop.do")
|
@RequestMapping("/web/kccadr/adjst/popup/adjstReqOpenExamplePop.do")
|
||||||
public String adjstReqOpenExamplePop(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception {
|
public String adjstReqOpenExamplePop(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception {
|
||||||
model.addAttribute("ccTy", adjstReqVO.getCcTy());
|
|
||||||
model.addAttribute("exmpCd", adjstReqVO.getExmpCd());
|
List<AdjstReqVO> exmpList = adjstReqService.selectAdjstReqOpenExamplePop(adjstReqVO);
|
||||||
|
|
||||||
|
// if (exmpList != null && StringUtils.isNotBlank(exmpList.getAtchFileId())) {
|
||||||
|
// FileVO fileVO = new FileVO();
|
||||||
|
// fileVO.setAtchFileId(exmpList.getAtchFileId());
|
||||||
|
// List<FileVO> fileList = fileService.selectFileInfs(fileVO);
|
||||||
|
// model.addAttribute("fileList", fileList);
|
||||||
|
// }
|
||||||
|
model.addAttribute("exmpList", exmpList);
|
||||||
|
|
||||||
return "/web/kccadr/adjst/popup/adjstReqOpenExamplePop";
|
return "/web/kccadr/adjst/popup/adjstReqOpenExamplePop";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@RequestMapping(value = {"/web/kccadr/adjst/popup/adjstReqOpenExampleAjax.do"})
|
||||||
|
public ResponseEntity<RestResponse> saveAdjReqRecordAjax(AdjstReqVO adjstReqVO, HttpServletRequest request) throws Exception {
|
||||||
|
|
||||||
|
List<AdjstReqVO> exmpList = adjstReqService.selectAdjstReqOpenExamplePop(adjstReqVO);
|
||||||
|
|
||||||
|
// if (exmpList != null && StringUtils.isNotBlank(exmpList.getAtchFileId())) {
|
||||||
|
// FileVO fileVO = new FileVO();
|
||||||
|
// fileVO.setAtchFileId(exmpList.getAtchFileId());
|
||||||
|
// List<FileVO> fileList = fileService.selectFileInfs(fileVO);
|
||||||
|
// model.addAttribute("fileList", fileList);
|
||||||
|
// }
|
||||||
|
|
||||||
|
return ResponseEntity.ok(new RestResponse(HttpStatus.OK, exmpList, "", LocalDateTime.now()));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -220,7 +245,7 @@ public class AdjstReqWebController {
|
|||||||
@RequestMapping(value = "/web/kccadr/adjst/popup/adjstReqOpenExamplePop2.do")
|
@RequestMapping(value = "/web/kccadr/adjst/popup/adjstReqOpenExamplePop2.do")
|
||||||
public String adjstReqOpenExamplePop2(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception {
|
public String adjstReqOpenExamplePop2(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception {
|
||||||
|
|
||||||
AdjstReqVO exmp = adjstReqService.selectAdjstReqOpenExamplePop(adjstReqVO);
|
AdjstReqVO exmp = adjstReqService.selectAdjstReqOpenExamplePop(adjstReqVO).get(0);
|
||||||
|
|
||||||
if (exmp != null && StringUtils.isNotBlank(exmp.getAtchFileId())) {
|
if (exmp != null && StringUtils.isNotBlank(exmp.getAtchFileId())) {
|
||||||
FileVO fileVO = new FileVO();
|
FileVO fileVO = new FileVO();
|
||||||
@ -228,15 +253,12 @@ public class AdjstReqWebController {
|
|||||||
List<FileVO> fileList = fileService.selectFileInfs(fileVO);
|
List<FileVO> fileList = fileService.selectFileInfs(fileVO);
|
||||||
model.addAttribute("fileList", fileList);
|
model.addAttribute("fileList", fileList);
|
||||||
}
|
}
|
||||||
System.out.println("exmp :: "+ exmp);
|
|
||||||
model.addAttribute("exmp", exmp);
|
model.addAttribute("exmp", exmp);
|
||||||
return "/web/kccadr/adjst/popup/adjstReqOpenExamplePop2";
|
return "/web/kccadr/adjst/popup/adjstReqOpenExamplePop2";
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequestMapping("/web/kccadr/adjst/popup/adjstReqOpenExamplePopCn.do")
|
@RequestMapping("/web/kccadr/adjst/popup/adjstReqOpenExamplePopCn.do")
|
||||||
public ResponseEntity<RestResponse> adjstReqOpenExamplePopCn(@RequestBody AdjstReqVO adjstReqVO) throws Exception {
|
public ResponseEntity<RestResponse> adjstReqOpenExamplePopCn(@RequestBody AdjstReqVO adjstReqVO) throws Exception {
|
||||||
System.out.println("adjstReqVO.getExmpCd() :: "+ adjstReqVO.getExmpCd());
|
|
||||||
System.out.println("adjstReqVO.getExmpCcTy() :: "+ adjstReqVO.getExmpCcTy());
|
|
||||||
AdjstReqVO exmp = adjstReqService.selectAdjstReqOpenExamplePopCn(adjstReqVO);
|
AdjstReqVO exmp = adjstReqService.selectAdjstReqOpenExamplePopCn(adjstReqVO);
|
||||||
|
|
||||||
// if (exmp != null && StringUtils.isNotBlank(exmp.getAtchFileId())) {
|
// if (exmp != null && StringUtils.isNotBlank(exmp.getAtchFileId())) {
|
||||||
@ -248,8 +270,15 @@ public class AdjstReqWebController {
|
|||||||
return ResponseEntity.ok().body(new RestResponse(HttpStatus.OK, exmp.getExmpCn(), LocalDateTime.now()));
|
return ResponseEntity.ok().body(new RestResponse(HttpStatus.OK, exmp.getExmpCn(), LocalDateTime.now()));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 조정신청 구분선택 - 안내화면
|
* @methodName : adjstReqOpenAnswerExamplePop
|
||||||
|
* @author : 이호영
|
||||||
|
* @date : 2022.10.14
|
||||||
|
* @description : 답변서 예문
|
||||||
|
* @param adjstReqVO
|
||||||
|
* @param model
|
||||||
|
* @return
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@RequestMapping("/web/kccadr/adjst/popup/adjstReqOpenAnswerExamplePop.do")
|
@RequestMapping("/web/kccadr/adjst/popup/adjstReqOpenAnswerExamplePop.do")
|
||||||
public String adjstReqOpenAnswerExamplePop(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception {
|
public String adjstReqOpenAnswerExamplePop(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception {
|
||||||
@ -263,7 +292,7 @@ public class AdjstReqWebController {
|
|||||||
model.addAttribute("exmp", exmp);
|
model.addAttribute("exmp", exmp);
|
||||||
return "/web/kccadr/adjst/popup/adjstReqOpenAnswerExamplePop";
|
return "/web/kccadr/adjst/popup/adjstReqOpenAnswerExamplePop";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 조정신청 구분선택 - 안내화면
|
* 조정신청 구분선택 - 안내화면
|
||||||
|
|||||||
@ -179,7 +179,7 @@ public class AdjstExpDetailController {
|
|||||||
* 조정신청 구분선택 - 안내화면
|
* 조정신청 구분선택 - 안내화면
|
||||||
*/
|
*/
|
||||||
@RequestMapping("/web/kccadr/adjstExpDetail/popup/openExpExamplePop.do")
|
@RequestMapping("/web/kccadr/adjstExpDetail/popup/openExpExamplePop.do")
|
||||||
public String adjstReqOpenAnswerExamplePop(@ModelAttribute("adjDeputyReqVO") AdjstDeputyReqVO adjDeputyReqVO, ModelMap model) throws Exception {
|
public String openExpExamplePop(@ModelAttribute("adjDeputyReqVO") AdjstDeputyReqVO adjDeputyReqVO, ModelMap model) throws Exception {
|
||||||
|
|
||||||
String returnUrl = "/web/kccadr/adjstExpDetail/";
|
String returnUrl = "/web/kccadr/adjstExpDetail/";
|
||||||
|
|
||||||
|
|||||||
@ -1278,7 +1278,7 @@ public class MainController {
|
|||||||
if(menuUrl.equals("/web/cop/org/selectOrgDetail.do")){
|
if(menuUrl.equals("/web/cop/org/selectOrgDetail.do")){
|
||||||
menuUrl = "/web/cop/org/selectOrgList.do" ;
|
menuUrl = "/web/cop/org/selectOrgList.do" ;
|
||||||
}else if(menuUrl.equals("/web/kccadr/accdnt/ars/adjstReqStatusDetail.do")
|
}else if(menuUrl.equals("/web/kccadr/accdnt/ars/adjstReqStatusDetail.do")
|
||||||
|| menuUrl.equals("/web/kccadr/adjstExpDetail/adjstReqStatusDetail.do")
|
// || menuUrl.equals("/web/kccadr/adjstExpDetail/adjstReqStatusDetail.do")
|
||||||
|| menuUrl.equals("/web/kccadr/accdnt/acd/adjstChangeDateList.do")
|
|| menuUrl.equals("/web/kccadr/accdnt/acd/adjstChangeDateList.do")
|
||||||
|| menuUrl.equals("/web/kccadr/accdnt/acd/adjstChangeDateCreate.do")
|
|| menuUrl.equals("/web/kccadr/accdnt/acd/adjstChangeDateCreate.do")
|
||||||
|| menuUrl.equals("/web/kccadr/accdnt/arc/corReqList.do")
|
|| menuUrl.equals("/web/kccadr/accdnt/arc/corReqList.do")
|
||||||
@ -1320,7 +1320,21 @@ public class MainController {
|
|||||||
|
|
||||||
}else if(menuUrl.equals("/web/kccadr/accdnt/ai/adjstIncidentDashList.do")) { //나의사건관리 대시보드
|
}else if(menuUrl.equals("/web/kccadr/accdnt/ai/adjstIncidentDashList.do")) { //나의사건관리 대시보드
|
||||||
menuUrl = "/web/kccadr/accdnt/ai/adjstIncidentList.do";
|
menuUrl = "/web/kccadr/accdnt/ai/adjstIncidentList.do";
|
||||||
}
|
}else if(menuUrl.equals("/web/kccadr/adjstExpDetail/adjstReqStatusDetail.do") // 체험하기
|
||||||
|
||menuUrl.equals("/web/kccadr/adjstExp/adjstIncidentList.do")
|
||||||
|
||menuUrl.equals("/web/kccadr/adjstExpDetail/adjstIncidentDetail.do")
|
||||||
|
||menuUrl.equals("/web/kccadr/adjstExp/adjstReqRegistInformation.do")
|
||||||
|
||menuUrl.equals("/web/kccadr/adjstExp/adjstReqRegistStep1.do")
|
||||||
|
||menuUrl.equals("/web/kccadr/adjstExp/adjstReqRegistStep2.do")
|
||||||
|
||menuUrl.equals("/web/kccadr/adjstExp/adjstReqRegistStep3.do")
|
||||||
|
||menuUrl.equals("/web/kccadr/adjstExp/SsoLoginUsr.do")
|
||||||
|
||menuUrl.equals("")
|
||||||
|
||menuUrl.equals("")
|
||||||
|
||menuUrl.equals("")
|
||||||
|
||menuUrl.equals("")
|
||||||
|
) { //체험하기
|
||||||
|
menuUrl = "/web/kccadr/adjstExp/adjstExpMainPage.do";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1343,7 +1357,7 @@ public class MainController {
|
|||||||
}
|
}
|
||||||
}else { //조직도 상세
|
}else { //조직도 상세
|
||||||
String menuUrl = request.getRequestURI() ;
|
String menuUrl = request.getRequestURI() ;
|
||||||
if(menuUrl.equals("/web/cop/org/selectOrgDetail.do")){
|
if(menuUrl.equals("/web/cop/org/selectOrgDetail.do")){
|
||||||
menuUrl = "/web/cop/org/selectOrgList.do" ;
|
menuUrl = "/web/cop/org/selectOrgList.do" ;
|
||||||
ComDefaultVO searchVO = new ComDefaultVO();
|
ComDefaultVO searchVO = new ComDefaultVO();
|
||||||
searchVO.setSearchKeyword(menuUrl);
|
searchVO.setSearchKeyword(menuUrl);
|
||||||
|
|||||||
@ -894,18 +894,19 @@
|
|||||||
|
|
||||||
<select id="AdjstReqDAO.selectAdjstReqOpenExamplePop" parameterClass="AdjstReqVO" resultClass="AdjstReqVO">
|
<select id="AdjstReqDAO.selectAdjstReqOpenExamplePop" parameterClass="AdjstReqVO" resultClass="AdjstReqVO">
|
||||||
SELECT
|
SELECT
|
||||||
T1.EXMP_TIT AS exmpTit
|
T1.EXMP_MGR_ID AS exmpMgrId
|
||||||
|
,T1.EXMP_TIT AS exmpTit
|
||||||
,T1.ATCH_FILE_ID AS atchFileId
|
,T1.ATCH_FILE_ID AS atchFileId
|
||||||
,T1.EXMP_CC_TY AS exmpCcTy
|
,T1.EXMP_CC_TY AS exmpCcTy
|
||||||
,T2.EXMP_CD AS exmpCd
|
,T1.EXMP_CD AS exmpCd
|
||||||
,T2.EXMP_CN AS exmpCn
|
,T1.EXMP_CN AS exmpCn
|
||||||
FROM
|
FROM
|
||||||
ADR_EXMP_MGR T1
|
ADR_EXMP_MGR T1
|
||||||
INNER JOIN ADR_EXMP_DTL T2
|
|
||||||
ON T1.EXMP_CC_TY = T2.EXMP_CC_TY
|
|
||||||
WHERE 1=1
|
WHERE 1=1
|
||||||
AND T1.EXMP_CC_TY = #ccTy#
|
<isEqual property="exmpCd" compareValue="02">
|
||||||
AND T2.EXMP_CD = #exmpCd#
|
AND T1.EXMP_CC_TY = #ccTy#
|
||||||
|
</isEqual>
|
||||||
|
AND T1.EXMP_CD = #exmpCd#
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
</sqlMap>
|
</sqlMap>
|
||||||
|
|||||||
@ -184,7 +184,8 @@ function snsShare(snsName) {
|
|||||||
<c:forEach var="menuLeftResultList" items="${menuLeftResultList}" varStatus="status">
|
<c:forEach var="menuLeftResultList" items="${menuLeftResultList}" varStatus="status">
|
||||||
<c:if test="${menuLeftResultList.depths eq '2' }">
|
<c:if test="${menuLeftResultList.depths eq '2' }">
|
||||||
<c:forEach var="resultCurrentList" items="${menuCurrentResultList}" varStatus="status">
|
<c:forEach var="resultCurrentList" items="${menuCurrentResultList}" varStatus="status">
|
||||||
<c:if test="${menuLeftResultList.menuNo eq resultCurrentList.menuNo }">
|
<c:if test="${menuLeftResultList.menuNo eq resultCurrentList.menuNo &&
|
||||||
|
'99921000' ne menuLeftResultList.menuNo}">
|
||||||
<button class="snb_tit" title="하위메뉴 열기"><c:out value='${menuLeftResultList.menuNm}' /></button>
|
<button class="snb_tit" title="하위메뉴 열기"><c:out value='${menuLeftResultList.menuNm}' /></button>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@ -190,11 +190,11 @@
|
|||||||
<th scope="row">
|
<th scope="row">
|
||||||
<p class="req_text"><span>필수입력 항목</span>*</p>
|
<p class="req_text"><span>필수입력 항목</span>*</p>
|
||||||
<p>답변내용</p>
|
<p>답변내용</p>
|
||||||
<button class="btnType01 btn_adr_search examBtn" data-tooltip="fee_info_popup" onclick="AdjstReq.openAnswerExamplePop('CC003'); return false;" title="예문 팝업 열림">예문</button>
|
<button class="btnType01 btn_adr_search examBtn" data-tooltip="fee_info_popup" onclick="AdjstReq.openExamplePop('04'); return false;" title="예문 팝업 열림">예문</button>
|
||||||
</th>
|
</th>
|
||||||
<td>
|
<td>
|
||||||
<label for="adrDocCn1" class="label">답변내용 입력</label>
|
<label for="adrDocCn1" class="label">답변내용 입력</label>
|
||||||
<textarea name="adrDocCn1" id="adrDocCn1" cols="30" rows="5" cssClass="purpose_text" cssStyle="resize: none;"><c:out value='${info.adrDocCn1}' /></textarea>
|
<textarea name="adrDocCn1" id="reqCn4" cols="30" rows="5" cssClass="purpose_text" cssStyle="resize: none;"><c:out value='${info.adrDocCn1}' /></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -148,8 +148,6 @@
|
|||||||
<col style="width: auto;">
|
<col style="width: auto;">
|
||||||
</colgroup>
|
</colgroup>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row" class="" colspan="2">
|
<th scope="row" class="" colspan="2">
|
||||||
<p>조정부</p>
|
<p>조정부</p>
|
||||||
@ -297,6 +295,35 @@
|
|||||||
</c:forEach>
|
</c:forEach>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="tb_list01">
|
||||||
|
<table>
|
||||||
|
<colgroup>
|
||||||
|
<col style="width: 300px;">
|
||||||
|
<col style="width: auto;">
|
||||||
|
<col style="width: 12%;">
|
||||||
|
</colgroup>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col">일자</th>
|
||||||
|
<th scope="col">내용</th>
|
||||||
|
<th scope="col">조정위원</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<%-- <c:if test="${empty list}"> --%>
|
||||||
|
<tr><td colspan="3">등록된 의견이 없습니다.</td></tr>
|
||||||
|
<%-- </c:if> --%>
|
||||||
|
<tr>
|
||||||
|
<td>의견</td>
|
||||||
|
<td><textarea name="cn"> </textarea></td>
|
||||||
|
<td>
|
||||||
|
<button type="button" class="btnType11 btn_list" onclick="fncGoDetail(); return false;">사건정보</button>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
<%--의견등록--%>
|
<%--의견등록--%>
|
||||||
<div id="commentArea" style="margin-bottom: 20px;"></div>
|
<div id="commentArea" style="margin-bottom: 20px;"></div>
|
||||||
|
|
||||||
|
|||||||
@ -16,28 +16,47 @@
|
|||||||
<script type="text/javaScript" language="javascript">
|
<script type="text/javaScript" language="javascript">
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
|
|
||||||
|
var exmpList = '';
|
||||||
|
|
||||||
// 레이어팝업 포커싱 이동 수정
|
// 레이어팝업 포커싱 이동 수정
|
||||||
var popupTit = $(".cont_tit03").text();
|
var popupTit = $(".cont_tit03").text();
|
||||||
|
|
||||||
if(popupTit.trim() == "* 신청취지"){
|
|
||||||
$(".tooltip-close").click(function(){
|
$(".tooltip-close").click(function(){
|
||||||
var activeTarget = $('[data-tooltip-con="fee_info_popup"]');
|
var activeTarget = $('[data-tooltip-con="fee_info_popup"]');
|
||||||
activeTarget.hide();
|
activeTarget.hide();
|
||||||
$('[data-tooltip="fee_info_popup"]').eq(0).focus();
|
$('[data-tooltip="fee_info_popup"]').eq(0).focus();
|
||||||
});
|
});
|
||||||
}else{
|
|
||||||
$(".tooltip-close").click(function(){
|
|
||||||
var activeTarget = $('[data-tooltip-con="fee_info_popup"]');
|
|
||||||
activeTarget.hide();
|
|
||||||
$('[data-tooltip="fee_info_popup"]').eq(1).focus();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
var data = new FormData(document.getElementById("selectForm"));
|
||||||
|
$.ajax({
|
||||||
|
type:"POST",
|
||||||
|
url: "/web/kccadr/adjst/popup/adjstReqOpenExampleAjax.do",
|
||||||
|
data: data,
|
||||||
|
dataType:'json',
|
||||||
|
async: false,
|
||||||
|
processData: false,
|
||||||
|
contentType: false,
|
||||||
|
cache: false,
|
||||||
|
success:function(returnData){
|
||||||
|
exmpList = returnData.dataList;
|
||||||
|
},
|
||||||
|
error:function(request , status, error){
|
||||||
|
console.log('request : ', request);
|
||||||
|
console.log('status : ', status);
|
||||||
|
console.log('error : ', error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 저작물 변경 event
|
* 저작물 변경 event
|
||||||
*/
|
*/
|
||||||
$('#exmpCcTy').on('change', function(){
|
$('#selectId').on('change', function(){
|
||||||
fn_selectCn();
|
var exmpCn = exmpList[$(this).val()].exmpCn;
|
||||||
|
$('#exmpCn').text(exmpCn);
|
||||||
});
|
});
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -50,48 +69,19 @@ $(document).ready(function(){
|
|||||||
$(perId).val($('#exmpCn').text().trim());
|
$(perId).val($('#exmpCn').text().trim());
|
||||||
});
|
});
|
||||||
|
|
||||||
/*
|
|
||||||
* 상세내용 select
|
|
||||||
*/
|
|
||||||
// function fn_selectCn(){
|
|
||||||
// $.ajax({
|
|
||||||
// type: "POST",
|
|
||||||
// url: "/web/kccadr/adjst/popup/adjstReqOpenExamplePopCn.do",
|
|
||||||
// data: JSON.stringify({exmpCd : $("#exmpCd").val()
|
|
||||||
// , exmpCcTy : $("#exmpCcTy").val() }),
|
|
||||||
// dataType:'json',
|
|
||||||
// async: false,
|
|
||||||
// processData: false,
|
|
||||||
// contentType: "application/json",
|
|
||||||
// cache: false,
|
|
||||||
// success: function (data) {
|
|
||||||
// if(data.status == "OK"){
|
|
||||||
// console.log('data : ', data);
|
|
||||||
// $('#exmpCn').text(data.data);
|
|
||||||
// }else{
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
// error: function (e) { alert("조회에 실패하였습니다."); console.log("ERROR : ", e); }
|
|
||||||
// });
|
|
||||||
|
|
||||||
// }
|
|
||||||
|
|
||||||
// fn_selectCn();
|
|
||||||
|
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="popup_wrap fee_info_popup" style="max-width: 580px;" tabindex="0" data-tooltip-con="fee_info_popup" data-focus="fee_info_popup" data-focus-prev="fee_info_popup_close">
|
<div class="popup_wrap fee_info_popup" style="max-width: 580px;" tabindex="0" data-tooltip-con="fee_info_popup" data-focus="fee_info_popup" data-focus-prev="fee_info_popup_close">
|
||||||
<input type="hidden" id="exmpCd" name="exmpCd" value="${exmpCd }"/>
|
|
||||||
<div class="popup_tit">
|
<div class="popup_tit">
|
||||||
<p>조정신청 예문</p> <button class="btn_popup_close tooltip-close" data-focus="fee_info_popup_close" title="팝업 닫기"><i></i></button>
|
<p>신청취지 예문</p> <button class="btn_popup_close tooltip-close" data-focus="fee_info_popup_close" title="팝업 닫기"><i></i></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="popup_cont">
|
<div class="popup_cont">
|
||||||
<c:if test="${not empty exmpCd}">
|
<c:if test="${not empty exmpCd}">
|
||||||
<div class="cont_tit03">
|
<div class="cont_tit03">
|
||||||
* <kc:code codeId="CC040" code="${exmpCd}"/>
|
* <kc:code codeId="CC040" code="${exmpList[0].exmpCd}"/>
|
||||||
</div>
|
</div>
|
||||||
</c:if>
|
</c:if>
|
||||||
<table class="popup_tbType01 t_center">
|
<table class="popup_tbType01 t_center">
|
||||||
@ -102,14 +92,13 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="line-height: 30px; text-align: left;">
|
<td style="line-height: 30px; text-align: left;">
|
||||||
<kc:code codeId="CC040" code="${exmpCd}"/>
|
<kc:code codeId="CC040" code="${exmpList[0].exmpCd}"/>
|
||||||
</td>
|
</td>
|
||||||
<td style="line-height: 30px; text-align: left;">
|
<td style="line-height: 30px; text-align: left;">
|
||||||
<%-- <kc:select codeId="CC002" name="exmpCcTy" id="exmpCcTy" selectedValue="${ccTy}"/> --%>
|
<select id="selectId" style="width: 135px;">
|
||||||
<select style="width: 135px;">
|
<c:forEach var="exmp" items="${exmpList }" varStatus="stat">
|
||||||
<option value="">사건 유형 1</option>
|
<option value="${stat.index }"> <c:out value="${exmp.exmpTit }" /> </option>
|
||||||
<option value="">사건 유형 2</option>
|
</c:forEach>
|
||||||
<option value="">사건 유형 3</option>
|
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -118,7 +107,7 @@ $(document).ready(function(){
|
|||||||
내용
|
내용
|
||||||
</td>
|
</td>
|
||||||
<td id="exmpCn" style="line-height: 30px; text-align: left;" >
|
<td id="exmpCn" style="line-height: 30px; text-align: left;" >
|
||||||
1)피신청인은 신청인에게 저작권 침해에 따른 손해배상 및 위자료로서 금삼백만원(W3,000,000)을 지급한다. 2)피신청인이 제작, 보유하고 있는 본 건 침해물 <월간 스키라이브>를 조정성립일로부터 14일 이내에 폐기처분한다. 라는 조정을 구합니다
|
<c:out value="${exmpList[0].exmpCn}" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
@ -129,5 +118,8 @@ $(document).ready(function(){
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<form id="selectForm" name="selectForm">
|
||||||
|
<input type="hidden" id="exmpCd" name="exmpCd" value="<c:out value="${exmpList[0].exmpCd}" />" />
|
||||||
|
</form>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -1224,8 +1224,14 @@ var AdjstReq = {
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
openExamplePop : function(exmpCd){
|
openExamplePop : function(exmpCd){
|
||||||
|
/*
|
||||||
|
- 01 : 신청취지
|
||||||
|
- 02 : 신청원인
|
||||||
|
- 04 : 답변서
|
||||||
|
- 05 : 사건진행도움말
|
||||||
|
*/
|
||||||
var uri = '';
|
var uri = '';
|
||||||
if(exmpCd == '01')
|
if(exmpCd == '01' || exmpCd == '04')
|
||||||
{
|
{
|
||||||
uri = "adjstReqOpenExamplePop.do";
|
uri = "adjstReqOpenExamplePop.do";
|
||||||
}
|
}
|
||||||
@ -1254,16 +1260,16 @@ var AdjstReq = {
|
|||||||
, "openExpExamplePop"
|
, "openExpExamplePop"
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
openAnswerExamplePop : function(codeId){
|
// openAnswerExamplePop : function(exmpCd){
|
||||||
commonPopLayeropen(
|
// commonPopLayeropen(
|
||||||
"/web/kccadr/adjst/popup/adjstReqOpenAnswerExamplePop.do"
|
// "/web/kccadr/adjst/popup/adjstReqOpenAnswerExamplePop.do"
|
||||||
, 1100
|
// , 1100
|
||||||
, 600
|
// , 600
|
||||||
, {codeId : codeId}
|
// , {exmpCd : exmpCd}
|
||||||
, "N"
|
// , "N"
|
||||||
, "openExamplePop"
|
// , "openExamplePop"
|
||||||
);
|
// );
|
||||||
},
|
// },
|
||||||
adjstReqDataChoice : function(adrSeq){
|
adjstReqDataChoice : function(adrSeq){
|
||||||
$("#copyAdrSeq").val(adrSeq);
|
$("#copyAdrSeq").val(adrSeq);
|
||||||
this.fncGoRefresh();
|
this.fncGoRefresh();
|
||||||
|
|||||||
@ -1025,6 +1025,7 @@ var AdjstReq = {
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
openExamplePop : function(expmCd){
|
openExamplePop : function(expmCd){
|
||||||
|
console.log(" + expmCd :: ", expmCd);
|
||||||
commonPopLayeropen(
|
commonPopLayeropen(
|
||||||
"/web/kccadr/adjst/popup/adjstReqOpenExamplePop.do"
|
"/web/kccadr/adjst/popup/adjstReqOpenExamplePop.do"
|
||||||
, 1100
|
, 1100
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user