<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PrintCorList.aspx.cs" Inherits="CY.WebForm.Pages.business.PrintCorList" %>
|
|
<!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 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; }
|
.tableStyle tr { height: 24px; }
|
.StatisticsMoney span { color: #FF5500; font-weight: bold; }
|
</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 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;">
|
联系QQ
|
</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>
|
</thead>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td>
|
<%#Eval("CustomerId")%>
|
</td>
|
<td>
|
<%#Eval("CreateTime", "{0:yyyy-MM-dd}")%>
|
</td>
|
<td>
|
<%#Eval("City").ToString().IndexOf("其他") >= 0 ? Eval("Province") : Eval("City")%><%#Eval("County")%>
|
</td>
|
<td>
|
<div style="width: 200px; overflow: visible; word-break: break-all; word-wrap: normal;">
|
<%#Eval("CompanyName")%></div>
|
</td>
|
<td>
|
<%#Eval("CreditIdName")%>
|
</td>
|
<td>
|
<%#string.IsNullOrEmpty(Eval("BusinessManagers").ToString()) ? Eval("LegalRepresentative").ToString() : Eval("BusinessManagers").ToString()%>
|
</td>
|
<td>
|
<%#Eval("CompanyPhone")%>
|
</td>
|
<td>
|
<%#Eval("Mobile")%>
|
</td>
|
<td>
|
<%#Eval("QQ")%>
|
</td>
|
<td>
|
<%#Eval("DegreeImportanIdName")%>
|
</td>
|
<%--<td>
|
<%#Eval("Prepayments", "{0:F2}")%>
|
</td>
|
<td>
|
<%#Eval("Credit", "{0:F2}")%>
|
</td>--%>
|
<td>
|
<%#Eval("OrderCount")%>
|
</td>
|
<td>
|
<%#Eval("OrderMoney", "{0:F2}")%>
|
</td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
</form>
|
</body>
|
</html>
|