customerView.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. ?>
  5. <!DOCTYPE html>
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <title>管理区域</title>
  10. <link rel="stylesheet" href="css/common.css" type="text/css" />
  11. <script src="system/js/jquery-1.7.2.min.js"></script>
  12. <script src="js/js.js"></script>
  13. <script src="system/xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  14. </head>
  15. <style>
  16. body {
  17. margin: 0;
  18. padding: 20px;
  19. background: #fff;
  20. }
  21. #man_zone {
  22. margin-left: 0;
  23. }
  24. </style>
  25. <body class="clear">
  26. <?php // require_once 'panel.php'; ?>
  27. <div id="man_zone">
  28. <?php
  29. $id = $_GET['id'] ?? '';
  30. $page = $_GET['Page'] ?? '';
  31. $keys = urlencode($_GET['Keys'] ?? '');
  32. $ord = urlencode($_GET['Ord'] ?? '');
  33. $hrefstr = "?keys=" . $keys . "&Ord=" . $ord . "&Page=" . $page;
  34. if (!empty($id) && is_numeric($id)) {
  35. $sql = "SELECT c.*, cc.contact_name as cs_name, cc.tel as cs_tel, cc.email as cs_email,
  36. cc.whatsapp as cs_whatsapp, cc.wechat as cs_wechat, cc.linkedin as cs_linkedin,
  37. cc.facebook as cs_facebook, cc.alibaba as cs_alibaba
  38. FROM customer c
  39. LEFT JOIN customer_contact cc ON c.id = cc.customer_id
  40. WHERE c.cs_belong IN (SELECT id FROM employee WHERE em_role=" . $_SESSION['employee_id'] . ")
  41. AND c.id=" . (int)$id;
  42. $result = $conn->query($sql);
  43. if ($result && $row = $result->fetch_assoc()) {
  44. $cs_company = textUncode($row['cs_company']);
  45. $cs_name = textUncode($row['cs_name']);
  46. $cs_country = textUncode($row['cs_country']);
  47. $cs_tel = textUncode($row['cs_tel']);
  48. $cs_email = textUncode($row['cs_email']);
  49. $cs_whatsapp = textUncode($row['cs_whatsapp']);
  50. $cs_wechat = textUncode($row['cs_wechat']);
  51. $cs_linkedin = textUncode($row['cs_linkedin']);
  52. $cs_facebook = textUncode($row['cs_facebook']);
  53. $cs_alibaba = textUncode($row['cs_alibaba']);
  54. $cs_address = textUncode($row['cs_address']);
  55. $cs_code = textUncode($row['cs_code']);
  56. $cs_deal = textUncode($row['cs_deal']);
  57. $cs_addtime = $row['cs_addtime'];
  58. $cs_updatetime = $row['cs_updatetime'];
  59. $cs_from = $row['cs_from'];
  60. $cs_note = $row['cs_note'];
  61. ?>
  62. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  63. <tbody>
  64. <tr>
  65. <th width="8%">客户编号</th>
  66. <td><?= htmlspecialcharsFix($cs_code) ?></td>
  67. </tr>
  68. <tr>
  69. <th width="8%">公司名称</th>
  70. <td><?= htmlspecialcharsFix($cs_company) ?></td>
  71. </tr>
  72. <tr>
  73. <th width="8%">联系人</th>
  74. <td><?= htmlspecialcharsFix($cs_name) ?></td>
  75. </tr>
  76. <tr>
  77. <th width="8%">地区</th>
  78. <td>
  79. <?php
  80. $countryResult = $conn->query("SELECT countryCode, countryName FROM country WHERE countryCode='" .
  81. $conn->real_escape_string($cs_country) . "'");
  82. if ($countryRow = $countryResult->fetch_assoc()) {
  83. echo "(+" . htmlspecialcharsFix($countryRow['countryCode']) . ")" .
  84. htmlspecialcharsFix($countryRow['countryName']);
  85. }
  86. ?>
  87. </td>
  88. </tr>
  89. <tr>
  90. <th width="8%">客户来源</th>
  91. <td>
  92. <?php
  93. $qudaoResult = $conn->query("SELECT id, ch_name FROM qudao WHERE id=" . (int)$cs_from);
  94. if ($qudaoRow = $qudaoResult->fetch_assoc()) {
  95. echo htmlspecialcharsFix($qudaoRow['ch_name']);
  96. }
  97. ?>
  98. </td>
  99. </tr>
  100. <tr>
  101. <th rowspan="7">联系方式</th>
  102. <td><?= htmlspecialcharsFix($cs_tel) ?></td>
  103. </tr>
  104. <tr>
  105. <td><span class="wechat"><?= htmlspecialcharsFix($cs_wechat) ?></span></td>
  106. </tr>
  107. <tr>
  108. <td><span class="whatsapp"><?= htmlspecialcharsFix($cs_whatsapp) ?></span></td>
  109. </tr>
  110. <tr>
  111. <td><span class="mail"><?= htmlspecialcharsFix($cs_email) ?></span></td>
  112. </tr>
  113. <tr>
  114. <td><span class="linkedin"><?= htmlspecialcharsFix($cs_linkedin) ?></span></td>
  115. </tr>
  116. <tr>
  117. <td><span class="facebook"><?= htmlspecialcharsFix($cs_facebook) ?></span></td>
  118. </tr>
  119. <tr>
  120. <td><span class="alibaba"><?= htmlspecialcharsFix($cs_alibaba) ?></span></td>
  121. </tr>
  122. <tr>
  123. <th width="8%">地址</th>
  124. <td><?= htmlspecialcharsFix($cs_address) ?></td>
  125. </tr>
  126. <tr>
  127. <th>是否成交</th>
  128. <td>
  129. <?php
  130. if ($cs_deal == 1) {
  131. echo "<span style='color:red;'>已经成交</span>";
  132. } elseif ($cs_deal == 2) {
  133. echo "无响应";
  134. } else {
  135. echo "未成交";
  136. }
  137. ?>
  138. </td>
  139. </tr>
  140. <tr>
  141. <th width="8%">备注</th>
  142. <td><?= htmlUnCode($cs_note) ?></td>
  143. </tr>
  144. <tr>
  145. <th></th>
  146. <td>
  147. <input type="button" value="返回" class="btn1"
  148. onClick="location.href='subcustomers.php<?= $hrefstr ?>'" />
  149. </td>
  150. </tr>
  151. </tbody>
  152. </table>
  153. <?php
  154. } else {
  155. echo "<script>alert('客户不存在或你没权限查看!');history.back();</script>";
  156. exit;
  157. }
  158. } else {
  159. echo "<script>alert('客户不存在!');history.back();</script>";
  160. header("Location: " . $hrefstr);
  161. exit;
  162. }
  163. ?>
  164. </div>
  165. </body>
  166. </html>