customerView.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. <body class="clear">
  16. <?php require_once 'panel.php'; ?>
  17. <div id="man_zone">
  18. <?php
  19. $id = $_GET['id'] ?? '';
  20. $page = $_GET['Page'] ?? '';
  21. $keys = urlencode($_GET['Keys'] ?? '');
  22. $ord = urlencode($_GET['Ord'] ?? '');
  23. $hrefstr = "?keys=" . $keys . "&Ord=" . $ord . "&Page=" . $page;
  24. if (!empty($id) && is_numeric($id)) {
  25. $sql = "SELECT * FROM customer
  26. WHERE cs_belong IN (SELECT id FROM employee WHERE em_role=" . $_SESSION['employee_id'] . ")
  27. AND customer.id=" . (int)$id;
  28. $result = $conn->query($sql);
  29. if ($result && $row = $result->fetch_assoc()) {
  30. $cs_company = textUncode($row['cs_company']);
  31. $cs_name = textUncode($row['cs_name']);
  32. $cs_country = textUncode($row['cs_country']);
  33. $cs_tel = textUncode($row['cs_tel']);
  34. $cs_email = textUncode($row['cs_email']);
  35. $cs_whatsapp = textUncode($row['cs_whatsapp']);
  36. $cs_wechat = textUncode($row['cs_wechat']);
  37. $cs_linkedin = textUncode($row['cs_linkedin']);
  38. $cs_facebook = textUncode($row['cs_facebook']);
  39. $cs_alibaba = textUncode($row['cs_alibaba']);
  40. $cs_address = textUncode($row['cs_address']);
  41. $cs_code = textUncode($row['cs_code']);
  42. $cs_deal = textUncode($row['cs_deal']);
  43. $cs_addtime = $row['cs_addtime'];
  44. $cs_updatetime = $row['cs_updatetime'];
  45. $cs_from = $row['cs_from'];
  46. $cs_note = $row['cs_note'];
  47. ?>
  48. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  49. <tbody>
  50. <tr>
  51. <th width="8%">客户编号</th>
  52. <td><?= htmlspecialchars($cs_code) ?></td>
  53. </tr>
  54. <tr>
  55. <th width="8%">公司名称</th>
  56. <td><?= htmlspecialchars($cs_company) ?></td>
  57. </tr>
  58. <tr>
  59. <th width="8%">联系人</th>
  60. <td><?= htmlspecialchars($cs_name) ?></td>
  61. </tr>
  62. <tr>
  63. <th width="8%">地区</th>
  64. <td>
  65. <?php
  66. $countryResult = $conn->query("SELECT countryCode, countryName FROM country WHERE countryCode='" .
  67. $conn->real_escape_string($cs_country) . "'");
  68. if ($countryRow = $countryResult->fetch_assoc()) {
  69. echo "(+" . htmlspecialchars($countryRow['countryCode']) . ")" .
  70. htmlspecialchars($countryRow['countryName']);
  71. }
  72. ?>
  73. </td>
  74. </tr>
  75. <tr>
  76. <th width="8%">客户来源</th>
  77. <td>
  78. <?php
  79. $qudaoResult = $conn->query("SELECT id, ch_name FROM qudao WHERE id=" . (int)$cs_from);
  80. if ($qudaoRow = $qudaoResult->fetch_assoc()) {
  81. echo htmlspecialchars($qudaoRow['ch_name']);
  82. }
  83. ?>
  84. </td>
  85. </tr>
  86. <tr>
  87. <th rowspan="7">联系方式</th>
  88. <td><?= htmlspecialchars($cs_tel) ?></td>
  89. </tr>
  90. <tr>
  91. <td><span class="wechat"><?= htmlspecialchars($cs_wechat) ?></span></td>
  92. </tr>
  93. <tr>
  94. <td><span class="whatsapp"><?= htmlspecialchars($cs_whatsapp) ?></span></td>
  95. </tr>
  96. <tr>
  97. <td><span class="mail"><?= htmlspecialchars($cs_email) ?></span></td>
  98. </tr>
  99. <tr>
  100. <td><span class="linkedin"><?= htmlspecialchars($cs_linkedin) ?></span></td>
  101. </tr>
  102. <tr>
  103. <td><span class="facebook"><?= htmlspecialchars($cs_facebook) ?></span></td>
  104. </tr>
  105. <tr>
  106. <td><span class="alibaba"><?= htmlspecialchars($cs_alibaba) ?></span></td>
  107. </tr>
  108. <tr>
  109. <th width="8%">地址</th>
  110. <td><?= htmlspecialchars($cs_address) ?></td>
  111. </tr>
  112. <tr>
  113. <th>是否成交</th>
  114. <td>
  115. <?php
  116. if ($cs_deal == 1) {
  117. echo "<span style='color:red;'>已经成交</span>";
  118. } elseif ($cs_deal == 2) {
  119. echo "无响应";
  120. } else {
  121. echo "未成交";
  122. }
  123. ?>
  124. </td>
  125. </tr>
  126. <tr>
  127. <th width="8%">备注</th>
  128. <td><?= htmlUnCode($cs_note) ?></td>
  129. </tr>
  130. <tr>
  131. <th></th>
  132. <td>
  133. <input type="button" value="返回" class="btn1"
  134. onClick="location.href='subcustomers.php<?= $hrefstr ?>'" />
  135. </td>
  136. </tr>
  137. </tbody>
  138. </table>
  139. <?php
  140. } else {
  141. echo "<script>alert('客户不存在或你没权限查看!');history.back();</script>";
  142. exit;
  143. }
  144. } else {
  145. echo "<script>alert('客户不存在!');history.back();</script>";
  146. header("Location: " . $hrefstr);
  147. exit;
  148. }
  149. ?>
  150. </div>
  151. </body>
  152. </html>