Edit C:\galaxie\Back\galaxie\netbusiness\messages\mail_import.jsp
<% /****************************************************************************** * Copyright (c) 2000-2005 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.*"%> <%@ 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(); Vector objs = (Vector)flRequest.getAttribute("mails"); String pNext = flRequest.getParameter("next"); String pTarget = flRequest.getParameter("target"); String pCode = flRequest.getParameter("code"); String SfwID = flRequest.getRequestParameterOrAttribute("SfwID"); String nextUrl = null; if (pNext != null) { nextUrl = "<script>window.top.opener.location = '"+pNext+"'; window.top.close();</script>"; } else { nextUrl = "<script>window.top.opener.location = '"+context.getContextName()+"/list_criteria.fl?lc=MESSAGES&SfwID="+SfwID+"'; window.top.close();</script>"; } %> <html> <head> <title><fl:getMessage code="L2025" alt="E-DEAL"/> CRM</title> <script language="JavaScript"> function doValidate(id) { var f = document.forms[0]; f.id.value = id; f.submit(); } </script> <link rel="stylesheet" type="text/css" href="<fl:webapp/>/css/common_css.jsp"> <link rel="stylesheet" type="text/css" href="<fl:webapp/>/css/master_css.jsp"> <style> .importText { font-family: Arial,Verdana,sans-serif; font-size: 14px; text-align: center; color: rgb(164, 35, 45); } .borderLineOne { border-right: 1px dashed #9EC6D0; border-bottom: 1px dashed #9EC6D0; } .borderLineTwo { border-right: 1px dashed #9EC6D0; } .borderLineTree { border-left: 1px dashed #9EC6D0; } </style> </head> <body> <fl:bigTabs height="250px" objectTitle="<%= Utils.getMessage(session, \"L0021\", false, true, \"Importation d'un mail\") %>"> <% if(objs == null || objs.size() == 0) { %> <span class="actions_tabletext"><fl:getMessage code="L0001" alt="Aucune entrée disponible"/></span> <% } else { %> <form method="post" action="<fl:webapp/>/import_message.fl"> <input name="op" type="hidden" value="import"> <input name="typ" type="hidden" value="Mail"> <input name="id" type="hidden" value=""> <input name="MsgCode" type="hidden" value="<%= Utils.formatToWeb(pCode, true) %>"> <input type="hidden" name="$$returnedHtmlHead" value="<%=nextUrl%>"> <input type="hidden" name="$$returnedHtmlBody" value="..."> <input name="$$presentFields" type="hidden" value="MsgCode"> </form> <div style="overflow: scroll; width: 100%; height:300px"> <table class="container" cellpadding="0" width="100%"> <tr> <td class="headerDataGrid" width="5%"> </td> <td class="headerDataGrid" width="40%"><fl:getMessage code="F203B" alt="Sujet"/></td> <td class="headerDataGrid" width="35%"><fl:getMessage code="F0005" alt="Emetteur"/></td> <td class="headerDataGrid" width="20%"><fl:getMessage code="F2019" alt="Date"/></td> </tr> <% if (objs != null) for(int i = 0; i < objs.size(); i++) { Hashtable mail = (Hashtable)objs.elementAt(i); %> <tr class="<%= i % 2 == 1 ? "tabSimpleFdBlanc" : "tabSimpleFdBleu" %>"> <td><a href="javascript:doValidate('<%= i %>')"><img src="<fl:webapp/>/icons/ico/cochevalid.gif" border="0" alt="<fl:getMessage code="A2008" alt="voir"/>"></a></td> <td> <%= Utils.formatToWeb((String)mail.get("subject"), false) %></td> <td> <%= Utils.formatToWeb((String)mail.get("from"), false) %></td> <td> <%= Utils.formatToWeb((Date)mail.get("date"), false) %></td> </tr> <% } %> </table> </div> <% } %> </fl:bigTabs> </body> </html>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de