customerView.php 5.8 KB

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