| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%@ page import="com.runzhixing.bean.AppCylinder" %>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- List<AppCylinder> acList = new ArrayList<AppCylinder>();
- acList = (List<AppCylinder>)session.getAttribute("carCylinderList");
- AppCylinder ac = new AppCylinder();
- if(acList.size()>0){
- ac = acList.get(0);
- }
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <base href="<%=basePath%>">
-
- <title>车辆气瓶信息表</title>
-
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache">
- <meta http-equiv="expires" content="0">
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="This is my page">
-
- </head>
-
- <body>
-
- <div>
- <center>
- <table width="auto" border="1" cellpadding="2" cellspacing="0">
- <tr>
- <td>使用登记证号</td>
- <td colspan="2"><%=ac.getCertNo() %></td>
- <td>车牌号码</td>
- <td colspan="3"><%=ac.getCarNo() %></td>
- </tr>
- <tr>
- <td>使用单位(人)</td>
- <td colspan="2"><%=ac.getUseUnit() %></td>
- <td>车架号</td>
- <td colspan="3"><%=ac.getFrameNo() %></td>
- </tr>
- <tr>
- <td>品牌型号</td>
- <td colspan="2"><%=ac.getBrand() %></td>
- <td>车辆种类</td>
- <td colspan="3"><%=ac.getCarType() %></td>
- </tr>
- <tr>
- <td>整备质量</td>
- <td colspan="2"><%=ac.getCarWeight() %></td>
- <td>安装单位</td>
- <td colspan="3"><%=ac.getInstallUnit() %></td>
- </tr>
-
- <tr>
- <td>监检单位</td>
- <td colspan="2"><%=ac.getCheckUnit() %></td>
- <td>安装日期</td>
- <td colspan="3"><%=ac.getInstallDate() %></td>
- </tr>
- <tr>
- <td>监检日期</td>
- <td colspan="2"><%=ac.getCheckDate() %></td>
- <td>安装数量</td>
- <td colspan="3"><%=ac.getInstallNum() %></td>
- </tr>
- <tr>
- <td>检验证书编号</td>
- <td colspan="2"><%=ac.getCheckCertNo() %></td>
- <td>安装许可证号</td>
- <td colspan="3"><%=ac.getInstallCertNo() %></td>
- </tr>
- <tr>
- <td></td>
- <td colspan="2"></td>
- <td>充装介质</td>
- <td colspan="3"><%=ac.getMedia() %></td>
- </tr>
- <tr>
- <td colspan="7" align="center">气瓶情况</td>
- </tr>
- <tr>
- <td>气瓶编号</td>
- <td>制造单位</td>
- <td>制造日期</td>
- <td>气瓶品种</td>
- <td>气瓶重量</td>
- <td>气瓶容积</td>
- <td>下次检验日期</td>
- </tr>
- <% for(AppCylinder appc:acList){ %>
- <tr>
- <td>
- <%=appc.getCylinderNo() %>
- </td>
- <td>
- <%=appc.getProductUnit() %>
- </td>
- <td>
- <%=appc.getProductDate() %>
- </td>
- <td>
- <%=appc.getCylinderType() %>
- </td>
- <td>
- <%=appc.getCylinderWeight() %>
- </td>
- <td>
- <%=appc.getCylinderVol() %>
- </td>
- <td>
- <%=appc.getNextCheckDate() %>
- </td>
- </tr>
- <%} %>
-
-
- </table>
- </center>
-
- </body>
- </html>
|