%@ page language="java" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ page import="ServidorApresentacao.Action.sop.utils.SessionConstants" %>
<%@ page import="DataBeans.InfoStudent" %>
<%@ page import="DataBeans.InfoTeacher" %>
<%@ page import="DataBeans.InfoMasterDegreeProofVersion" %>
<%@ page import="DataBeans.InfoEmployee" %>
<%@ page import="java.text.SimpleDateFormat" %>
<%@ page import="java.util.Date" %>
|
|
|
|
|
:
|
|
|
: |
|
: |
|
: |
|
: |
|
:
|
|
:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
<%
Date modification = null;
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd-MM-yyyy k:mm:ss");
String formattedModification = null;
java.util.Hashtable paramsHistory = null;
InfoStudent infoStudent = (InfoStudent) student;
%>
<%
modification = new Date(masterDegreeProofVersion.getLastModification().getTime());
formattedModification = simpleDateFormat.format(modification);
paramsHistory = new java.util.Hashtable();
paramsHistory.put("degreeType", infoStudent.getDegreeType().getTipoCurso());
paramsHistory.put("studentNumber", infoStudent.getNumber());
paramsHistory.put("masterDegreeProofVersionID", masterDegreeProofVersion.getIdInternal());
paramsHistory.put("method", "getStudentAndMasterDegreeProofVersion");
pageContext.setAttribute("parametersHistory", paramsHistory, PageContext.PAGE_SCOPE);
%>
<%= formattedModification %> - <%= masterDegreeProofVersion.getInfoResponsibleEmployee().getPerson().getNome() %>
|