prepare($sql); $stmt->bind_param("i", $id); $stmt->execute(); $result = $stmt->get_result(); if ($row = $result->fetch_assoc()) { $customer = [ 'id' => $row['id'], 'cs_code' => textUncode($row['cs_code']), 'cs_company' => textUncode($row['cs_company']), 'cs_address' => textUncode($row['cs_address']), 'cs_deal' => textUncode($row['cs_deal']), 'cs_addtime' => $row['cs_addtime'], 'cs_belongclient' => $row['cs_belongclient'], 'cs_updatetime' => $row['cs_updatetime'], 'cs_from' => $row['cs_from'], 'cs_country' => $row['cs_country'], 'cs_type' => $row['cs_type'], 'cs_note' => htmlUnCode($row['cs_note']), 'cs_claimFrom' => $row['cs_claimFrom'], 'cs_belong' => $row['cs_belong'], 'employee_name' => $row['employee_name'] ]; // Fetch all contact records for this customer $contactSql = "SELECT cc.* FROM customer_contact cc WHERE cc.customer_id = ?"; $contactStmt = $conn->prepare($contactSql); $contactStmt->bind_param("i", $id); $contactStmt->execute(); $contactResult = $contactStmt->get_result(); $contacts = []; while ($contactRow = $contactResult->fetch_assoc()) { $contact = [ 'id' => $contactRow['id'], 'contact_name' => textUncode($contactRow['contact_name']), 'created_at' => $contactRow['created_at'], 'updated_at' => $contactRow['updated_at'] ]; // Process each contact method type (up to 3 entries each) $methodTypes = ['tel', 'email', 'whatsapp', 'wechat', 'linkedin', 'facebook', 'alibaba']; foreach ($methodTypes as $type) { for ($i = 1; $i <= 3; $i++) { $fieldBase = $type . '_' . $i; $contact[$fieldBase] = textUncode($contactRow[$fieldBase]); if ($type == 'tel' || $type == 'whatsapp') { $contact[$fieldBase . '_format'] = textUncode($contactRow[$fieldBase . '_format']); } } } $contacts[] = $contact; } // Get channel information $channelSql = "SELECT ch_name FROM qudao WHERE id = ?"; $channelStmt = $conn->prepare($channelSql); $channelStmt->bind_param("i", $customer['cs_from']); $channelStmt->execute(); $channelResult = $channelStmt->get_result(); if ($channelRow = $channelResult->fetch_assoc()) { $customer['cs_from_name'] = $channelRow['ch_name']; } else { $customer['cs_from_name'] = '未知'; } // Get country information $countrySql = "SELECT countryName FROM country WHERE id = ?"; $countryStmt = $conn->prepare($countrySql); $countryStmt->bind_param("i", $customer['cs_country']); $countryStmt->execute(); $countryResult = $countryStmt->get_result(); if ($countryRow = $countryResult->fetch_assoc()) { $customer['country_name'] = $countryRow['countryName']; } else { $customer['country_name'] = '未知'; } // Get client type information $typeSql = "SELECT businessType FROM clienttype WHERE id = ?"; $typeStmt = $conn->prepare($typeSql); $typeStmt->bind_param("i", $customer['cs_type']); $typeStmt->execute(); $typeResult = $typeStmt->get_result(); if ($typeRow = $typeResult->fetch_assoc()) { $customer['cs_type_name'] = $typeRow['businessType']; } else { $customer['cs_type_name'] = '未知'; } // Get customer tags $tagSql = "SELECT tagName FROM tagtable WHERE customerId = ?"; $tagStmt = $conn->prepare($tagSql); $tagStmt->bind_param("i", $id); $tagStmt->execute(); $tagResult = $tagStmt->get_result(); $tags = []; while ($tagRow = $tagResult->fetch_assoc()) { $tags[] = textUncode($tagRow['tagName']); } // Get order history $orderSql = "SELECT o.*, e.em_user as sales_rep FROM orders o JOIN employee e ON o.employee_id = e.id WHERE o.customer_id = ? ORDER BY o.order_date DESC"; $orderStmt = $conn->prepare($orderSql); $orderStmt->bind_param("i", $id); $orderStmt->execute(); $orderResult = $orderStmt->get_result(); $orders = []; while ($orderRow = $orderResult->fetch_assoc()) { $orders[] = $orderRow; } } else { echo ""; exit; } } else { echo ""; exit; } // Helper functions function getDealStageText($stage) { $stages = [ '0' => '无响应', '1' => '背景调查', '2' => '明确需求', '3' => '已成交' ]; return $stages[$stage] ?? '未知'; } function getOrderStatusText($status) { $statuses = [ '0' => '已取消', '1' => '待确认', '2' => '已确认', '3' => '生产中', '4' => '已发货', '5' => '已完成' ]; return $statuses[$status] ?? '未知'; } function getPaymentStatusText($status) { $statuses = [ '0' => '未付款', '1' => '部分付款', '2' => '已付清' ]; return $statuses[$status] ?? '未知'; } ?>
客户编号 | |
---|---|
公司名称 | |
地区 | |
地址 | |
业务员 | |
客户来源 | |
业务类型 | |
跟进阶段 | ' . htmlspecialchars($dealStage) . ''; ?> |
其他 | 客户的客户 |
添加时间 | |
最后更新 |
没有联系人信息
没有自定义标签
没有订单记录
销售订单号 | 下单日期 | 订单金额 | 订单状态 | 付款状态 | 业务员 |
---|---|---|---|---|---|
= 2) $statusClass = 'info'; else $statusClass = 'warning'; echo '' . htmlspecialchars($statusText) . ''; ?> | ' . htmlspecialchars($paymentText) . ''; ?> |