<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PrintCorVisit.aspx.cs" Inherits="CY.WebForm.Pages.business.PrintCorVisit" %>
|
|
<!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">
|
<table class="tableStyle" useclick="false" usecheckbox="true" sortmode="true" style="font-size: 12px;">
|
<tr>
|
<th>
|
编号
|
</th>
|
<th>
|
访问类型
|
</th>
|
<th>
|
访问人
|
</th>
|
<th>
|
开始时间
|
</th>
|
<th>
|
洽谈情况
|
</th>
|
<th>
|
接待人
|
</th>
|
<th>
|
结束时间
|
</th>
|
<th>
|
成交意向
|
</th>
|
</tr>
|
<asp:Repeater ID="RepFirmAccountIncomeListRecord" runat="server">
|
<ItemTemplate>
|
<tr>
|
<td>
|
<%#Container.ItemIndex + 1%>
|
</td>
|
<td>
|
<%#Eval("AccessType")%>
|
</td>
|
<td>
|
<%#Eval("StuffName")%>
|
</td>
|
<td>
|
<%#Eval("StartTime","{0:yyyy-MM-dd HH:mm}")%>
|
</td>
|
<td>
|
<div style="width: 230px; word-break: break-all; line-height: 18px;">
|
<%#Eval("AccessContent")%></div>
|
</td>
|
<td>
|
<%#Eval("Receiver")%>
|
</td>
|
<td>
|
<%#Eval("EndTime","{0:yyyy-MM-dd HH:mm}")%>
|
</td>
|
<td>
|
<%#Eval("TurnoverIntention")%>
|
</td>
|
</tr>
|
</ItemTemplate>
|
</asp:Repeater>
|
</table>
|
</form>
|
</body>
|
</html>
|