<% /****************************************************************************** * Copyright (c) 2000-2004 e-Deal * * e-Deal S.A. * 55 rue Brillat Savarin * 75013 Paris * France * * T: +33 (0)1 53 80 80 30 * F: +33 (0)1 73 01 69 77 * http://www.e-deal.com * * La diffusion de ce code source sous quelque forme que ce soit sans * l'autorisation de E-DEAL est interdite. * * Vous êtes autorisés à modifier ce code source uniquement pour votre usage * propre et sous réserve que les mentions de copyright demeurent intactes. * * Ce code est fourni en l'état. Aucune garantie d'aucune sorte, explicite ou * implicite n'est donnée. En aucun cas E-DEAL ne pourra être tenu pour * responsable des dommages pouvant résulter de l'utilisation de ce code * source. ******************************************************************************/ %><%@page session="true" import="com.edeal.frontline.*,java.util.*,java.text.*,java.lang.reflect.*,com.edeal.frontline.navigation.*"%> <%@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(); //transition id String paramID = Utils.getRequestParameter(context, request, "id"); //"1" if this is for edition String paramEdit = Utils.getRequestParameter(context, request, "Edit"); boolean isEdit = false; if(paramEdit == null) { paramEdit = "0"; isEdit = false; } else { isEdit = "1".equals(paramEdit); } //get info about the two scriptelements this transition links, and about the criterias String fields[] = {"SetID", "SetLse1ID", "SetLse2ID", "SetLse1ID:LseScriptElementID", "SetLse1ID:LseScriptElementID:SceLabel", "SetLse2ID:LseScriptElementID", "SetLse2ID:LseScriptElementID:SceLabel", "SetCriPerID", "SetCriSerID", "SetPosition"}; String query[][] = {{"SetID = " + Utils.formatToSQL(context, paramID)}}; Vector setList = ScriptElementTransitionBean.listSummary(session, fields, query); if (setList.size() == 0) logger.warn("scriptelementtransition/view.jsp : could not find ScriptElementTransition w/ id : " + paramID); Hashtable setHashtable = (Hashtable)setList.elementAt(0); String setCriSerID = (String)setHashtable.get("SetCriSerID"); String setCriPerID = (String)setHashtable.get("SetCriPerID"); %>
<% if (isEdit) { %> <fl:getMessage code="> <fl:getMessage code="> <%-- if this is not edition, show magnifyinger to read --%> <% } else { %><fl:getMessage code="><% } %>  <%= Utils.formatToWeb(setHashtable.get("SetPosition"),false) %> - <% if (setHashtable.get("SetLse2ID:LseScriptElementID") != null) { %>   " ><%=setHashtable.get("SetLse2ID:LseScriptElementID:SceLabel")%> <% } else { %>   <% } %> <%-- if this is edition, show magnifyinger to edit and trashcan --%>
<% if (setCriSerID != null) { %> : <% } else { %>
<% } %> <% if (setCriPerID != null) { %> : <% } else { %> <% } %>