<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CarTransferPrintTable.aspx.cs" Inherits="CY.WebForm.Pages.workcar.CarTransferPrintTable" %>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
<head id="Head1" runat="server">
|
<title>打印派车单</title>
|
<script type="text/javascript" src="../../libs/js/jquery.js"></script>
|
<script src="../../js/common/util.js" type="text/javascript"></script>
|
<link href="../../Styles/Print.css" rel="stylesheet" type="text/css" />
|
<script src="../../js/common/Printter.js" type="text/javascript"></script>
|
<script src="../../js/common/LodopFuncs.js" type="text/javascript"></script>
|
<style type="text/css">
|
.tableStyle { text-align: left; border-collapse: collapse; border-left: 1px solid #DDD; border-top: 1px solid #DDD; }
|
.tableStyle div { text-align: left; overflow: visible;float: left; }
|
.tableStyle tr, td, th { padding: 0px; height: auto; }
|
.tableStyle td, th { border-bottom: 1px solid #DDD; border-collapse: collapse; border-right: 1px solid #DDD; font-weight: normal; padding: 2px; line-height:18px; }
|
.ali03 { text-align: right; }
|
.w100px { width: 120px; }
|
.w200px { width: 200px; }
|
</style>
|
</head>
|
<body>
|
<object id="LODOP_OB" classid="clsid:2105C259-1E0C-4534-8141-A753534CB4CA" width="0" height="0">
|
<embed id="LODOP_EM" type="application/x-print-lodop" width="0" height="0" pluginspage="/Pages/common/install_lodop32.exe"></embed>
|
</object>
|
<div id='div_tool' issideways="true" printparams='2,2100,2970, "A4"'>
|
</div>
|
<form id="form1" class="form2" runat="server">
|
<asp:Repeater ID="RepClientList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle">
|
<tr>
|
<th width="25">
|
</th>
|
<th style="text-align: center; width: 30px;">
|
编号
|
</th>
|
<th style="text-align: center">
|
发车时间
|
</th>
|
<th style="text-align: center">
|
还车时间
|
</th>
|
<th style="text-align: center">
|
车辆牌照
|
</th>
|
<th style="text-align: center">
|
发车人
|
</th>
|
<th style="text-align: center">
|
用车人
|
</th>
|
<th style="text-align: center">
|
用车事由
|
</th>
|
<th style="text-align: center">
|
驾驶员
|
</th>
|
<th style="text-align: center">
|
行驶里程
|
</th>
|
<th style="text-align: center">
|
行驶时间
|
</th>
|
<th style="text-align: center">
|
是否还车
|
</th>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td>
|
<input type="checkbox" value='<%#Eval("Keyid")%>' />
|
</td>
|
<td style="text-align: center">
|
<%#Container.ItemIndex + 1%>
|
</td>
|
<td style="text-align: center">
|
<%#Eval("TransferDepartureTime", "{0:yyyy-MM-dd HH:mm}")%>
|
</td>
|
<td style="text-align: center">
|
<%#Eval("TransferIsBack").ToString() == "1" ? "未归还" : Eval("TransferBackTime", "{0:yyyy-MM-dd HH:mm}")%>
|
</td>
|
<td style="text-align: center">
|
<%#Eval("CarNumber")%>
|
</td>
|
<td style="text-align: center">
|
|
<%#Eval("TransferDeparturePeople")%>
|
|
</td>
|
<td style="text-align: center">
|
|
<%#Eval("TransferUserCarPeople")%>
|
|
</td>
|
<td style="text-align: center">
|
<%#Eval("TransferUseCarReconed")%>
|
</td>
|
<td style="text-align: center">
|
<%#Eval("TransferPilot")%>
|
</td>
|
<td style="text-align: center">
|
<%#Eval("TransferRunFinalli")%> KM
|
</td>
|
<td style="text-align: center">
|
<%#Eval("TransferRunTime")%>
|
</td>
|
<td style="text-align: center">
|
<%#Eval("TransferIsBack").ToString()=="1"?"未归还":"已归还"%>
|
</td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
</form>
|
</body>
|
</html>
|