% /************************************************************@@ * Program Name : doc_regist.jsp * Description : /집계자/내문서함/등록함/문서 등록 * Author : 강원중 * Create Date : 2004.10.11 * History : @@************************************************************/ %> <%@ page contentType="text/html; charset=UTF-8" import="java.net.URLEncoder" import="kr.co.kihyun.beans.user.HttpSSOLogin" import="kr.co.kihyun.lang.MLong" import="kr.co.kihyun.moumi.Moumi" import="kr.co.kihyun.text.html.ServletUtil" import="kr.co.kihyun.moumi.doc.MDoc" import="kr.co.kihyun.lang.MInteger" import="kr.co.kihyun.beans.totsys.report.Report"%> <%@page import="kr.co.kihyun.beans.entity.TotReport"%> <%@page import="kr.co.kihyun.beans.entity.TotReportProcess"%> <%@ include file="/totsys/common/inc/sec/secure.inc.jsp"%> <% try{ /*********** User HttpSSOLogin check ***********/ if(!HttpSSOLogin.isLogin(request)){ //login 성공후 되돌아올 주소 String connURL="location='/totsys/login/login.jsp';"; out.println(ServletUtil.getJavaScript(connURL)); return; } /********** session내의 userId **********/ String usID = HttpSSOLogin.getLoginID(request); /********** parameter **********/ Long docID = MLong.parseLong(request.getParameter("docID"),null); String strPage = clearXSS(request.getParameter("strPage"),""); String findOption = clearXSS(request.getParameter("findOption"),""); String findWord = clearXSS(request.getParameter("findWord"),""); int tmp = MInteger.parseInt(request.getParameter("tmp"), 0); session.setAttribute("modifySuccTargetURI", "/totsys/sysadm/prssbox/doc_form_view.jsp?docID="+docID); /****** all, send report ******/ Report report = new Report(); int allReportCount = report.getAllCount(docID); int sendReportCount = report.getSendCount(docID); %>