<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ProcurementListHTML.aspx.cs" Inherits="CY.WebForm.Pages.financial.ProcurementListHTML" %>
|
|
<!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; }
|
.tableStyle tr, td, th { padding: 0px; height: auto; }
|
</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" runat="server">
|
<asp:Repeater ID="RepCustomerList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle" cellpadding="0" cellspacing="0">
|
<thead>
|
<tr>
|
<th>
|
编号
|
</th>
|
<th>
|
供应商
|
</th>
|
<th>
|
货品名称
|
</th>
|
<th>
|
货品品牌
|
</th>
|
<th>
|
货品规格
|
</th>
|
<th>
|
纸张克重
|
</th>
|
<th>
|
单价
|
</th>
|
<th>
|
数量
|
</th>
|
<th>
|
总金额
|
</th>
|
<th>
|
已付金额
|
</th>
|
<th>
|
结账状态
|
</th>
|
<th>
|
采购状态
|
</th>
|
<th>
|
采购时间
|
</th>
|
</tr>
|
</thead>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td>
|
<%#Container.ItemIndex + 1%>
|
</td>
|
<td>
|
<%#Eval("SuppliersName")%>
|
</td>
|
<td>
|
<%#Eval("GoodsName")%>
|
</td>
|
<td>
|
<%#Eval("BrandName")%>
|
</td>
|
<td>
|
<%#Eval("SpeceicationName")%>
|
</td>
|
<td>
|
<%#Eval("PaperWeightName")%>
|
</td>
|
<td>
|
<%#Eval("Price", "{0:F4}")%>
|
</td>
|
<td>
|
<%#Eval("Quantity", "{0:F0}")%>
|
</td>
|
<td class="OrderAIncomeMoney">
|
<%#Eval("AllMoney", "{0:F2}")%>
|
</td>
|
<td class="OrderExpensesMoney">
|
<%#Eval("ReceiveMoney", "{0:F2}")%>
|
</td>
|
<td>
|
<%#Eval("ClearingStatus")%>
|
</td>
|
<td>
|
<%#Eval("PurchaseStatus")%>
|
</td>
|
<td>
|
<%#Eval("PurchaseTime")%>
|
</td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
</form>
|
</body>
|
</html>
|