<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PrintInVisit.aspx.cs" Inherits="CY.WebForm.Pages.business.PrintInVisit" %>
|
|
<!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>
|
<uc:CMSHead ID="CMSHead1" runat="server" />
|
<script src="../../js/common/Printter.js" type="text/javascript"></script>
|
<script src="../../js/common/LodopFuncs.js" type="text/javascript"></script>
|
<style type="text/css">
|
.th { text-align: center; border-bottom: 1px solid #cccccc; background: none; }
|
td { text-align: center; }
|
</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">
|
<div id="scrollContent">
|
<asp:Repeater ID="RepCustomerList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle" useclick="false" usecheckbox="true" sortmode="true">
|
<tr>
|
<th>
|
编号
|
</th>
|
<th>
|
公司全称
|
</th>
|
<th>
|
市县区域
|
</th>
|
<th>
|
信息来源
|
</th>
|
<th>
|
上门
|
</th>
|
<th>
|
电话
|
</th>
|
<th>
|
QQ
|
</th>
|
<th>
|
短信
|
</th>
|
<th>
|
商函
|
</th>
|
<th>
|
Email
|
</th>
|
<th>
|
客户级别
|
</th>
|
<th>
|
访问次数
|
</th>
|
<th>
|
业务经理
|
</th>
|
<th>
|
客户经理
|
</th>
|
<th>
|
状态
|
</th>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td>
|
<%#Container.ItemIndex + 1%>
|
</td>
|
<td>
|
<%#Eval("CompanyName")%>
|
</td>
|
<td>
|
<%#Eval("City").ToString().IndexOf("其他") >= 0 ? Eval("Province") : Eval("City")%><%#Eval("County")%>
|
</td>
|
<td>
|
<%#Eval("SourcesInfo.Name")%>
|
</td>
|
<td>
|
<%#Eval("Nupdoor")??0%>
|
</td>
|
<td>
|
<%# Eval("Nphone")??0%>
|
</td>
|
<td>
|
<%#Eval("Nqq")??0%>
|
</td>
|
<td>
|
<%# Eval("Nmessage")??0%>
|
</td>
|
<td>
|
<%# Eval("NDirectMail")??0%>
|
</td>
|
<td>
|
<%#Eval("Nemial")??0%>
|
</td>
|
<td>
|
<%#Eval("DegreeImportan.Name")%>
|
</td>
|
<td>
|
<%#Eval("Nall")??0%>
|
</td>
|
<td>
|
<%#Eval("BusinessmanagerName")%>
|
</td>
|
<td>
|
<%#Eval("AccountmanagerName")%>
|
</td>
|
<td>
|
<%#Eval("CustomerStatus.Name")%>
|
</td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
</div>
|
</form>
|
</body>
|
</html>
|