customerView.asp 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <!--#include file="Conn.asp"--><%Checklogin()%>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>管理区域</title>
  7. <link rel="stylesheet" href="css/common.css" type="text/css" />
  8. <script language="javascript" src="system/js/jquery-1.7.2.min.js"></script>
  9. <script type="text/javascript" src="js/js.js"></script>
  10. <script type="text/javascript" src="system/xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  11. </head>
  12. <body class="clear">
  13. <!--#include file="panel.asp"-->
  14. <div id="man_zone">
  15. <%
  16. id = Request.QueryString("id")
  17. Page = Request.QueryString("Page")
  18. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  19. Ord=Server.UrlEnCode(Request.QueryString("Ord"))
  20. hrefstr = "?keys="&Keys&"&Ord="&Ord&"&Page="&Page
  21. If id<>"" And IsNumeric(id) Then
  22. Set Rs = Server.CreateObject("ADODB.RecordSet")
  23. Rs.Open "Select * From customer Where cs_belong in (Select id from employee where em_role="&Session("employee_id")&" ) and customer.id="&id,Conn,1,1
  24. If Not Rs.Bof And Not Rs.Eof Then
  25. cs_company=TextUncode(Rs("cs_company"))
  26. cs_name=TextUncode(Rs("cs_name"))
  27. cs_country=TextUncode(Rs("cs_country"))
  28. cs_tel=TextUncode(Rs("cs_tel"))
  29. cs_email=TextUncode(Rs("cs_email"))
  30. cs_whatsapp=TextUncode(Rs("cs_whatsapp"))
  31. cs_wechat=TextUncode(Rs("cs_wechat"))
  32. cs_linkedin=TextUncode(Rs("cs_linkedin"))
  33. cs_facebook=TextUncode(Rs("cs_facebook"))
  34. cs_alibaba=TextUncode(Rs("cs_alibaba"))
  35. cs_address=TextUncode(Rs("cs_address"))
  36. cs_code=TextUncode(Rs("cs_code"))
  37. cs_deal=TextUncode(Rs("cs_deal"))
  38. cs_addtime=Rs("cs_addtime")
  39. cs_updatetime=Rs("cs_updatetime")
  40. cs_from=Rs("cs_from")
  41. cs_note=Rs("cs_note")
  42. Else
  43. Rs.Close:Set Rs=Nothing
  44. Conn.Close:Set Conn=Nothing
  45. response.write "<script>alert('客户不存在或你没权限查看!');history.back();</script>"
  46. response.End
  47. End If
  48. Rs.Close:Set Rs=Nothing
  49. Else
  50. response.write "<script>alert('客户不存在!');history.back();</script>"
  51. Rs.Close:Set Rs=Nothing
  52. Conn.Close:Set Conn=Nothing
  53. response.redirect hrefstr
  54. End If
  55. %>
  56. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  57. <tbody>
  58. <tr>
  59. <th width="8%">客户编号</th>
  60. <td><%=cs_code%></td>
  61. </tr>
  62. <tr>
  63. <th width="8%">公司名称</th>
  64. <td><%=cs_company%></td>
  65. </tr>
  66. <tr>
  67. <th width="8%">联系人</th>
  68. <td><%=cs_name%></td>
  69. </tr>
  70. <tr>
  71. <th width="8%">地区</th>
  72. <td>
  73. <% Set Rs=server.CreateObject("ADODB.RecordSet")
  74. Rs.Open "Select countryCode,countryName from country where countryCode='"&cs_country&"'",conn,1,1
  75. Do while Not Rs.bof And Not Rs.eof
  76. %>
  77. (+<%=Rs("countryCode")%>)<%=Rs("countryName")%>
  78. <%
  79. Rs.moveNext
  80. loop
  81. Rs.close
  82. %>
  83. </td>
  84. </tr>
  85. <tr>
  86. <th width="8%">客户来源 </th>
  87. <td>
  88. <% Rs.Open "Select id,ch_name from qudao where id="&cs_from,conn,1,1
  89. Do while Not Rs.bof And Not Rs.eof
  90. %>
  91. <%=Rs("ch_name")%>
  92. <%
  93. Rs.moveNext
  94. loop
  95. Rs.close
  96. %>
  97. </td>
  98. </tr>
  99. <tr >
  100. <th rowspan="7">联系方式</th>
  101. <td><%=cs_tel%></td>
  102. </tr>
  103. <tr>
  104. <td><span class="wechat"><%=cs_wechat%></span></td>
  105. </tr>
  106. <tr>
  107. <td><span class="whatsapp"><%=cs_whatsapp%></span></td>
  108. </tr>
  109. <tr>
  110. <td><span class="mail"><%=cs_email%></span></td>
  111. </tr>
  112. <tr>
  113. <td><span class="linkedin"><%=cs_linkedin%></span></td>
  114. </tr>
  115. <tr>
  116. <td><span class="facebook"><%=cs_facebook%></span></td>
  117. </tr>
  118. <tr>
  119. <td><span class="alibaba"><%=cs_alibaba%></span></td>
  120. </tr>
  121. <tr>
  122. <th width="8%">地址 </th>
  123. <td><%=cs_address%></td>
  124. </tr>
  125. <tr>
  126. <th>是否成交</th>
  127. <td>
  128. <%If cs_deal=1 Then
  129. Response.write "<span style='color:red;'>已经成交</span>"
  130. elseif cs_deal=2 Then
  131. Response.write"无响应"
  132. else
  133. Response.write"未成交"
  134. End if
  135. %>
  136. </td>
  137. </tr>
  138. <tr>
  139. <th width="8%">备注</th>
  140. <td>
  141. <%=HtmlUnCode(Rs("cs_note"))%>
  142. </td>
  143. </tr>
  144. <tr>
  145. <th></th>
  146. <td><input type="button" value="返回" class="btn1" onClick="location.href='subcustomers.asp<%=hrefstr%>'" /></td>
  147. </tr>
  148. </tbody>
  149. </table>
  150. </div>
  151. </body>
  152. </html>
  153. <%Conn.Close:Set Conn=Nothing%>