%@page session="true" import="com.edeal.frontline.*"%>
<%@ page import="com.edeal.frontline.navigation.FlRequest" %>
<%@taglib uri="http://www.e-deal.com/taglib/fl" prefix="fl" %>
<%
final org.apache.commons.logging.Log logger = org.apache.commons.logging.LogFactory.getLog(getClass());
FlRequest flRequest = new FlRequest(request);
FlContext context = flRequest.getContext();
DataDictionary dico = context.getDataDictionary();
String id;
try {
id = Simulation.getID();
} catch (FieldNotInitializedException e) {
id = null;
}
SimulationBean sim = null;
String canCalcErr = "";
try {
sim = new SimulationBean(id, context);
canCalcErr = sim.canCalculate();
} catch (AccessDeniedException e) {
}
%>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|