% /** * **********************************************************@@ Program Name * : doc_list.jsp Description : /집계 문서에 대한 보고자 정보 Author : 기현테크 Create Date * : 2010.11.27 History : * @@*********************************************************** */ %> <%@ page contentType="text/html; charset=UTF-8" import="java.text.SimpleDateFormat" import="javax.jdo.PersistenceManager" import="javax.jdo.Transaction" import="kr.co.kihyun.beans.entity.util.*" import="kr.co.kihyun.beans.entity.*" import="kr.co.kihyun.moumi.Moumi" import="kr.co.kihyun.lang.MLong" import="kr.co.kihyun.lang.MString"%> <%@ include file="/totsys/common/inc/sec/secure.inc.jsp"%> <% PersistenceManager pm = new MPersistenceManager(PMF.get().getPersistenceManager()); Transaction tx = pm.currentTransaction(); try { tx.begin(); /** * **** Parameter ***** */ Long reportID = MLong.parseLong(request.getParameter("reportID"), null); TotReport totReport = pm.getObjectById(TotReport.class, reportID); %>
<%=Moumi.getMessageBundle().getString("moumi.message.tot_report.submit")%><%=Moumi.getMessageBundle().getString("moumi.message.tot_doc.person")%><%=Moumi.getMessageBundle().getString("moumi.message.tot_doc.name")%> | <%= MString.checkNull(totReport.getOwnerName(pm))%> | ||
<%=Moumi.getMessageBundle().getString("moumi.message.tot_doc.coporation")%>/<%=Moumi.getMessageBundle().getString("moumi.message.tot_doc.devision")%><%=Moumi.getMessageBundle().getString("moumi.message.tot_doc.name")%> | <%= totReport.getUser(pm).getUpperDept(pm).getName()%> | <%=Moumi.getMessageBundle().getString("moumi.message.tot_doc.telNumber")%> | <%= MString.checkNull(totReport.getOwnerPhone())%> |
<%= MString.checkNull(totReport.getOwnerEmail())%> | <%=Moumi.getMessageBundle().getString("moumi.message.tot_report.submit")%><%=Moumi.getMessageBundle().getString("moumi.message.tot_doc.dateTime")%> | <%=totReport.getSubmitDate() == null ? "" : new SimpleDateFormat("yy/MM/dd HH:mm:ss").format(totReport.getSubmitDate())%> |