diff --git a/src/main/java/kcc/let/main/web/EgovMainController.java b/src/main/java/kcc/let/main/web/EgovMainController.java index 628e3c70..7191366c 100644 --- a/src/main/java/kcc/let/main/web/EgovMainController.java +++ b/src/main/java/kcc/let/main/web/EgovMainController.java @@ -213,158 +213,6 @@ public class EgovMainController { return "forward:/uat/uia/actionMain.do"; } } - -// PaginationInfo paginationInfo = new PaginationInfo(); -// {//일일관리자 접속 리스트 -// LoginLog loginLog = new LoginLog(); -// paginationInfo.setCurrentPageNo(loginLog.getPageIndex()); -// paginationInfo.setRecordCountPerPage(loginLog.getPageUnit()); -// paginationInfo.setPageSize(loginLog.getPageSize()); -// -// loginLog.setFirstIndex(paginationInfo.getFirstRecordIndex()); -// loginLog.setLastIndex(paginationInfo.getLastRecordIndex()); -// loginLog.setRecordCountPerPage(10); //50개까지 보여주기 -// //if(null != loginVO){ loginLog.setSiteId(loginVO.getSiteId()); } -// List adminLogList = loginLogService.selectMainAmdinLog(loginLog); -// int adminLogListCnt = loginLogService.selectMainAmdinLogTotCnt(loginLog); -// paginationInfo.setTotalRecordCount(adminLogListCnt); -// model.addAttribute("paginationInfo", paginationInfo); -// model.addAttribute("adminLogList", adminLogList); -// } -// {// 최근 게시물 / 새개시물 카운트 -// //0번째 부터 6개의 항목만 조회 -// boardVO.setFirstIndex(0); -// boardVO.setRecordCountPerPage(5); -// // 최신날짜 우선순위 조회 -// boardVO.setSearchSortCnd("frstRegisterPnttm"); -// boardVO.setSearchSortOrd("desc"); -// List adminBoardList = bbsMngService.selectAdminMainBoard(boardVO); -// model.addAttribute("adminBoardList", adminBoardList); -// -// int adminMainNewBoardCnt = bbsMngService.selectAdminMainNewBoardCnt(boardVO); -// model.addAttribute("adminMainNewBoardCnt", adminMainNewBoardCnt); -// -// } -// {// 관리자 로그관리 리스트 -// LoginLog loginLog = new LoginLog(); -// //0번째 부터 6개의 항목만 조회 -// loginLog.setFirstIndex(0); -// loginLog.setRecordCountPerPage(6); -// // 최신날짜 우선순위 조회 -// loginLog.setSearchSortCnd("creatDt"); -// loginLog.setSearchSortOrd("desc"); -// List adminLogList = loginLogService.selectAmdinLog(loginLog); -// model.addAttribute("adminLogList", adminLogList); -// -// } -// {//신규가입회원 목록 -// UserDefaultVO userSearchVO = new UserDefaultVO(); -// -// //0번째 부터 4개의 항목만 조회 -// userSearchVO.setFirstIndex(0); -// userSearchVO.setRecordCountPerPage(4); -// -// // 가입일시 우선순위 조회 -// userSearchVO.setSearchSortCnd("sbscrbDe"); -// userSearchVO.setSearchSortOrd("desc"); -// -// userSearchVO.setAdminYn("N"); -// List userList = userManageService.selectUserList(userSearchVO); -// model.addAttribute("userList", userList); -// -// UserDefaultVO userCount = userManageService.selectUserCount(); -// model.addAttribute("userCount", userCount); -// } -// -// {//접속통계 사용자만 -// StatsVO statsVO = new StatsVO(); -// statsVO.setRecordCountPerPage(20); //일카운터(20개) -// statsVO.setFirstIndex(0); -// List statsDayList = conectStatsService.selectMainStatsDay(statsVO); //일일접속카운터(관리자) -// List statsMonthList = conectStatsService.selectMainStatsMonth(statsVO); //월별접속카운터(관리자) -// List statsYearList = conectStatsService.selectMainStatsYear(statsVO); //연도변접속카운터(관리자) -// {//일일통계 /* 연도없애기 */ -// JSONObject statsObject = new JSONObject(); -// JSONArray cntArray = new JSONArray(); -// JSONArray dateArray = new JSONArray(); -// for(StatsVO tempStatsVO : statsDayList){ -// cntArray.add(tempStatsVO.getCnt()); -// dateArray.add(tempStatsVO.getStatsDate().substring(5,tempStatsVO.getStatsDate().length())); -// } -// statsObject.put("cnt" , cntArray); -// statsObject.put("date" , dateArray); -// model.addAttribute("statsDayList", statsObject); -// } -// {//월통계 -// JSONObject statsObject = new JSONObject(); -// JSONArray cntArray = new JSONArray(); -// JSONArray dateArray = new JSONArray(); -// for(StatsVO tempStatsVO : statsMonthList){ -// cntArray.add(tempStatsVO.getCnt()); -// dateArray.add(tempStatsVO.getStatsDate()); -// } -// statsObject.put("cnt" , cntArray); -// statsObject.put("date" , dateArray); -// model.addAttribute("statsMonthList", statsObject); -// } -// {//년통계 -// JSONObject statsObject = new JSONObject(); -// JSONArray cntArray = new JSONArray(); -// JSONArray dateArray = new JSONArray(); -// cntArray.add(0); //데이터가 2018 한건만 조회 되어서 2017년도 0 넣어줌 -// dateArray.add("2017"); -// for(StatsVO tempStatsVO : statsYearList){ -// cntArray.add(tempStatsVO.getCnt()); -// dateArray.add(tempStatsVO.getStatsDate()); -// } -// statsObject.put("cnt" , cntArray); -// statsObject.put("date" , dateArray); -// model.addAttribute("statsYearList", statsObject); -// } -// -// //PC, 모바일 접속통계(주간) -// statsVO.setRecordCountPerPage(7); //일카운터(7일 : 일주일) -// statsVO.setFirstIndex(0); -// List statsPcDayList = conectStatsService.selectPcMainStatsDay(statsVO); //일일접속카운터(사용자) -// List statsMobileDayList = conectStatsService.selectMobileMainStatsDay(statsVO); //일일접속카운터(사용자) -// List statsAllDayList = conectStatsService.selectPcMobileMainStatsDay(statsVO); //모바일+PC(사용자) -// {//PC -// JSONObject statsObject = new JSONObject(); -// JSONArray cntArray = new JSONArray(); -// JSONArray dateArray = new JSONArray(); -// for(StatsVO tempStatsVO : statsPcDayList){ -// cntArray.add(tempStatsVO.getCnt()); -// dateArray.add(tempStatsVO.getStatsDate().substring(5,tempStatsVO.getStatsDate().length()) ); -// } -// statsObject.put("cnt" , cntArray); -// statsObject.put("date" , dateArray); -// model.addAttribute("statsPcDayList", statsObject); -// } -// {//모바일 -// JSONObject statsObject = new JSONObject(); -// JSONArray cntArray = new JSONArray(); -// JSONArray dateArray = new JSONArray(); -// for(StatsVO tempStatsVO : statsMobileDayList){ -// cntArray.add(tempStatsVO.getCnt()); -// dateArray.add(tempStatsVO.getStatsDate().substring(5,tempStatsVO.getStatsDate().length()) ); -// } -// statsObject.put("cnt" , cntArray); -// statsObject.put("date" , dateArray); -// model.addAttribute("statsMobileDayList", statsObject); -// } -// {//전체 -// JSONObject statsObject = new JSONObject(); -// JSONArray cntArray = new JSONArray(); -// JSONArray dateArray = new JSONArray(); -// for(StatsVO tempStatsVO : statsAllDayList){ -// cntArray.add(tempStatsVO.getCnt()); -// dateArray.add(tempStatsVO.getStatsDate().substring(5,tempStatsVO.getStatsDate().length()) ); -// } -// statsObject.put("cnt" , cntArray); -// statsObject.put("date" , dateArray); -// model.addAttribute("statsPcMobileDayList", statsObject); -// } -// } //조정 목록, 이번달 현황 조회(최근 접수, 진행 사건, 처리현황) PgrCmmVO cmmVO = new PgrCmmVO(); @@ -403,18 +251,10 @@ public class EgovMainController { model.addAttribute("progressCnt", cmmService.selectPgrCmmListMainCnt(cmmVO)); //처리현황(종결) - status : C - cmmVO.setSearchStatus("C"); - model.addAttribute("closeList", cmmService.selectPgrCmmListMain(cmmVO)); - model.addAttribute("closeCnt", cmmService.selectPgrCmmListMainCnt(cmmVO)); +// cmmVO.setSearchStatus("C"); +// model.addAttribute("closeList", cmmService.selectPgrCmmListMain(cmmVO)); +// model.addAttribute("closeCnt", cmmService.selectPgrCmmListMainCnt(cmmVO)); - - //CPU정보등 조회 - /*showOSBean(); - showThreadBean(); - showClassLoading(); - showMemory(); - showDisk(); - showCPU();*/ return "main/EgovMainView"; } diff --git a/src/main/webapp/WEB-INF/jsp/kccadr/textSense/pop/EgovTextSenseDetailPop.jsp b/src/main/webapp/WEB-INF/jsp/kccadr/textSense/pop/EgovTextSenseDetailPop.jsp new file mode 100644 index 00000000..faf87b44 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/kccadr/textSense/pop/EgovTextSenseDetailPop.jsp @@ -0,0 +1,80 @@ + +<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> +<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%> +<%@ 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"%> + + +OCR 편집 + + + + +
+ + + + + +
+
+

OCR 처리 결과 편집

+ + + + + + + + + + +
+

+
+
+ + + +
+
+
+
+ + diff --git a/src/main/webapp/WEB-INF/jsp/main/EgovMainView.jsp b/src/main/webapp/WEB-INF/jsp/main/EgovMainView.jsp index ce4dd2b9..00ac117c 100644 --- a/src/main/webapp/WEB-INF/jsp/main/EgovMainView.jsp +++ b/src/main/webapp/WEB-INF/jsp/main/EgovMainView.jsp @@ -28,18 +28,13 @@ 관리자 대시보드 - -<%-- --%> - - -
-
-

2021 분쟁조정 처리현황

- -
-
-
    -
  • -

    성립

    -
    -
    -
    -
  • -
  • -

    불성립

    -
    -
    -
    -
  • -
  • -

    취하

    -
    -
    -
    -
  • -
  • -

    기타

    -
    -
    -
    -
  • -
  • -

    진행

    -
    -
    -
    -
  • -
- -
    -
  • 0
  • -
  • 10
  • -
  • 20
  • -
  • 30
  • -
  • 40
  • -
- + +

조정 일정 현황

+ 바로가기 > +
+ +

조정 종결 관리

+ 바로가기 > +
@@ -252,7 +189,7 @@ - + <%--
@@ -274,34 +211,7 @@
-
-
-
-

2021 연도별 조정 처리 현황

- -
-
- -
-
-
-
-

2021 분야별 조정 분포

- -
-
- -
-
-
-
-

조정처리 성립률

- -
-
- -
-
+
--%>