Merge branch 'advc' of http://yickso@vcs.iten.co.kr:9999/hylee/offedu into advc
This commit is contained in:
commit
a8a6587a2f
@ -486,15 +486,26 @@ public class FndtnEnhanceTrnController {
|
||||
LoginVO loginVO = checkLoginUtil.getAuthLoginVO(); //권한에 따른 로그인 정보 가져오기
|
||||
SsoLoginVO ssoLoginVO = checkLoginUtil.getSSOLoginVO(request); //SSO 로그인 정보 가져오기
|
||||
|
||||
/*
|
||||
if (loginVO == null || ssoLoginVO == null) {
|
||||
//이전 url 처리(beforeSiteUrl)_이준호_220228추가
|
||||
return checkLoginUtil.getUserLoginPage(model, request); //로그인 정보가 없으면 로그인 페이지로 이동한다.
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
//1.pageing step1
|
||||
//과정 조회
|
||||
VEPrcsDetailVO vEPrcsDetailVODetail = vEPrcsAplctPrdService.selectDetailNewOne4Fndth(vEPrcsDetailVO);
|
||||
VEEduAplctVO vEEduAplctReqVO = new VEEduAplctVO();
|
||||
vEEduAplctReqVO.setUserId(loginVO.getUniqId());
|
||||
|
||||
try {
|
||||
vEEduAplctReqVO.setUserId(loginVO.getUniqId());
|
||||
model.addAttribute("userSe", "Y");
|
||||
}catch(Exception ex) {
|
||||
model.addAttribute("userSe", "N");
|
||||
ex.printStackTrace();
|
||||
}
|
||||
|
||||
vEEduAplctReqVO.setLctrDivCd(vEPrcsDetailVODetail.getLctrDivCd());
|
||||
vEEduAplctReqVO.setPrcsAplctPrdOrd(vEPrcsDetailVODetail.getPrcsAplctPrdOrd());
|
||||
vEEduAplctReqVO.setLctrDivCd(VeConstants.LCTR_DIV_CD_50);
|
||||
|
||||
@ -579,7 +579,7 @@
|
||||
a.title AS title ,
|
||||
(SELECT user_nm
|
||||
FROM comvnusermaster
|
||||
WHERE esntl_id = a.frst_register_id
|
||||
WHERE esntl_id = a.frst_register_id LIMIT 1
|
||||
)
|
||||
AS frstRegisterNm ,
|
||||
(SELECT orignl_file_nm
|
||||
|
||||
@ -174,6 +174,11 @@
|
||||
var data ={
|
||||
"prcsAplctPrdOrd": prcsAplctPrdOrd
|
||||
}
|
||||
|
||||
if ('${userSe}'=='N'){
|
||||
alert("로그인 후 신청가능합니다.");
|
||||
return;
|
||||
}
|
||||
|
||||
commonPopLayeropen(
|
||||
"${pageContext.request.contextPath}/web/ve/aplct/fndtnEnhanceTrn/eduAplctPop.do"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user