username@email.com
2025-05-12 ae6e40362a745caef9ead36f81f38313fb8c2c66
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<%@ 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>