customer_detail.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. $id = $_GET['id'] ?? '';
  5. $from_warning = isset($_GET['from_warning']) ? true : false;
  6. // Validate and fetch customer data
  7. if (!empty($id) && is_numeric($id)) {
  8. // Fetch customer basic information
  9. $sql = "SELECT c.*, e.em_user as employee_name FROM customer c
  10. JOIN employee e ON c.cs_belong = e.id
  11. WHERE c.id = ?";
  12. $stmt = $conn->prepare($sql);
  13. $stmt->bind_param("i", $id);
  14. $stmt->execute();
  15. $result = $stmt->get_result();
  16. if ($row = $result->fetch_assoc()) {
  17. $customer = [
  18. 'id' => $row['id'],
  19. 'cs_code' => textUncode($row['cs_code']),
  20. 'cs_company' => textUncode($row['cs_company']),
  21. 'cs_address' => textUncode($row['cs_address']),
  22. 'cs_deal' => textUncode($row['cs_deal']),
  23. 'cs_addtime' => $row['cs_addtime'],
  24. 'cs_belongclient' => $row['cs_belongclient'],
  25. 'cs_updatetime' => $row['cs_updatetime'],
  26. 'cs_from' => $row['cs_from'],
  27. 'cs_country' => $row['cs_country'],
  28. 'cs_type' => $row['cs_type'],
  29. 'cs_note' => htmlUnCode($row['cs_note']),
  30. 'cs_claimFrom' => $row['cs_claimFrom'],
  31. 'cs_belong' => $row['cs_belong'],
  32. 'employee_name' => $row['employee_name']
  33. ];
  34. // Fetch all contact records for this customer
  35. $contactSql = "SELECT cc.* FROM customer_contact cc WHERE cc.customer_id = ?";
  36. $contactStmt = $conn->prepare($contactSql);
  37. $contactStmt->bind_param("i", $id);
  38. $contactStmt->execute();
  39. $contactResult = $contactStmt->get_result();
  40. $contacts = [];
  41. while ($contactRow = $contactResult->fetch_assoc()) {
  42. $contact = [
  43. 'id' => $contactRow['id'],
  44. 'contact_name' => textUncode($contactRow['contact_name']),
  45. 'created_at' => $contactRow['created_at'],
  46. 'updated_at' => $contactRow['updated_at']
  47. ];
  48. // Process each contact method type (up to 3 entries each)
  49. $methodTypes = ['tel', 'email', 'whatsapp', 'wechat', 'linkedin', 'facebook', 'alibaba'];
  50. foreach ($methodTypes as $type) {
  51. for ($i = 1; $i <= 3; $i++) {
  52. $fieldBase = $type . '_' . $i;
  53. $contact[$fieldBase] = textUncode($contactRow[$fieldBase]);
  54. if ($type == 'tel' || $type == 'whatsapp') {
  55. $contact[$fieldBase . '_format'] = textUncode($contactRow[$fieldBase . '_format']);
  56. }
  57. }
  58. }
  59. $contacts[] = $contact;
  60. }
  61. // Get channel information
  62. $channelSql = "SELECT ch_name FROM qudao WHERE id = ?";
  63. $channelStmt = $conn->prepare($channelSql);
  64. $channelStmt->bind_param("i", $customer['cs_from']);
  65. $channelStmt->execute();
  66. $channelResult = $channelStmt->get_result();
  67. if ($channelRow = $channelResult->fetch_assoc()) {
  68. $customer['cs_from_name'] = $channelRow['ch_name'];
  69. } else {
  70. $customer['cs_from_name'] = '未知';
  71. }
  72. // Get country information
  73. $countrySql = "SELECT countryName FROM country WHERE id = ?";
  74. $countryStmt = $conn->prepare($countrySql);
  75. $countryStmt->bind_param("i", $customer['cs_country']);
  76. $countryStmt->execute();
  77. $countryResult = $countryStmt->get_result();
  78. if ($countryRow = $countryResult->fetch_assoc()) {
  79. $customer['country_name'] = $countryRow['countryName'];
  80. } else {
  81. $customer['country_name'] = '未知';
  82. }
  83. // Get client type information
  84. $typeSql = "SELECT businessType FROM clienttype WHERE id = ?";
  85. $typeStmt = $conn->prepare($typeSql);
  86. $typeStmt->bind_param("i", $customer['cs_type']);
  87. $typeStmt->execute();
  88. $typeResult = $typeStmt->get_result();
  89. if ($typeRow = $typeResult->fetch_assoc()) {
  90. $customer['cs_type_name'] = $typeRow['businessType'];
  91. } else {
  92. $customer['cs_type_name'] = '未知';
  93. }
  94. // Get customer tags
  95. $tagSql = "SELECT tagName FROM tagtable WHERE customerId = ?";
  96. $tagStmt = $conn->prepare($tagSql);
  97. $tagStmt->bind_param("i", $id);
  98. $tagStmt->execute();
  99. $tagResult = $tagStmt->get_result();
  100. $tags = [];
  101. while ($tagRow = $tagResult->fetch_assoc()) {
  102. $tags[] = textUncode($tagRow['tagName']);
  103. }
  104. // Get order history
  105. $orderSql = "SELECT o.*, e.em_user as sales_rep
  106. FROM orders o
  107. JOIN employee e ON o.employee_id = e.id
  108. WHERE o.customer_id = ?
  109. ORDER BY o.order_date DESC";
  110. $orderStmt = $conn->prepare($orderSql);
  111. $orderStmt->bind_param("i", $id);
  112. $orderStmt->execute();
  113. $orderResult = $orderStmt->get_result();
  114. $orders = [];
  115. while ($orderRow = $orderResult->fetch_assoc()) {
  116. $orders[] = $orderRow;
  117. }
  118. } else {
  119. echo "<script>alert('客户不存在!');history.back();</script>";
  120. exit;
  121. }
  122. } else {
  123. echo "<script>alert('客户不存在!');history.back();</script>";
  124. exit;
  125. }
  126. // Helper functions
  127. function getDealStageText($stage) {
  128. $stages = [
  129. '0' => '无响应',
  130. '1' => '背景调查',
  131. '2' => '明确需求',
  132. '3' => '已成交'
  133. ];
  134. return $stages[$stage] ?? '未知';
  135. }
  136. function getOrderStatusText($status) {
  137. $statuses = [
  138. '0' => '已取消',
  139. '1' => '待确认',
  140. '2' => '已确认',
  141. '3' => '生产中',
  142. '4' => '已发货',
  143. '5' => '已完成'
  144. ];
  145. return $statuses[$status] ?? '未知';
  146. }
  147. function getPaymentStatusText($status) {
  148. $statuses = [
  149. '0' => '未付款',
  150. '1' => '部分付款',
  151. '2' => '已付清'
  152. ];
  153. return $statuses[$status] ?? '未知';
  154. }
  155. ?>
  156. <!DOCTYPE html>
  157. <html xmlns="http://www.w3.org/1999/xhtml">
  158. <head>
  159. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  160. <title>客户详情</title>
  161. <link rel="stylesheet" href="css/common.css" type="text/css" />
  162. <script src="system/js/jquery-1.7.2.min.js"></script>
  163. <script src="js/js.js"></script>
  164. <style>
  165. body {
  166. margin: 0;
  167. padding: 20px;
  168. background: #fff;
  169. }
  170. #man_zone {
  171. margin-left: 0;
  172. }
  173. .detail-container {
  174. margin-bottom: 20px;
  175. width: 100%;
  176. }
  177. .section-title {
  178. font-size: 18px;
  179. font-weight: bold;
  180. margin: 15px 0 10px 0;
  181. padding-bottom: 5px;
  182. border-bottom: 1px solid #eee;
  183. }
  184. .data-table {
  185. width: 100%;
  186. border-collapse: collapse;
  187. margin-bottom: 20px;
  188. }
  189. .data-table th {
  190. background-color: #f5f5f5;
  191. padding: 8px;
  192. text-align: left;
  193. font-weight: bold;
  194. width: 150px;
  195. }
  196. .data-table td {
  197. padding: 8px;
  198. vertical-align: top;
  199. border-bottom: 1px solid #eee;
  200. }
  201. .contact-card {
  202. border: 1px solid #eee;
  203. padding: 15px;
  204. margin-bottom: 15px;
  205. border-radius: 5px;
  206. background-color: #fafafa;
  207. }
  208. .contact-card h3 {
  209. margin-top: 0;
  210. margin-bottom: 10px;
  211. font-size: 16px;
  212. }
  213. .contact-method {
  214. margin-bottom: 8px;
  215. }
  216. .contact-type {
  217. font-weight: bold;
  218. margin-right: 10px;
  219. display: inline-block;
  220. min-width: 80px;
  221. }
  222. .tag-container {
  223. display: flex;
  224. flex-wrap: wrap;
  225. gap: 8px;
  226. }
  227. .tag {
  228. background-color: #f1f1f1;
  229. padding: 4px 8px;
  230. border-radius: 4px;
  231. font-size: 12px;
  232. }
  233. .orders-table {
  234. width: 100%;
  235. border-collapse: collapse;
  236. }
  237. .orders-table th, .orders-table td {
  238. padding: 8px;
  239. text-align: left;
  240. border: 1px solid #ddd;
  241. }
  242. .orders-table th {
  243. background-color: #f5f5f5;
  244. }
  245. .orders-table tr:nth-child(even) {
  246. background-color: #fafafa;
  247. }
  248. .btn-container {
  249. margin-top: 20px;
  250. display: flex;
  251. gap: 10px;
  252. }
  253. .btn {
  254. padding: 8px 16px;
  255. border-radius: 4px;
  256. cursor: pointer;
  257. text-decoration: none;
  258. display: inline-block;
  259. text-align: center;
  260. }
  261. .btn-primary {
  262. background-color: #2196f3;
  263. color: white;
  264. border: none;
  265. }
  266. .btn-secondary {
  267. background-color: #f5f5f5;
  268. color: #333;
  269. border: 1px solid #ddd;
  270. }
  271. .status-badge {
  272. display: inline-block;
  273. padding: 3px 8px;
  274. border-radius: 12px;
  275. font-size: 12px;
  276. background-color: #e0e0e0;
  277. }
  278. .status-badge.success {
  279. background-color: #4caf50;
  280. color: white;
  281. }
  282. .status-badge.warning {
  283. background-color: #ff9800;
  284. color: white;
  285. }
  286. .status-badge.danger {
  287. background-color: #f44336;
  288. color: white;
  289. }
  290. .status-badge.info {
  291. background-color: #2196f3;
  292. color: white;
  293. }
  294. </style>
  295. </head>
  296. <body class="clear">
  297. <?php // require_once 'panel.php'; ?>
  298. <div id="man_zone">
  299. <div class="detail-container">
  300. <h1>客户详情</h1>
  301. <!-- 基本信息 -->
  302. <div class="section-title">基本信息</div>
  303. <table class="data-table">
  304. <tr>
  305. <th>客户编号</th>
  306. <td><?php echo htmlspecialchars($customer['cs_code']); ?></td>
  307. </tr>
  308. <tr>
  309. <th>公司名称</th>
  310. <td><?php echo htmlspecialchars($customer['cs_company']); ?></td>
  311. </tr>
  312. <tr>
  313. <th>地区</th>
  314. <td><?php echo htmlspecialchars($customer['country_name']); ?></td>
  315. </tr>
  316. <tr>
  317. <th>地址</th>
  318. <td><?php echo htmlspecialchars($customer['cs_address']); ?></td>
  319. </tr>
  320. <tr>
  321. <th>业务员</th>
  322. <td><?php echo htmlspecialchars($customer['employee_name']); ?></td>
  323. </tr>
  324. <tr>
  325. <th>客户来源</th>
  326. <td><?php echo htmlspecialchars($customer['cs_from_name']); ?></td>
  327. </tr>
  328. <tr>
  329. <th>业务类型</th>
  330. <td><?php echo htmlspecialchars($customer['cs_type_name']); ?></td>
  331. </tr>
  332. <tr>
  333. <th>跟进阶段</th>
  334. <td>
  335. <?php
  336. $dealStage = getDealStageText($customer['cs_deal']);
  337. $dealClass = $customer['cs_deal'] == 3 ? 'success' : ($customer['cs_deal'] == 0 ? 'danger' : 'info');
  338. echo '<span class="status-badge ' . $dealClass . '">' . htmlspecialchars($dealStage) . '</span>';
  339. ?>
  340. </td>
  341. </tr>
  342. <tr>
  343. <th>其他</th>
  344. <td>
  345. <?php if ($customer['cs_belongclient'] == 1): ?>
  346. <span class="status-badge">客户的客户</span>
  347. <?php endif; ?>
  348. </td>
  349. </tr>
  350. <tr>
  351. <th>添加时间</th>
  352. <td><?php echo $customer['cs_addtime']; ?></td>
  353. </tr>
  354. <tr>
  355. <th>最后更新</th>
  356. <td><?php echo $customer['cs_updatetime']; ?></td>
  357. </tr>
  358. </table>
  359. <!-- 联系人信息 -->
  360. <div class="section-title">联系人信息</div>
  361. <?php if (empty($contacts)): ?>
  362. <p>没有联系人信息</p>
  363. <?php else: ?>
  364. <?php foreach ($contacts as $contact): ?>
  365. <div class="contact-card">
  366. <h3><?php echo htmlspecialchars($contact['contact_name']); ?></h3>
  367. <?php
  368. $methodTypes = [
  369. 'tel' => '电话',
  370. 'wechat' => '微信',
  371. 'whatsapp' => 'WhatsApp',
  372. 'email' => '邮箱',
  373. 'linkedin' => '领英',
  374. 'facebook' => 'Facebook',
  375. 'alibaba' => '阿里巴巴'
  376. ];
  377. foreach ($methodTypes as $type => $label) {
  378. for ($i = 1; $i <= 3; $i++) {
  379. $fieldName = $type . '_' . $i;
  380. if (!empty($contact[$fieldName])) {
  381. echo '<div class="contact-method">';
  382. echo '<span class="contact-type">' . $label . ':</span>';
  383. echo '<span>' . htmlspecialchars($contact[$fieldName]) . '</span>';
  384. echo '</div>';
  385. }
  386. }
  387. }
  388. ?>
  389. </div>
  390. <?php endforeach; ?>
  391. <?php endif; ?>
  392. <!-- 自定义标签 -->
  393. <div class="section-title">自定义标签</div>
  394. <div class="tag-container">
  395. <?php if (empty($tags)): ?>
  396. <p>没有自定义标签</p>
  397. <?php else: ?>
  398. <?php foreach ($tags as $tag): ?>
  399. <span class="tag"><?php echo htmlspecialchars($tag); ?></span>
  400. <?php endforeach; ?>
  401. <?php endif; ?>
  402. </div>
  403. <!-- 备注信息 -->
  404. <div class="section-title">备注信息</div>
  405. <div><?php echo empty($customer['cs_note']) ? '无备注' : $customer['cs_note']; ?></div>
  406. <!-- 订单历史 -->
  407. <div class="section-title">订单历史</div>
  408. <?php if (empty($orders)): ?>
  409. <p>没有订单记录</p>
  410. <?php else: ?>
  411. <table class="orders-table">
  412. <thead>
  413. <tr>
  414. <th>销售订单号</th>
  415. <th>下单日期</th>
  416. <th>订单金额</th>
  417. <th>订单状态</th>
  418. <th>付款状态</th>
  419. <th>业务员</th>
  420. </tr>
  421. </thead>
  422. <tbody>
  423. <?php foreach ($orders as $order): ?>
  424. <tr>
  425. <td><?php echo htmlspecialchars($order['order_code']); ?></td>
  426. <td><?php echo date('Y-m-d', strtotime($order['order_date'])); ?></td>
  427. <td><?php echo htmlspecialchars($order['currency']) . ' ' . number_format($order['total_amount'], 2); ?></td>
  428. <td>
  429. <?php
  430. $statusText = getOrderStatusText($order['order_status']);
  431. $statusClass = '';
  432. if ($order['order_status'] == 5) $statusClass = 'success';
  433. else if ($order['order_status'] == 0) $statusClass = 'danger';
  434. else if ($order['order_status'] >= 2) $statusClass = 'info';
  435. else $statusClass = 'warning';
  436. echo '<span class="status-badge ' . $statusClass . '">' . htmlspecialchars($statusText) . '</span>';
  437. ?>
  438. </td>
  439. <td>
  440. <?php
  441. $paymentText = getPaymentStatusText($order['payment_status']);
  442. $paymentClass = '';
  443. if ($order['payment_status'] == 2) $paymentClass = 'success';
  444. else if ($order['payment_status'] == 1) $paymentClass = 'warning';
  445. else $paymentClass = 'danger';
  446. echo '<span class="status-badge ' . $paymentClass . '">' . htmlspecialchars($paymentText) . '</span>';
  447. ?>
  448. </td>
  449. <td><?php echo htmlspecialchars($order['sales_rep']); ?></td>
  450. </tr>
  451. <?php endforeach; ?>
  452. </tbody>
  453. </table>
  454. <?php endif; ?>
  455. <!-- 按钮 -->
  456. <div class="btn-container">
  457. <?php if ($from_warning): ?>
  458. <a href="statistics_order_warnings.php" class="btn btn-secondary">返回预警列表</a>
  459. <?php else: ?>
  460. <a href="javascript:history.back();" class="btn btn-secondary">返回</a>
  461. <?php endif; ?>
  462. <?php if ($_SESSION['employee_id'] == $customer['cs_belong']): ?>
  463. <a href="customerEdit.php?id=<?php echo $id; ?>" class="btn btn-primary">编辑客户</a>
  464. <?php endif; ?>
  465. </div>
  466. </div>
  467. </div>
  468. </body>
  469. </html>