📄 listinventory.jsp.svn-base
字号:
<%@ page language="java" contentType="text/html;charset=GB2312"%>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<%@ taglib uri="/WEB-INF/extremecomponents.tld" prefix="ec"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script Language="JavaScript" src="../calendar/oa_Popup.js" type=""></script>
<script Language="JavaScript" src="../js/Global.js" type=""></script>
<script Language="JavaScript" src="../calendar/oa_Popup.js" type=""></script>
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath}/css/extremecomponents.css">
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath}/css/style.css">
<script language="javascript">
function showList(){
document.getElementById("list").style.display = "";
}
</script>
</head>
<body>
<tiles:insert page="/inc/CurrentPosition.jsp" />
<tiles:insert page="/inc/ActionMessagesAndErrors.jsp" />
<bean:define id="invs" name="invs" scope="quest"></bean:define>
<div class="form">
<html:form>
<table class="title" width="100%">
<tr>
<td>
罐存查询
</td>
</tr>
</table>
<tr>
<td class="left">
日期范围:从
</td>
<td class="right" colspan="4">
<input type="text" name="startTime" value="">
<img src="/CRM/images/time.gif" align="absmiddle"
style="cursor:hand;" alt="弹出日历下拉菜单"
onclick="fPopUpCalendarDlg(startTime);return false">
到
<input type="text" name="endTime" value="">
<img src="/CRM/images/time.gif" align="absmiddle"
style="cursor:hand;" alt="弹出日历下拉菜单"
onclick="fPopUpCalendarDlg(endTime);return false">
</td>
</tr>
<div class="formTable">
<table width="100%" cellpadding="0" cellspacing="0"
class="form-table">
<tr>
<td class="left">
加油站名称:
</td>
<td class="right">
<input type="text" name="stationName" value="">
</td>
<td class="left">
油罐号:
</td>
<td class="right">
<html:select property="tankId">
<html:options collection="tanks" property="tankId"
labelProperty="tankId" />
</html:select>
</td>
</tr>
<tr>
<td class="left">
加油站编号:
</td>
<td class="right">
<input type="text" name="stationCode" value="">
</td>
<td class="left">
油品:
</td>
<td class="right">
<html:select property="oilId">
<html:options collection="oils" property="oilName"
labelProperty="oilName" />
</html:select>
</td>
</tr>
</table>
</div>
<div class="submitTable">
<table width="90%">
<tr>
<td class="buttonBar">
<input name="Submit" type="submit" class="button"
onClick="showList()" value="查 询">
</td>
</tr>
</table>
</div>
</html:form>
</div>
<div class="eXtremeTable" id="list" style="display:none;">
<ec:table items="invs" var="inv"
action="${pageContext.request.contextPath}/InventoryQueryAction.do?method=listInventory"
imagePath="${pageContext.request.contextPath}/images/table/*.gif"
title="库存列表" width="100%" rowsDisplayed="10" filterable="false"
showPagination="true" sortable="true" autoIncludeParameters="false">
<ec:row styleClass="special">
<ec:column property="id" title="序号" />
<ec:column property="stationName" title="油站名称" />
<ec:column property="status" title="状态" />
<ec:column property="tankId" title="油罐号" />
<ec:column property="oilName" title="油品" />
<ec:column property="oilLevel" title="油高度(mm)" />
<ec:column property="waterLevel" title="水高度(mm)" />
<ec:column property="oilVolume" title="油体积(L)" />
<ec:column property="waterVolume" title="水体积(L)" />
<ec:column property="temperature" title="温度(。C)" />
<ec:column property="density" title="密度(kg/m3)" />
<ec:column property="mass" title="质量(kg)" />
<ec:column property="time" title="时间" />
</ec:row>
</ec:table>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -