⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dealreports.jsp

📁 国外的一套开源CRM
💻 JSP
字号:
<%@ 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" %>

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


<%
   String ENTITY = "Account";
   String action = "";

   ModelReader modelReader = delegator.getModelReader();
   ModelEntity entity = delegator.getModelEntity(ENTITY);
 
   if(request.getParameter("action") != null){
     //actions=search, update, create
     action = request.getParameter("action");
   }
 
   //handle importing file
   if(action.equals("import")){
  }
  
%>
<table width="100%" height="100%" >
  <tr>
    <td valign="top">
            <!-- title table -->
            <table width="100%" height="30"><tr><td><div class="head1">Accounts</div></td></tr></table>
            <!-- Border Table -->
           <table border=0 width='100%' cellpadding='<%=headerBoxBorderWidth%>' cellspacing='0' bgcolor='<%=headerBoxBorderColor%>'>
           <tr><td width='100%' height='100%'>
           <table bgcolor="white" width="100%"><tr><td><div class="head3"><%=entity.entityName %> Search</div></td></tr></table>

           <table border="0" bgcolor="#C0C0C0" cellspacing="0" cellpadding="2" width="100%">
           </table>
           </td></tr>
           <tr><td>            
           </td></tr>
           </table>
          </td></tr></table>
    </td>  
    <td valign="top">  
    </td>
  </tr>
</table>
  
<%@ include file="/includes/footer.jsp" %>

⌨️ 快捷键说明

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