📄 accountimport.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");
}
%>
<table width="100%" height="100%" ><tr><td valign="top">
<!-- title table -->
<table width="100%" class="viewManyHeader" cellspacing="0" cellpadding="2"><tr><td>Accounts</td></tr></table>
<table width="100%" cellspacing="0" cellpadding="2">
<form method="post" action="/sfa/control/upload" ENCTYPE="multipart/form-data">
<input type="hidden" name="entity" value="Account">
<table class=viewOneHeader>
<tr><td>Step 1. Find the file to upload.</td></tr>
<tr>
<td class="viewOneLabel">
<input type="file" name="accountFile" 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -