<% /****************************************************************************** * 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.*"%> <%@ 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 contextPath = (String) session.getAttribute("contextPath"); String parentTarget = " target=\"_parent\" "; String blankTarget = " target=\"_blank\" "; String id = Utils.getRequestParameter(context, request, "id"); String isVrp = Utils.getRequestParameter(context, request, "vrp"); %>
"> <% String perID = null; try { perID = FormResponse.getFrpPersonID(); } catch (FieldNotInitializedException fnie) { } String formID = null; try { formID = FormResponse.getFrpFormID(); } catch (FieldNotInitializedException fnie) { } String[][] queryForm = {{"FrmID = " + Utils.formatToSQL(context, formID)}}; String[] fieldsForm = {"FrmLabel" , "FrmSeqNum" , "FrmBasicQuestion0" , "FrmBasicQuestion1" , "FrmBasicQuestion2", "FrmEventID"}; String formLabel = "???"; String formNumber = "???"; String formEventID = null; Vector listForm = FormBean.listSummary(session , fieldsForm , queryForm); if (listForm != null && listForm.size() > 0) { formEventID = (String) ((Hashtable) listForm.elementAt(0)).get("FrmEventID"); formLabel = (String) ((Hashtable) listForm.elementAt(0)).get("FrmLabel"); Integer formNumberI = (Integer) ((Hashtable) listForm.elementAt(0)).get("FrmSeqNum"); if (formNumberI != null) { DecimalFormat df = FlLocale.getInstance(session).getDecimalFormat("0000"); formNumber = df.format((long) (formNumberI.intValue())); } } String[][] queryPer = {{"PerID = " + Utils.formatToSQL(context, perID)}}; String[] fieldsPer = {"PerCivID:Val" , "PerName" , "PerFstName"}; String perCompleteName = "???"; Vector listPer = PersonBean.listSummary(session , fieldsPer , queryPer); if (listPer != null && listPer.size() > 0) { String perCiv = (String) ((Hashtable) listPer.elementAt(0)).get("PerCivID:Val"); String perName = (String) ((Hashtable) listPer.elementAt(0)).get("PerName"); String perFstName = (String) ((Hashtable) listPer.elementAt(0)).get("PerFstName"); perCompleteName = (perCiv != null ? perCiv : "") + " " + (perFstName != null ? perFstName : "") + " " + (perName != null ? perName : ""); } %>
<%= formNumber %> - <%= formLabel %>
<%= perCompleteName %>
<% String basicQuestion0=null; if(!listForm.isEmpty()) basicQuestion0 = (String) ((Hashtable) listForm.elementAt(0)).get("FrmBasicQuestion0"); if (basicQuestion0 != null) { boolean basicResp0 = false; try { basicResp0 = FormResponse.isFrpBasicResponse0(); } catch (FieldNotInitializedException fnie) { } %> <% } String basicQuestion1 = null; if (!listForm.isEmpty()) { basicQuestion1 = (String) ((Hashtable) listForm.elementAt(0)).get("FrmBasicQuestion1"); } if (basicQuestion1 != null) { boolean basicResp1 = false; try { basicResp1 = FormResponse.isFrpBasicResponse1(); } catch (FieldNotInitializedException fnie) { } %> <% } String basicQuestion2 = null; if(!listForm.isEmpty()) basicQuestion2 = (String) ((Hashtable) listForm.elementAt(0)).get("FrmBasicQuestion2"); if (basicQuestion2 != null) { boolean basicResp2 = false; try { basicResp2 = FormResponse.isFrpBasicResponse2(); } catch (FieldNotInitializedException fnie) { } %> <% } String[][] query = {{"LfqFormID = " + Utils.formatToSQL(context, formID)}}; String[] fields = {"LfqID" , "LfqFormQuestionID" , "LfqParagraph", "LfqPosition"}; String[] orderBy = {"LfqPosition"}; Vector lfqList = LinkFormQuestionBean.listSummary(session, fields, query, orderBy); if (lfqList != null && lfqList.size() > 0) { for (int i=0 ; i < lfqList.size() ; i++) { Hashtable line = (Hashtable) lfqList.elementAt(i); String questionID = (String) line.get("LfqFormQuestionID"); String paragraph = (String) line.get("LfqParagraph"); Integer lfqPosI = (Integer) line.get("LfqPosition"); String lfqID = (String) line.get("LfqID"); int lfqPosition = 99; if (lfqPosI != null) { lfqPosition = lfqPosI.intValue(); } String lfqPos = Integer.toString(lfqPosition); if (paragraph != null) { %> <% } else { FormQuestionBean curQuestion = null; try { curQuestion = new FormQuestionBean(questionID , session); } catch (AccessDeniedException ade) { } catch (FrontlineException fex) { } if (curQuestion != null) { String qLabel = null; try { qLabel = curQuestion.getFqtLabel(); } catch (FieldNotInitializedException fnie) { } String qTypeID = null; try { qTypeID = curQuestion.getFqtType(); } catch (FieldNotInitializedException fnie) { } String qRefTableID = null; String qType = "FRE"; if ( qTypeID != null && qTypeID.equals(dico.getRefIdByCode("FqtType" , "REF")) ) { qType = "REF"; try { qRefTableID = curQuestion.getFqtRefTable(); } catch (FieldNotInitializedException fnie) { } } if ( qTypeID != null && qTypeID.equals(dico.getRefIdByCode("FqtType" , "LST")) ) { qType = "LST"; } if ( qTypeID != null && qTypeID.equals(dico.getRefIdByCode("FqtType" , "INT")) ) { qType = "INT"; } %> <% } } } } %>
<%= basicQuestion0 %> <%= basicResp0 ? Utils.getMessage(session, "L2005", "Oui") : Utils.getMessage(session, "L2006", "Non") %>
<%= basicQuestion1 %> <%= basicResp1 ? Utils.getMessage(session, "L2005", "Oui") : Utils.getMessage(session, "L2006", "Non") %>
<%= basicQuestion2 %> <%= basicResp2 ? Utils.getMessage(session, "L2005", "Oui") : Utils.getMessage(session, "L2006", "Non") %>
<%= paragraph %>
<%= qLabel == null ? " " : qLabel %> <% String[][] queryQrs = {{"QrsFrpID = " + Utils.formatToSQL(context, id), "QrsLfqID = " + Utils.formatToSQL(context, lfqID)}}; String[] orderByQrs = {"QrsInstance"}; Vector listQrs = QuestionResponseBean.list(session , queryQrs, orderByQrs); if (listQrs != null && listQrs.size() > 0) { for (int j = 0 ; j < listQrs.size() ; j++) { QuestionResponseBean curQrs = (QuestionResponseBean) listQrs.elementAt(j); if ("FRE".equals(qType)) { //- debut cas FRE String qrsText = null; try { qrsText = curQrs.getQrsText(); } catch (FieldNotInitializedException fnie) { } %> <%= qrsText != null ? qrsText : " " %><%= j < listQrs.size() - 1 ? "
" : "" %> <% } //- fin cas FRE if ("INT".equals(qType)) { // debut cas INT String qrsText = null; try { qrsText = curQrs.getQrsText(); } catch (FieldNotInitializedException fnie) { } int qrsInstance = 0; try { qrsInstance = curQrs.getQrsInstance(); } catch (FieldNotInitializedException fnie) { } %> <%if(qrsInstance == 0){ %>  <%= (qrsText != null) ? qrsText : " " %> <% }else if(qrsInstance == 1){ %>   <%= (qrsText != null) ? qrsText : " " %> <% } %> <% } //fin cas INT if ("LST".equals(qType)) { //- debut cas LST int qrsPosition = -1; try { qrsPosition = curQrs.getQrsPosition(); } catch (FieldNotInitializedException fnie) { } String lstAnswer = null; try { Method getter = Class.forName("com.edeal.frontline.FormQuestionBean").getMethod("getFqtLstAnswer" + qrsPosition , null); lstAnswer = (String) getter.invoke(curQuestion , null); } catch (Exception e) { logger.error("DBG: " + e.getClass().getName() + " : " + e.getMessage()); } String qrsMoreText = null; try { qrsMoreText = curQrs.getQrsMoreText(); } catch (FieldNotInitializedException fnie) { } if (lstAnswer != null) { %> <%= lstAnswer %><%= qrsMoreText != null ? " (" + qrsMoreText + ")" : "" %><%= j < listQrs.size() - 1 ? "
" : "" %> <% } } //- fin cas LST if ("REF".equals(qType)) { //- debut cas REF String qrsRefValID = null; try { qrsRefValID = curQrs.getQrsRefValID(); } catch (FieldNotInitializedException fnie) { } String qrsMoreText = null; try { qrsMoreText = curQrs.getQrsMoreText(); } catch (FieldNotInitializedException fnie) { } String refAnswer = null; try { refAnswer = (String) dico.getRefDisp(session, qRefTableID , "Te1" , qrsRefValID); } catch (Exception fe) { //http://u-project2.umanis.com/view.php?id=45341 : from FrontlineException to Exception } if (refAnswer != null) { %> <%= refAnswer %><%= qrsMoreText != null ? " (" + qrsMoreText + ")" : "" %><%= j < listQrs.size() - 1 ? "
" : "" %> <% } } //- fin cas REF } } %>
<% String[][] queryPev = {{"PvtPersonID = " + Utils.formatToSQL(context, perID) , "PvtEventId = " + Utils.formatToSQL(context, formEventID)}}; String[] fieldsPev = {"PvtID"}; Vector listPvt = PersonEventBean.listSummary(context, fieldsPev , queryPev); if ( listPvt != null && listPvt.size() > 0 ) { String pvtID = (String) ((Hashtable) listPvt.elementAt(0)).get("PvtID"); %> <% } else { %> <% } %>

" value="" onclick="window.close();">
<% /****************************************************************************** * CVS Log File - This is no longer maintained! * * Revision 1.2 2004/10/20 17:09:06 raphael * Correction des libellés * * Revision 1.1 2004/07/23 18:21:00 brian * Initial Revision * *****************************************************************************/ %>