2022-11-25 17:37 조정위원 워크플로우 추가
This commit is contained in:
parent
27b58893f3
commit
3e653148a1
@ -360,6 +360,33 @@ public class AdjstReqStatusController {
|
||||
return "/web/kccadr/accdnt/ars/tab/adjstReqStatusTabDetail";
|
||||
}
|
||||
|
||||
/**
|
||||
* 조정진행 상세 Tab 조정상세 화면
|
||||
*/
|
||||
@RequestMapping("/web/kccadr/accdnt/ars/tab/adjstReqStatusTabDetail_in_workflow.do")
|
||||
public String adjstReqStatusTabDetail_in_workflow(
|
||||
@ModelAttribute("adjstReqStatusVO") AdjstReqStatusVO adjstReqStatusVO
|
||||
, @ModelAttribute("adjstIncidentVO") AdjstIncidentVO adjstIncidentVO
|
||||
, ModelMap model) throws Exception {
|
||||
|
||||
|
||||
System.out.println("========start");
|
||||
//model.addAttribute("master" , adjstIncidentService.selectAdjstIncidentMaster(adjstIncidentVO));
|
||||
model.addAttribute("info" , adjstIncidentService.selectAdjstIncidentMaster(adjstIncidentVO));
|
||||
|
||||
|
||||
//이력값 - 시작
|
||||
AdrHstryMgrVO adrHstryMgrVO = new AdrHstryMgrVO();
|
||||
adrHstryMgrVO.setAdrSeq(adjstReqStatusVO.getAdrSeq());
|
||||
|
||||
model.addAttribute("list_mgr" , adrHstryMgrService.selectList(adrHstryMgrVO));
|
||||
//이력값 - 끝
|
||||
|
||||
System.out.println("========start=end");
|
||||
|
||||
return "/web/kccadr/accdnt/ars/tab/adjstReqStatusTabDetail_in_workflow";
|
||||
}
|
||||
|
||||
/**
|
||||
* 조정종결 상세 Tab 조정일반 화면
|
||||
*/
|
||||
|
||||
@ -532,6 +532,41 @@ public class ApmController {
|
||||
return "/kccadr/adjPgrMgr/apm/apmTab0";
|
||||
}
|
||||
|
||||
/**
|
||||
* 조정진행정보 상세-조정사건일반
|
||||
*
|
||||
* @param dlvinfoVO
|
||||
* @param model
|
||||
* @return
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value = "apmTab0_in_workflow.do")
|
||||
public String apmTab0_in_workflow(
|
||||
@ModelAttribute("info") PgrCmmVO cmmVO
|
||||
, ModelMap model) throws Exception {
|
||||
|
||||
try {
|
||||
System.out.println("apmTab0_in_workflow1");
|
||||
|
||||
// 조정사건일반
|
||||
PgrCmmVO info = cmmService.selectPgrCmm(cmmVO);
|
||||
model.addAttribute("info", info);
|
||||
System.out.println("apmTab0_in_workflow2");
|
||||
//이력값 - 시작
|
||||
AdrHstryMgrVO adrHstryMgrVO = new AdrHstryMgrVO();
|
||||
adrHstryMgrVO.setAdrSeq(cmmVO.getAdrSeq());
|
||||
|
||||
model.addAttribute("list_mgr" , adrHstryMgrService.selectList(adrHstryMgrVO));
|
||||
//이력값 - 끝
|
||||
|
||||
}catch(Exception ex) {
|
||||
ex.printStackTrace();
|
||||
}
|
||||
|
||||
|
||||
return "/kccadr/adjPgrMgr/apm/apmTab0_in_workflow";
|
||||
}
|
||||
|
||||
/**
|
||||
* 취하신청 승인/반려 상태 변경
|
||||
*
|
||||
|
||||
@ -11,7 +11,6 @@ import java.util.Map;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.ws.rs.core.Response.Status;
|
||||
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
@ -25,8 +24,6 @@ import org.springframework.web.bind.annotation.ModelAttribute;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
import org.springframework.web.multipart.MultipartHttpServletRequest;
|
||||
import org.springframework.web.servlet.ModelAndView;
|
||||
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
|
||||
@ -54,6 +51,8 @@ import kcc.kccadr.adjPgrMgr.exmp.cmm.ExmpManageVO;
|
||||
import kcc.kccadr.adjcclt.service.AdjstConciliatorService;
|
||||
import kcc.kccadr.adjcclt.service.AdjstConciliatorVO;
|
||||
import kcc.kccadr.adjreqmgr.service.AdjReqMgrVO;
|
||||
import kcc.kccadr.advc.service.AdrHstryMgrService;
|
||||
import kcc.kccadr.advc.service.AdrHstryMgrVO;
|
||||
import kcc.kccadr.cmm.CmmUtil;
|
||||
import kcc.kccadr.cmm.KccadrConstants;
|
||||
import kcc.kccadr.cmm.RestResponse;
|
||||
@ -124,6 +123,9 @@ public class AdjstConciliatorController {
|
||||
@Resource(name = "ExmpAppManageService")
|
||||
private ExmpAppManageService exmpAppManageService;
|
||||
|
||||
@Resource(name="adrHstryMgrService")
|
||||
private AdrHstryMgrService adrHstryMgrService;
|
||||
|
||||
/**
|
||||
* 조정위원 대시보드 화면
|
||||
*/
|
||||
@ -840,6 +842,15 @@ public class AdjstConciliatorController {
|
||||
decryptInfomation(fixedDateList, null);
|
||||
model.addAttribute("fixedDateList", fixedDateList);
|
||||
|
||||
|
||||
//이력값 - 시작
|
||||
AdrHstryMgrVO adrHstryMgrVO = new AdrHstryMgrVO();
|
||||
adrHstryMgrVO.setAdrSeq(adjstConciliatorVO.getAdrSeq());
|
||||
|
||||
model.addAttribute("list_mgr" , adrHstryMgrService.selectList(adrHstryMgrVO));
|
||||
//이력값 - 끝
|
||||
|
||||
|
||||
return "/web/kccadr/adjcclt/adjstConciliatorApmDetail";
|
||||
}
|
||||
|
||||
|
||||
@ -620,24 +620,7 @@ $(document).ready(function(){
|
||||
<c:if test="${info.statCd eq '400000'
|
||||
or fn:indexOf(info.statCd,'3090')>-1
|
||||
}">
|
||||
|
||||
<!-- 조정성립 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3040')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3040").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 직권조정 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3060')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3060").addClass("status01");
|
||||
$("#3061").removeClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
|
||||
<!-- 조정권고안 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3030')>-1}">
|
||||
<script>
|
||||
@ -646,6 +629,31 @@ $(document).ready(function(){
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 조정성립 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3040')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3040").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 취하종결 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3050')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3050").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 직권조정 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3060')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3060").addClass("status01");
|
||||
$("#3061").removeClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 불성립 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3070')>-1}">
|
||||
<script>
|
||||
@ -656,11 +664,56 @@ $(document).ready(function(){
|
||||
|
||||
</c:if>
|
||||
|
||||
|
||||
|
||||
<!-- 조정권고안 체크-->
|
||||
<c:if test="${info.statCd eq '400000'}">
|
||||
|
||||
<!-- 조정권고안 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3030')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3030").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 조정성립 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3040')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3040").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 취하종결 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3050')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3050").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 직권조정 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3060')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3060").addClass("status02");
|
||||
$("#3061").removeClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 불성립 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3070')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3070").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
</c:if>
|
||||
<!-- 워크플로우용 스크립트 끝 -->
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<body>/${passMenuId }/
|
||||
<form id="pop" name="pop" method="post">
|
||||
<input type="hidden" id="adrSeq" name="adrSeq" value="<c:out value="${info.adrSeq}" />" />
|
||||
<input type="hidden" id="adrSn" name="adrSn" value="<c:out value="${info.adrSn}" />" />
|
||||
|
||||
@ -0,0 +1,248 @@
|
||||
<%@ 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="spring" uri="http://www.springframework.org/tags"%>
|
||||
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
|
||||
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
|
||||
<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||
<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %>
|
||||
<un:useConstants var="KccadrConstants" className="kcc.kccadr.cmm.KccadrConstants" />
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<title>조정진행 상세</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<script src="/kccadrPb/usr/script/popup.js"></script>
|
||||
|
||||
<!-- 워크플로우용 스크립트 시작 -->
|
||||
<!-- A320 취하신청 -->
|
||||
<c:forEach var="list" items="${list_mgr}" varStatus="status">
|
||||
<c:if test="${fn:length(list.menuId) eq '6'
|
||||
or list.menuId eq 'A260'
|
||||
or list.menuId eq 'A320'
|
||||
or list.menuId eq 'C150'
|
||||
or list.menuId eq 'C290'
|
||||
}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 체크 -->
|
||||
$("#${list.menuId}").addClass("status01");
|
||||
</script>
|
||||
<c:set var="lastMenuId">${list.menuId}</c:set>
|
||||
|
||||
</c:if>
|
||||
</c:forEach>
|
||||
|
||||
<!-- 최종값 찾기 -->
|
||||
<c:forEach var="list" items="${list_mgr}" varStatus="status">
|
||||
<c:if test="${fn:length(list.menuId) eq '6'}">
|
||||
<!-- 사건접수진행시 체크-->
|
||||
<c:if test="${list.menuId ne '400000'
|
||||
and fn:indexOf(list.menuId,'3090')<0}">
|
||||
<c:set var="passMenuId">${list.menuId}</c:set>
|
||||
</c:if>
|
||||
|
||||
<c:if test="${list.menuId eq '400000'}">
|
||||
<c:set var="lastMenuId">400000</c:set>
|
||||
</c:if>
|
||||
|
||||
</c:if>
|
||||
</c:forEach>
|
||||
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#${lastMenuId}").addClass("status02");
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
<!-- 신청서 보완 체크시-->
|
||||
<c:if test="${info.statCd lt '101050' and info.statCd ne '101010'}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#101011").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
|
||||
<!-- 사건접수진행시 체크-->
|
||||
<c:if test="${info.statCd eq '201010'
|
||||
or info.statCd eq '201050'}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#101050").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
|
||||
<!-- 조정부배당진행시 체크-->
|
||||
<c:if test="${info.statCd eq '202010'}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#202050").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
|
||||
<!-- 기일진행시 체크-->
|
||||
<c:if test="${info.statCd eq '205010'}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#205050").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
|
||||
<!-- 취하신청 체크-->
|
||||
<c:if test="${info.statCd eq 'C290' or info.statCd eq 'A320'}">
|
||||
<script>
|
||||
<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#C290").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 취하종결 체크-->
|
||||
<c:if test="${fn:indexOf(info.statCd,'3050')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3050").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
|
||||
<!-- 조정성립 체크-->
|
||||
<c:if test="${fn:indexOf(info.statCd,'3040')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3040").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 직권조정 체크-->
|
||||
<c:if test="${fn:indexOf(info.statCd,'3060')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3060").addClass("status01");
|
||||
$("#3061").removeClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 조정권고안 체크-->
|
||||
<c:if test="${fn:indexOf(info.statCd,'3030')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3030").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 불성립 체크-->
|
||||
<c:if test="${fn:indexOf(info.statCd,'3070')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3070").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 조정권고안 체크-->
|
||||
<c:if test="${info.statCd eq '400000'
|
||||
or fn:indexOf(info.statCd,'3090')>-1
|
||||
}">
|
||||
|
||||
<!-- 조정권고안 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3030')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3030").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 조정성립 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3040')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3040").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 취하종결 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3050')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3050").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 직권조정 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3060')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3060").addClass("status01");
|
||||
$("#3061").removeClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 불성립 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3070')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3070").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
</c:if>
|
||||
|
||||
|
||||
<!-- 조정권고안 체크-->
|
||||
<c:if test="${info.statCd eq '400000'}">
|
||||
|
||||
<!-- 조정권고안 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3030')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3030").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 조정성립 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3040')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3040").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 취하종결 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3050')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3050").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 직권조정 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3060')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3060").addClass("status02");
|
||||
$("#3061").removeClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 불성립 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3070')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3070").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
</c:if>
|
||||
<!-- 워크플로우용 스크립트 끝 -->
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<jsp:include page="/WEB-INF/jsp/web/kccadr/kccadrCom/workFlowJsp.jsp"></jsp:include>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -0,0 +1,245 @@
|
||||
<%@ 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="spring" uri="http://www.springframework.org/tags"%>
|
||||
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
|
||||
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
|
||||
<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<title>조정진행</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<script src="/kccadrPb/usr/script/content.js"></script>
|
||||
|
||||
<!-- 워크플로우용 스크립트 시작 -->
|
||||
<!-- A320 취하신청 -->
|
||||
<c:forEach var="list" items="${list_mgr}" varStatus="status">
|
||||
<c:if test="${fn:length(list.menuId) eq '6'
|
||||
or list.menuId eq 'A260'
|
||||
or list.menuId eq 'A320'
|
||||
or list.menuId eq 'C150'
|
||||
or list.menuId eq 'C290'
|
||||
}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 체크 -->
|
||||
$("#${list.menuId}").addClass("status01");
|
||||
</script>
|
||||
<c:set var="lastMenuId">${list.menuId}</c:set>
|
||||
|
||||
</c:if>
|
||||
</c:forEach>
|
||||
|
||||
<!-- 최종값 찾기 -->
|
||||
<c:forEach var="list" items="${list_mgr}" varStatus="status">
|
||||
<c:if test="${fn:length(list.menuId) eq '6'}">
|
||||
<!-- 사건접수진행시 체크-->
|
||||
<c:if test="${list.menuId ne '400000'
|
||||
and fn:indexOf(list.menuId,'3090')<0}">
|
||||
<c:set var="passMenuId">${list.menuId}</c:set>
|
||||
</c:if>
|
||||
|
||||
<c:if test="${list.menuId eq '400000'}">
|
||||
<c:set var="lastMenuId">400000</c:set>
|
||||
</c:if>
|
||||
|
||||
</c:if>
|
||||
</c:forEach>
|
||||
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#${lastMenuId}").addClass("status02");
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
<!-- 신청서 보완 체크시-->
|
||||
<c:if test="${info.statCd lt '101050' and info.statCd ne '101010'}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#101011").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
|
||||
<!-- 사건접수진행시 체크-->
|
||||
<c:if test="${info.statCd eq '201010'
|
||||
or info.statCd eq '201050'}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#101050").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
|
||||
<!-- 조정부배당진행시 체크-->
|
||||
<c:if test="${info.statCd eq '202010'}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#202050").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
|
||||
<!-- 기일진행시 체크-->
|
||||
<c:if test="${info.statCd eq '205010'}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#205050").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
|
||||
<!-- 취하신청 체크-->
|
||||
<c:if test="${info.statCd eq 'C290' or info.statCd eq 'A320'}">
|
||||
<script>
|
||||
<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#C290").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 취하종결 체크-->
|
||||
<c:if test="${fn:indexOf(info.statCd,'3050')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3050").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
|
||||
<!-- 조정성립 체크-->
|
||||
<c:if test="${fn:indexOf(info.statCd,'3040')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3040").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 직권조정 체크-->
|
||||
<c:if test="${fn:indexOf(info.statCd,'3060')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3060").addClass("status01");
|
||||
$("#3061").removeClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 조정권고안 체크-->
|
||||
<c:if test="${fn:indexOf(info.statCd,'3030')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3030").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 불성립 체크-->
|
||||
<c:if test="${fn:indexOf(info.statCd,'3070')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3070").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 조정권고안 체크-->
|
||||
<c:if test="${info.statCd eq '400000'
|
||||
or fn:indexOf(info.statCd,'3090')>-1
|
||||
}">
|
||||
|
||||
<!-- 조정권고안 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3030')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3030").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 조정성립 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3040')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3040").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 취하종결 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3050')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3050").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 직권조정 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3060')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3060").addClass("status01");
|
||||
$("#3061").removeClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 불성립 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3070')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3070").addClass("status01");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
</c:if>
|
||||
|
||||
|
||||
<!-- 조정권고안 체크-->
|
||||
<c:if test="${info.statCd eq '400000'}">
|
||||
|
||||
<!-- 조정권고안 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3030')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3030").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 조정성립 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3040')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3040").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 취하종결 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3050')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3050").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 직권조정 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3060')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3060").addClass("status02");
|
||||
$("#3061").removeClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
<!-- 불성립 체크-->
|
||||
<c:if test="${fn:indexOf(passMenuId,'3070')>-1}">
|
||||
<script>
|
||||
//<!-- 조정진행워크플로우 현재 상태 체크 -->
|
||||
$("#3070").addClass("status02");
|
||||
</script>
|
||||
</c:if>
|
||||
|
||||
</c:if>
|
||||
<!-- 워크플로우용 스크립트 끝 -->
|
||||
</head>
|
||||
<body>
|
||||
<br/><br/>
|
||||
<jsp:include page="/WEB-INF/jsp/web/kccadr/kccadrCom/workFlowJsp.jsp"></jsp:include>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -17,6 +17,8 @@
|
||||
<script type="text/javaScript" language="javascript">
|
||||
$( document ).ready(function(){
|
||||
tabPageLoad(0);
|
||||
|
||||
tabPageLoad_workflow(0);
|
||||
});
|
||||
|
||||
function tabPageLoad(idx){
|
||||
@ -28,6 +30,9 @@ function tabPageLoad(idx){
|
||||
console.log(status);
|
||||
|
||||
$('#tabContent div.btn_layout03').hide();
|
||||
|
||||
//tabPageLoad_workflow(0);
|
||||
|
||||
});
|
||||
|
||||
|
||||
@ -38,6 +43,42 @@ function getPageUrl(idx){
|
||||
default: return '/web/kccadr/adjcclt/tab/adjstConciliatorTabInfo.do';
|
||||
}
|
||||
}
|
||||
|
||||
function tabPageLoad_workflow(idx) {
|
||||
var url = getPageUrl_workflow(idx);
|
||||
|
||||
$('#tabContent_workflow').load(url, {
|
||||
"adrSeq" : $("#adrSeq").val(),
|
||||
"adrSn" : $("#adrSn").val()
|
||||
/*,
|
||||
"reqOlCd" : $("#reqOlCd").val()
|
||||
*/
|
||||
}, function(res, status, xhr) {
|
||||
console.log(status);
|
||||
//$('.tab_cont .tbType02').find('button').remove('button');
|
||||
//$('.tab_cont .btn_wrap .area_left').find('button').remove('button');
|
||||
//$('.tab_cont .btn_layout05').find('button').remove('button');
|
||||
//$('.tab_cont .tb_tit').find('button').remove('button');
|
||||
//btn_wrap btn_layout05
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
function getPageUrl_workflow(idx) {
|
||||
console.log('idx : ', idx);
|
||||
switch (idx) {
|
||||
|
||||
default: return '/web/kccadr/accdnt/ars/tab/adjstReqStatusTabDetail_in_workflow.do';
|
||||
/*
|
||||
case 0:
|
||||
return '/kccadr/adjPgrMgr/apm/apmTab0_in_workflow.do';
|
||||
case 1:
|
||||
return '/kccadr/adjPgrMgr/apm/apmTab1.do';
|
||||
case 2:
|
||||
return '/kccadr/adjPgrMgr/apm/apmTab2.do';
|
||||
*/
|
||||
}
|
||||
}
|
||||
function fncGoList(){
|
||||
var listForm = document.listForm ;
|
||||
listForm.action = "<c:url value='/web/kccadr/adjcclt/ai/adjstConciliatorApmList.do'/>";
|
||||
@ -236,7 +277,7 @@ function getPageUrl(idx){
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
////////////////////////////////////////
|
||||
<form:form id="listForm" name="listForm" commandName="adjstConciliatorVO" onsubmit="return false;" method="post">
|
||||
<input type="hidden" name="pageIndex" value="<c:out value='${adjstConciliatorVO.pageIndex}' default='1' />"/>
|
||||
<input type="hidden" name="searchSortCnd" value="<c:out value="${adjstConciliatorVO.searchSortCnd}" />" />
|
||||
@ -358,7 +399,11 @@ function getPageUrl(idx){
|
||||
</div>
|
||||
</div>
|
||||
<!-- //하단 버튼 -->
|
||||
|
||||
|
||||
<div id="tabContent_workflow" class="tab_cont on">
|
||||
|
||||
</div>
|
||||
|
||||
<div id="tabContent" class="tab_cont on">
|
||||
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user