Edit C:\galaxie\Back\galaxie\edealMobile\agenda\addPerson.jsp
<%@page session="true" import="com.edeal.frontline.*,java.util.*"%> <%@taglib uri="http://www.e-deal.com/taglib/fl" prefix="fl" %> <jsp:useBean class="com.edeal.frontline.PersonBean" id="Person" scope="request"/> <% final org.apache.commons.logging.Log logger = org.apache.commons.logging.LogFactory.getLog(getClass()); String contextPath = (String) session.getAttribute("contextPath"); FlContext context = null; if (contextPath!=null) { context = Frontline.getContext(contextPath); } else { context = Frontline.getContext(request.getContextPath()); } DataDictionary dico = context.getDataDictionary(); String perName = null; perName = Utils.getRequestParameter(context,request,"PerName"); boolean firstCall = perName == null; Vector list = new Vector(); String[] fields = new String[]{"PerID","PerFstName","PerName","PerPhone","PerMobile","PerMail","PerFctID","PerEntID:EntCorpName","PerEntID:EntAd1","PerEntID:EntAd2","PerEntID:EntAd3","PerEntID:EntZip","PerEntID:EntCity","PerEntID:EntCtrID:Val"}; if(perName != null && !perName.equals("")){ if(Utils.getMessage(session, "L2040", true, "<Nom>").equals(perName.trim())){ try{ list = PersonBean.listSummary(session,fields,new String[]{"PerName","PerFstName"}); }catch(Exception e){ list = new Vector(); } }else{ String[][] query = {{"PerName like '"+perName.trim()+"%'"},{"PerFstName like '"+perName.trim()+"%'"}}; try{ list = PersonBean.listSummary(session,fields,query,new String[]{"PerName","PerFstName"}); }catch(Exception e){ list = new Vector(); } } } %> <HTML> <HEAD> <title><fl:getMessage code="L63C2" alt="Liste des personnes"/></title> <LINK href="<fl:webapp/>/edealMobile/css/css.css" rel="stylesheet" type="text/css"> <meta name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" /> </HEAD> <BODY> <DIV style="margin-bottom: 10px;"> <form method="POST" action="<fl:webapp/>/addm_person.fl"> <table border="0" cellpadding="0" > <tr> <td class="criteria"> <input type="text" name="PerName" value="<%= perName != null && !"".equals(perName.trim()) ? Utils.formatToWeb(perName,false) : ""%>"> <input type="submit" value="Go !"> </td> </tr> </table> </form> </DIV> <% if(list != null && !list.isEmpty()){ for(int i=0; i < list.size(); i++){ Hashtable row = (Hashtable)list.elementAt(i); String entCorpName = (String)row.get("PerEntID:EntCorpName"); String entAd1 = (String)row.get("PerEntID:EntAd1"); String entAd2 = (String)row.get("PerEntID:EntAd2"); String entAd3 = (String)row.get("PerEntID:EntAd3"); String EntZip = (String)row.get("PerEntID:EntZip"); String entCity = (String)row.get("PerEntID:EntCity"); String entCtrID = (String)row.get("PerEntID:EntCtrID:Val"); String perPhone = (String)row.get("PerPhone"); String perMobile = (String)row.get("PerMobile"); String perMail = (String)row.get("PerMail"); String fstName = (String)row.get("PerFstName"); String name = (String)row.get("PerName"); String perFctID = (String)row.get("PerFctID"); boolean hasAd = (entAd1 != null) || (entAd2 != null) || (entAd3 != null); String displayName=""; String function = null; if(perFctID != null){ String functionTe2 = (String)dico.getRefDisp(session, "Fct","Te2",perFctID); if(functionTe2 != null)function = functionTe2; else function = (String)dico.getRefDisp(session, "Fct","Te1",perFctID); } if(fstName != null)displayName +=fstName + " "; if(name != null)displayName += name + " "; %> <div class="resultset"> <table border="0" cellpadding="0" cellspacing="0" class="embeded"> <tr> <td> <a href="<fl:webapp/>/editm2_interaction.fl?op=addPerson&perID=<%=(String)row.get("PerID")%>" class="title"> <%= Utils.formatToWeb(displayName,false) %> </a><br/> <%if(function != null){%> <%= Utils.formatToWeb(function,false) %><br/> <%} if(entCorpName != null){%> <%= Utils.formatToWeb(entCorpName,false) %><br/> <% } if(entAd1 != null || entAd2 != null || entAd3 != null || EntZip != null || entCtrID != null){%> <%= entAd1 != null ? Utils.formatToWeb(entAd1,false) : ""%> <%= entAd2 != null ? Utils.formatToWeb(entAd2,false) : ""%> <%= entAd3 != null ? Utils.formatToWeb(entAd3,false) : ""%> <%= hasAd ? "<br/>" : ""%> <%= EntZip != null ? Utils.formatToWeb(EntZip,false) : ""%> <%= entCity != null ? Utils.formatToWeb(entCity,false) : ""%> <% } %> </td> </tr> </table> </DIV> <% } } else if (perName != null && perName.equals("")) { %> <fl:getMessage code="M6154" alt="Merci de remplir le critère."/> <% } else if (perName != null) { %> <fl:getMessage code="L104B" alt="Aucune entrée"/> <% } %> <jsp:include page="/edealMobile/footer.jsp"/> </BODY> </HTML>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de