diff --git a/BO/Views/croom/completions.cshtml b/BO/Views/croom/completions.cshtml index 1bdb4f1..f4c6d6d 100644 --- a/BO/Views/croom/completions.cshtml +++ b/BO/Views/croom/completions.cshtml @@ -112,6 +112,7 @@ 수정 + 등록/수정일자 사용자ID 이름 주민번호 @@ -126,29 +127,6 @@ 교육종료일 과정명 수료번호 - 교육상위분류 - 교육하위분류 - 업체명 - 업체주소 - 사업자등록번호 - 고용보험관리번호 - 업태 - 종목 - 대표자 - 교육이수시간 - 소속협회 - 학력 - 직위 - 업체담당자 - 업체담당자연락처 - 교육비 - 환급액 - 환급은행명 - 환급계좌 - 환급계좌예금주 - 계산서이메일 - 교육연도 - 교육장 @@ -156,6 +134,7 @@ { [수정] + @(item.udt == null ? "-" : item.udt.ToString("yyyy-MM-dd")) @item.userid @item.username @item.userpnostr @@ -170,29 +149,6 @@ @Convert.ToDateTime(@item.edate).ToShortDateString() @item.cname @item.completeno - @item.pcgname - @item.cgname - @item.asname - @item.companyaddr - @item.brno - @item.eino - @item.btype - @item.bkind - @item.ceoname - @item.studytime - @item.association - @item.slevelName - @item.uduty - @item.mname - @item.mphone - @item.payamt - @item.rbankamt - @item.rbank - @item.rbankaccnum - @item.rbankuser - @item.taxemail - @item.tyear - @item.studyplaceName } diff --git a/BO/Views/croom/documentspast.cshtml b/BO/Views/croom/documentspast.cshtml index f82577f..60fa34c 100644 --- a/BO/Views/croom/documentspast.cshtml +++ b/BO/Views/croom/documentspast.cshtml @@ -125,28 +125,6 @@ 교육종료일 과정명 수료번호 - 구분 - 과정분류 - 업체명 - 업체주소 - 사업자등록번호 - 고용보험관리번호 - 업태 - 종목 - 대표자 - 교육이수시간 - 소속협회 - 학력 - 직위 - 업체담당자 - 업체담당자연락처 - 교육비 - 환급액 - 환급은행명 - 환급계좌 - 환급계좌예금주 - 계산서이메일 - 교육연도 @@ -168,28 +146,6 @@ @Convert.ToDateTime(@item.sedate).ToShortDateString() @item.cgname @item.completeno - @item.kind - @item.cg - @item.companyname - @item.companyaddr - @item.brno - @item.eino - @item.btype - @item.bkind - @item.ceoname - @item.sctime - @item.assign - @item.slevel - @item.uduty - @item.mname - @item.mphone - @item.sprice - @item.rprice - @item.rbank - @item.rbankno - @item.rbankuser - @item.taxemail - @item.syear } diff --git a/Dao/MyBatis/Maps/CRoom.xml b/Dao/MyBatis/Maps/CRoom.xml index 9d0a60c..d4d2521 100644 --- a/Dao/MyBatis/Maps/CRoom.xml +++ b/Dao/MyBatis/Maps/CRoom.xml @@ -187,7 +187,7 @@ left outer join cminningscd scd on a.cmisno = scd.cmisno left outer join comcode com on scd.studyplace = com.ccode where a.lectno=#lectno# and a.userno=#userno# - and ifnull(c.istatus,0) < 2 and a2.sstime < now() and a2.setime > now() + and ifnull(c.istatus,0) < 2 and a.sdate < now() and a.edate > now() order by b.iseq limit $limit$ @@ -1519,7 +1519,7 @@ select a.* from ( select - l.lectno,l.iscomplete,l.completetime,l.completeno,l.sdate,l.edate,l.cdt,l.cno,l.udt,l.uno,l.uip + l.lectno,l.iscomplete,l.completetime,l.completeno,l.sdate,l.edate,l.cdt,l.cno,pp.udt,l.uno,l.uip ,cm.cgno,cm.studytime,cm.cshape,cm.cname,cm.studyplace ,t.tyear ,cg.cgname,cg.pcgno diff --git a/FO/Controllers/AccountController.cs b/FO/Controllers/AccountController.cs index 21e7040..e7393c3 100644 --- a/FO/Controllers/AccountController.cs +++ b/FO/Controllers/AccountController.cs @@ -1146,8 +1146,10 @@ namespace NP.FO.Controllers cshrcode =x.LGD_CASHRECEIPTKIND }; + int update = 0; if (Dao.Save("pay.paylect.vbankin", payvbankin) < 3) { + SetError(payvbankin.payno + " : " + update + "건 업데이트"); //상품구매완료 처리 (최소 3건 업데이트 (payvbankin, pay) return "FAIL"; } diff --git a/FO/Controllers/FOBaseController.cs b/FO/Controllers/FOBaseController.cs index 0eaf3e1..228c0a6 100644 --- a/FO/Controllers/FOBaseController.cs +++ b/FO/Controllers/FOBaseController.cs @@ -23,7 +23,7 @@ namespace NP.FO.Controllers protected override void OnActionExecuting(ActionExecutingContext filterContext) { - if (Request.AcceptTypes == null && !Request.Url.AbsolutePath.ToUpper().StartsWith("/OPEN/") && !Request.Url.AbsolutePath.ToUpper().StartsWith("/ACCOUNT/PAYVBANKMONEY")) + if (Request.AcceptTypes == null && !Request.Url.AbsolutePath.ToUpper().StartsWith("/OPEN/") && !Request.Url.AbsolutePath.ToUpper().StartsWith("/ACCOUNT/XPAYVBANKMONEY") && !Request.Url.AbsolutePath.ToUpper().StartsWith("/ACCOUNT/PAYVBANKMONEY")) { if ("Y".Equals(GetConfig("isdebug"))) { diff --git a/FO/Views/Account/IndexBase.cshtml b/FO/Views/Account/IndexBase.cshtml index 573f902..17f8025 100644 --- a/FO/Views/Account/IndexBase.cshtml +++ b/FO/Views/Account/IndexBase.cshtml @@ -23,7 +23,7 @@
diff --git a/FO/Views/Course/ApplyAgree.cshtml b/FO/Views/Course/ApplyAgree.cshtml index 6946c2a..be24646 100644 --- a/FO/Views/Course/ApplyAgree.cshtml +++ b/FO/Views/Course/ApplyAgree.cshtml @@ -123,7 +123,7 @@ 3. 총점 70점 이상 득점 : 시험평가(60점) + 과제(20점) + 진도율(20점) =100점

※ 위 3가지 조건 모두 만족하셔야 수료가 가능합니다.
- ※ 국토부 장관이 인정하는 사유로 집체교육을 실시 하지 못할 시 에는 동영상강의로 대체되며 7시간을 100% 이수하셔야 수료가 가능합니다.
+ @*※ 국토부 장관이 인정하는 사유로 집체교육을 실시 하지 못할 시 에는 동영상강의로 대체되며 7시간을 100% 이수하셔야 수료가 가능합니다.
*@

교육수강기한

diff --git a/FO/Views/Shared/Partial/GNB.cshtml b/FO/Views/Shared/Partial/GNB.cshtml index fff645e..ea20717 100644 --- a/FO/Views/Shared/Partial/GNB.cshtml +++ b/FO/Views/Shared/Partial/GNB.cshtml @@ -11,7 +11,7 @@ else {
  • 로그인
  • - @*
  • 회원가입
  • *@ +
  • 회원가입
  • }
  • 원격지원