<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PrintCheckTable.aspx.cs" Inherits="CY.WebForm.Pages.Property.PrintCheckTable" %>
|
|
<!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 div { text-align: left; overflow: visible; line-height: 15px; float: left; }
|
.tableStyle tr, td, th { padding: 0px; height: auto; }
|
</style>
|
</head>
|
<body style="margin: 0;">
|
<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' printparams='0,2100,2970, "A4"'>
|
</div>
|
<form id="form1" runat="server">
|
<table class="tableStyle" useclick="false" usecheckbox="true" sortmode="true">
|
<thead>
|
<tr>
|
<th>
|
编号
|
</th>
|
<th>
|
物品分类
|
</th>
|
<th>
|
物品名称
|
</th>
|
<th>
|
库存数量
|
</th>
|
<th>
|
备注
|
</th>
|
</tr>
|
</thead>
|
<asp:Repeater ID="RepCustomerList" runat="server">
|
|
<ItemTemplate>
|
<tr>
|
<td style="height: 32px;">
|
<%#Container.ItemIndex + 1%>
|
</td>
|
<td>
|
<div style="width: 160px; overflow: visible; word-break: break-all; word-wrap: normal;">
|
<%#Eval("CateName")%>
|
</div>
|
</td>
|
<td>
|
<div style="width: 160px; overflow: visible; word-break: break-all; word-wrap: normal;">
|
<%#Eval("Name")%>
|
</div>
|
</td>
|
<td>
|
<div style="width: 80px; overflow: visible; word-break: break-all; word-wrap: normal;">
|
<%#Eval("havenum")%>
|
</td>
|
<td>
|
<div style="width: 160px; overflow: visible; word-break: break-all; word-wrap: normal;">
|
</td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
</table>
|
<table>
|
<tr style="height:30px">
|
<td class="ali03 w70px ">
|
盘点人:
|
</td>
|
<td>
|
<span id="spanMan" runat="server"></span>
|
</td>
|
<td class="ali03 w70px ">
|
打印时间:
|
</td>
|
<td>
|
<span id="spandate" runat="server"></span>
|
</td>
|
</tr>
|
</table>
|
</form>
|
</body>
|
</html>
|