leadimport.jsp

来自「国外的一套开源CRM」· JSP 代码 · 共 47 行

JSP
47
字号
<%@ page import="org.ofbiz.entity.*" %>
<%@ page import="org.ofbiz.entity.model.*" %>
<%@ page import="java.lang.reflect.Method" %>
<%@ page import="java.util.*" %>
<%@ page import="org.ofbiz.entity.util.SequenceUtil" %>
<%@ page import="com.sourcetap.sfa.ui.*" %>

<%@ include file="/includes/header.jsp" %>


<%
   String screen = "LEAD";
   String screenSection = "LeadHeader";
   String action = "";
 
   if(request.getParameter("action") != null){
     //actions=search, update, create
     action = request.getParameter("action");
   }
    
%>
<table width="100%" height="100%" ><tr><td valign="top">
      <!-- title table -->
      <table width="100%" class="viewManyHeader" cellspacing="0" cellpadding="2"><tr><td>Import Leads</td></tr></table>
      <table width="100%" cellspacing="0" cellpadding="2">
      <form method="post" action="/sfa/control/leadUpload" ENCTYPE="multipart/form-data" target=importWizard>
        <input type="hidden" name="screen" value="<%=screen%>">
        <input type="hidden" name="screenSection" value="<%=screenSection%>">
           <table class=viewOneHeader>
             <tr><td>Step 1. Find the file to upload.</td></tr>
             <tr>
                <td class="viewOneLabel">
                   <input type="file" name="leadFile" size="55">
                </td>
             </tr>
             <tr>
                <td class="viewOneLabel">
                   <input type="submit" value="upload">
                </td>
             </tr>
           </table>
         </form>
       </table>

</td></tr></table>
  
<%@ include file="/includes/footer.jsp" %>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?