|
@@ -127,59 +127,62 @@ if (empty($cs_code)) {
|
|
}
|
|
}
|
|
|
|
|
|
// Check for duplicate customer information
|
|
// Check for duplicate customer information
|
|
-$checkStr = "SELECT * FROM customer WHERE cs_belong != " . $_SESSION['employee_id'] . " AND (id = 0 ";
|
|
|
|
|
|
+$checkStr = "SELECT c.*, cc.tel, cc.tel_format, cc.email, cc.whatsapp, cc.whatsapp_format, cc.wechat, cc.linkedin, cc.facebook, cc.alibaba
|
|
|
|
+ FROM customer c
|
|
|
|
+ LEFT JOIN customer_contact cc ON c.id = cc.customer_id
|
|
|
|
+ WHERE c.cs_belong != " . $_SESSION['employee_id'] . " AND (c.id = 0 ";
|
|
|
|
|
|
$Dupli = "";
|
|
$Dupli = "";
|
|
|
|
|
|
if (!empty($cs_tel)) {
|
|
if (!empty($cs_tel)) {
|
|
- $checkStr .= " OR cs_telformat LIKE '%" . substr($cs_telformat, 3, 9) . "%'" .
|
|
|
|
- " OR cs_wechat LIKE '%" . substr($cs_telformat, 3, 9) . "%'" .
|
|
|
|
- " OR cs_whatsappformat LIKE '%" . $cs_telformat . "%'";
|
|
|
|
|
|
+ $checkStr .= " OR cc.tel_format LIKE '%" . substr($cs_telformat, 3, 9) . "%'" .
|
|
|
|
+ " OR cc.wechat LIKE '%" . substr($cs_telformat, 3, 9) . "%'" .
|
|
|
|
+ " OR cc.whatsapp_format LIKE '%" . $cs_telformat . "%'";
|
|
$Dupli .= "电话:" . $cs_tel;
|
|
$Dupli .= "电话:" . $cs_tel;
|
|
}
|
|
}
|
|
|
|
|
|
if (!empty($cs_email)) {
|
|
if (!empty($cs_email)) {
|
|
- $checkStr .= " OR cs_email = '" . $conn->real_escape_string($cs_email) . "'";
|
|
|
|
|
|
+ $checkStr .= " OR cc.email = '" . $conn->real_escape_string($cs_email) . "'";
|
|
$Dupli .= "邮箱:" . $cs_email;
|
|
$Dupli .= "邮箱:" . $cs_email;
|
|
}
|
|
}
|
|
|
|
|
|
if (!empty($cs_whatsapp)) {
|
|
if (!empty($cs_whatsapp)) {
|
|
- $checkStr .= " OR cs_whatsappformat LIKE '%" . substr($cs_whatsappformat, 3, 9) . "%'" .
|
|
|
|
- " OR cs_telformat LIKE '%" . substr($cs_whatsappformat, 3, 9) . "%'";
|
|
|
|
|
|
+ $checkStr .= " OR cc.whatsapp_format LIKE '%" . substr($cs_whatsappformat, 3, 9) . "%'" .
|
|
|
|
+ " OR cc.tel_format LIKE '%" . substr($cs_whatsappformat, 3, 9) . "%'";
|
|
$Dupli .= "WhatsApp:" . $cs_whatsapp;
|
|
$Dupli .= "WhatsApp:" . $cs_whatsapp;
|
|
}
|
|
}
|
|
|
|
|
|
if (!empty($cs_wechat)) {
|
|
if (!empty($cs_wechat)) {
|
|
if (strlen($cs_wechat) < 10) {
|
|
if (strlen($cs_wechat) < 10) {
|
|
- $checkStr .= " OR cs_wechat LIKE '%" . $conn->real_escape_string($cs_wechat) . "%'" .
|
|
|
|
- " OR cs_telformat LIKE '%" . $conn->real_escape_string($cs_wechat) . "%'";
|
|
|
|
|
|
+ $checkStr .= " OR cc.wechat LIKE '%" . $conn->real_escape_string($cs_wechat) . "%'" .
|
|
|
|
+ " OR cc.tel_format LIKE '%" . $conn->real_escape_string($cs_wechat) . "%'";
|
|
} else {
|
|
} else {
|
|
- $checkStr .= " OR cs_wechat LIKE '%" . substr($cs_wechat, 2, 12) . "%'" .
|
|
|
|
- " OR cs_telformat LIKE '%" . substr($cs_wechat, 2, 12) . "%'";
|
|
|
|
|
|
+ $checkStr .= " OR cc.wechat LIKE '%" . substr($cs_wechat, 2, 12) . "%'" .
|
|
|
|
+ " OR cc.tel_format LIKE '%" . substr($cs_wechat, 2, 12) . "%'";
|
|
}
|
|
}
|
|
$Dupli .= "微信:" . $cs_wechat;
|
|
$Dupli .= "微信:" . $cs_wechat;
|
|
}
|
|
}
|
|
|
|
|
|
if (!empty($cs_linkedin)) {
|
|
if (!empty($cs_linkedin)) {
|
|
- $checkStr .= " OR cs_linkedin LIKE '%" . $conn->real_escape_string($cs_linkedin) . "%'";
|
|
|
|
|
|
+ $checkStr .= " OR cc.linkedin LIKE '%" . $conn->real_escape_string($cs_linkedin) . "%'";
|
|
$Dupli .= "Linked:" . $cs_linkedin;
|
|
$Dupli .= "Linked:" . $cs_linkedin;
|
|
}
|
|
}
|
|
|
|
|
|
if (!empty($cs_facebook)) {
|
|
if (!empty($cs_facebook)) {
|
|
- $checkStr .= " OR cs_facebook LIKE '%" . $conn->real_escape_string($cs_facebook) . "%'";
|
|
|
|
|
|
+ $checkStr .= " OR cc.facebook LIKE '%" . $conn->real_escape_string($cs_facebook) . "%'";
|
|
$Dupli .= "Facebook:" . $cs_facebook;
|
|
$Dupli .= "Facebook:" . $cs_facebook;
|
|
}
|
|
}
|
|
|
|
|
|
if (!empty($cs_alibaba)) {
|
|
if (!empty($cs_alibaba)) {
|
|
if (strlen($cs_alibaba) < 10) {
|
|
if (strlen($cs_alibaba) < 10) {
|
|
- $checkStr .= " OR cs_alibaba LIKE '" . $conn->real_escape_string($cs_alibaba) . "'";
|
|
|
|
|
|
+ $checkStr .= " OR cc.alibaba LIKE '" . $conn->real_escape_string($cs_alibaba) . "'";
|
|
} else {
|
|
} else {
|
|
- $checkStr .= " OR cs_alibaba LIKE '%" . substr($cs_alibaba, 3, 12) . "%'";
|
|
|
|
|
|
+ $checkStr .= " OR cc.alibaba LIKE '%" . substr($cs_alibaba, 3, 12) . "%'";
|
|
}
|
|
}
|
|
$Dupli .= "阿里旺旺:" . $cs_alibaba;
|
|
$Dupli .= "阿里旺旺:" . $cs_alibaba;
|
|
}
|
|
}
|
|
|
|
|
|
-$checkStr .= " ) ORDER BY id ASC";
|
|
|
|
|
|
+$checkStr .= " ) ORDER BY c.id ASC";
|
|
|
|
|
|
if ($allowedit != 1) {
|
|
if ($allowedit != 1) {
|
|
$result = $conn->query($checkStr);
|
|
$result = $conn->query($checkStr);
|
|
@@ -218,28 +221,17 @@ if ($act == "editSave" || $allowedit == 1) {
|
|
$hrefstr = "/customers.php?Keys=" . $keys . "&fliterBusiness=" . $fliterBusiness .
|
|
$hrefstr = "/customers.php?Keys=" . $keys . "&fliterBusiness=" . $fliterBusiness .
|
|
"&fliterDeal=" . $fliterDeal . "&Page=" . $page;
|
|
"&fliterDeal=" . $fliterDeal . "&Page=" . $page;
|
|
|
|
|
|
- // 直接使用SQL拼接,与ASP版本保持一致
|
|
|
|
|
|
+ // 更新客户基本信息
|
|
$updateSql = "UPDATE customer SET
|
|
$updateSql = "UPDATE customer SET
|
|
cs_code='" . $conn->real_escape_string($cs_code) . "',
|
|
cs_code='" . $conn->real_escape_string($cs_code) . "',
|
|
cs_company='" . $conn->real_escape_string($cs_company) . "',
|
|
cs_company='" . $conn->real_escape_string($cs_company) . "',
|
|
- cs_name='" . $conn->real_escape_string($cs_name) . "',
|
|
|
|
cs_country=" . $cs_country . ",
|
|
cs_country=" . $cs_country . ",
|
|
cs_from=" . $cs_from . ",
|
|
cs_from=" . $cs_from . ",
|
|
- cs_tel='" . $conn->real_escape_string($cs_tel) . "',
|
|
|
|
- cs_wechat='" . $conn->real_escape_string($cs_wechat) . "',
|
|
|
|
- cs_whatsapp='" . $conn->real_escape_string($cs_whatsapp) . "',
|
|
|
|
- cs_email='" . $conn->real_escape_string($cs_email) . "',
|
|
|
|
- cs_linkedin='" . $conn->real_escape_string($cs_linkedin) . "',
|
|
|
|
- cs_facebook='" . $conn->real_escape_string($cs_facebook) . "',
|
|
|
|
cs_address='" . $conn->real_escape_string($cs_address) . "',
|
|
cs_address='" . $conn->real_escape_string($cs_address) . "',
|
|
- cs_type=" . $cs_type . ",
|
|
|
|
- cs_alibaba='" . $conn->real_escape_string($cs_alibaba) . "',
|
|
|
|
cs_updatetime='" . $cs_updatetime . "',
|
|
cs_updatetime='" . $cs_updatetime . "',
|
|
cs_belong=" . $cs_belong . ",
|
|
cs_belong=" . $cs_belong . ",
|
|
cs_belongclient=" . $cs_belongClient . ",
|
|
cs_belongclient=" . $cs_belongClient . ",
|
|
cs_state=" . $cs_state . ",
|
|
cs_state=" . $cs_state . ",
|
|
- cs_telformat='" . $conn->real_escape_string($cs_telformat) . "',
|
|
|
|
- cs_whatsappformat='" . $conn->real_escape_string($cs_whatsappformat) . "',
|
|
|
|
cs_deal=" . $cs_deal . ",
|
|
cs_deal=" . $cs_deal . ",
|
|
cs_note='" . $conn->real_escape_string($cs_note) . "'";
|
|
cs_note='" . $conn->real_escape_string($cs_note) . "'";
|
|
|
|
|
|
@@ -251,6 +243,66 @@ if ($act == "editSave" || $allowedit == 1) {
|
|
$updateSql .= " WHERE id=" . intval($id);
|
|
$updateSql .= " WHERE id=" . intval($id);
|
|
|
|
|
|
$conn->query($updateSql);
|
|
$conn->query($updateSql);
|
|
|
|
+
|
|
|
|
+ // 检查是否已有联系人记录
|
|
|
|
+ $contact_sql = "SELECT id FROM customer_contact WHERE customer_id = " . intval($id);
|
|
|
|
+ $contact_result = mysqli_query($conn, $contact_sql);
|
|
|
|
+
|
|
|
|
+ if ($contact_row = mysqli_fetch_assoc($contact_result)) {
|
|
|
|
+ // 更新联系人信息
|
|
|
|
+ $contact_id = $contact_row['id'];
|
|
|
|
+ $contact_sql = "UPDATE customer_contact SET
|
|
|
|
+ contact_name='" . $conn->real_escape_string($cs_name) . "',
|
|
|
|
+ tel='" . $conn->real_escape_string($cs_tel) . "',
|
|
|
|
+ tel_format='" . $conn->real_escape_string($cs_telformat) . "',
|
|
|
|
+ tel_bu='" . $conn->real_escape_string($cs_tel) . "',
|
|
|
|
+ email='" . $conn->real_escape_string($cs_email) . "',
|
|
|
|
+ email_bu='" . $conn->real_escape_string($cs_email) . "',
|
|
|
|
+ whatsapp='" . $conn->real_escape_string($cs_whatsapp) . "',
|
|
|
|
+ whatsapp_format='" . $conn->real_escape_string($cs_whatsappformat) . "',
|
|
|
|
+ whatsapp_bu='" . $conn->real_escape_string($cs_whatsapp) . "',
|
|
|
|
+ wechat='" . $conn->real_escape_string($cs_wechat) . "',
|
|
|
|
+ wechat_bu='" . $conn->real_escape_string($cs_wechat) . "',
|
|
|
|
+ linkedin='" . $conn->real_escape_string($cs_linkedin) . "',
|
|
|
|
+ linkedin_bu='" . $conn->real_escape_string($cs_linkedin) . "',
|
|
|
|
+ facebook='" . $conn->real_escape_string($cs_facebook) . "',
|
|
|
|
+ facebook_bu='" . $conn->real_escape_string($cs_facebook) . "',
|
|
|
|
+ alibaba='" . $conn->real_escape_string($cs_alibaba) . "',
|
|
|
|
+ alibaba_bu='" . $conn->real_escape_string($cs_alibaba) . "',
|
|
|
|
+ updated_at='" . $cs_updatetime . "'
|
|
|
|
+ WHERE id=" . $contact_id;
|
|
|
|
+ $conn->query($contact_sql);
|
|
|
|
+ } else {
|
|
|
|
+ // 插入新的联系人记录
|
|
|
|
+ $contact_sql = "INSERT INTO customer_contact (
|
|
|
|
+ customer_id, contact_name, tel, tel_format, tel_bu,
|
|
|
|
+ email, email_bu, whatsapp, whatsapp_format, whatsapp_bu,
|
|
|
|
+ wechat, wechat_bu, linkedin, linkedin_bu, facebook,
|
|
|
|
+ facebook_bu, alibaba, alibaba_bu, created_at, updated_at
|
|
|
|
+ ) VALUES (
|
|
|
|
+ " . intval($id) . ",
|
|
|
|
+ '" . $conn->real_escape_string($cs_name) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_tel) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_telformat) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_tel) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_email) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_email) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_whatsapp) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_whatsappformat) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_whatsapp) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_wechat) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_wechat) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_linkedin) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_linkedin) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_facebook) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_facebook) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_alibaba) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_alibaba) . "',
|
|
|
|
+ NOW(),
|
|
|
|
+ NOW()
|
|
|
|
+ )";
|
|
|
|
+ $conn->query($contact_sql);
|
|
|
|
+ }
|
|
|
|
|
|
// Update tags
|
|
// Update tags
|
|
$conn->query("DELETE FROM tagtable WHERE customerId = " . intval($id));
|
|
$conn->query("DELETE FROM tagtable WHERE customerId = " . intval($id));
|
|
@@ -266,43 +318,23 @@ if ($act == "editSave" || $allowedit == 1) {
|
|
|
|
|
|
echo "<script>location.href='$hrefstr';</script>";
|
|
echo "<script>location.href='$hrefstr';</script>";
|
|
} else {
|
|
} else {
|
|
- // Insert new customer using direct SQL
|
|
|
|
|
|
+ // Insert new customer record
|
|
$insertSql = "INSERT INTO customer (
|
|
$insertSql = "INSERT INTO customer (
|
|
- cs_code, cs_company, cs_name, cs_country, cs_from, cs_tel, cs_wechat,
|
|
|
|
- cs_whatsapp, cs_email, cs_linkedin, cs_facebook, cs_alibaba, cs_address,
|
|
|
|
- cs_telBu, cs_wechatBu, cs_whatsappBu, cs_emailBu, cs_linkedinBu,
|
|
|
|
- cs_facebookBu, cs_alibabaBu, cs_type, cs_addtime, cs_updatetime,
|
|
|
|
- cs_belong, cs_belongClient, cs_state, cs_telformat, cs_whatsappformat,
|
|
|
|
- cs_deal, cs_note, cs_chain, is_silent, cs_dealdate
|
|
|
|
|
|
+ cs_code, cs_company, cs_country, cs_from, cs_address,
|
|
|
|
+ cs_type, cs_addtime, cs_updatetime, cs_belong, cs_belongClient,
|
|
|
|
+ cs_state, cs_deal, cs_note, cs_chain, is_silent, cs_dealdate
|
|
) VALUES (
|
|
) VALUES (
|
|
'" . $conn->real_escape_string($cs_code) . "',
|
|
'" . $conn->real_escape_string($cs_code) . "',
|
|
'" . $conn->real_escape_string($cs_company) . "',
|
|
'" . $conn->real_escape_string($cs_company) . "',
|
|
- '" . $conn->real_escape_string($cs_name) . "',
|
|
|
|
" . $cs_country . ",
|
|
" . $cs_country . ",
|
|
" . $cs_from . ",
|
|
" . $cs_from . ",
|
|
- '" . $conn->real_escape_string($cs_tel) . "',
|
|
|
|
- '" . $conn->real_escape_string($cs_wechat) . "',
|
|
|
|
- '" . $conn->real_escape_string($cs_whatsapp) . "',
|
|
|
|
- '" . $conn->real_escape_string($cs_email) . "',
|
|
|
|
- '" . $conn->real_escape_string($cs_linkedin) . "',
|
|
|
|
- '" . $conn->real_escape_string($cs_facebook) . "',
|
|
|
|
- '" . $conn->real_escape_string($cs_alibaba) . "',
|
|
|
|
'" . $conn->real_escape_string($cs_address) . "',
|
|
'" . $conn->real_escape_string($cs_address) . "',
|
|
- '" . $conn->real_escape_string($cs_tel) . "',
|
|
|
|
- '" . $conn->real_escape_string($cs_wechat) . "',
|
|
|
|
- '" . $conn->real_escape_string($cs_whatsapp) . "',
|
|
|
|
- '" . $conn->real_escape_string($cs_email) . "',
|
|
|
|
- '" . $conn->real_escape_string($cs_linkedin) . "',
|
|
|
|
- '" . $conn->real_escape_string($cs_facebook) . "',
|
|
|
|
- '" . $conn->real_escape_string($cs_alibaba) . "',
|
|
|
|
" . $cs_type . ",
|
|
" . $cs_type . ",
|
|
NOW(),
|
|
NOW(),
|
|
NOW(),
|
|
NOW(),
|
|
" . $cs_belong . ",
|
|
" . $cs_belong . ",
|
|
" . $cs_belongClient . ",
|
|
" . $cs_belongClient . ",
|
|
" . $cs_state . ",
|
|
" . $cs_state . ",
|
|
- '" . $conn->real_escape_string($cs_telformat) . "',
|
|
|
|
- '" . $conn->real_escape_string($cs_whatsappformat) . "',
|
|
|
|
" . $cs_deal . ",
|
|
" . $cs_deal . ",
|
|
'" . $conn->real_escape_string($cs_note) . "',
|
|
'" . $conn->real_escape_string($cs_note) . "',
|
|
" . $cs_belong . ",
|
|
" . $cs_belong . ",
|
|
@@ -311,16 +343,49 @@ if ($act == "editSave" || $allowedit == 1) {
|
|
)";
|
|
)";
|
|
|
|
|
|
$conn->query($insertSql);
|
|
$conn->query($insertSql);
|
|
- $id = $conn->insert_id;
|
|
|
|
-
|
|
|
|
- // Save tags for new customer
|
|
|
|
- foreach ($mytag as $tag) {
|
|
|
|
- if (!empty(trim($tag))) {
|
|
|
|
- $tagSql = "INSERT INTO tagtable (tagName, employeeId, customerId) VALUES ('" .
|
|
|
|
- $conn->real_escape_string($tag) . "', " .
|
|
|
|
- intval($_SESSION['employee_id']) . ", " .
|
|
|
|
- intval($id) . ")";
|
|
|
|
- $conn->query($tagSql);
|
|
|
|
|
|
+ $new_customer_id = $conn->insert_id;
|
|
|
|
+
|
|
|
|
+ // Insert contact information
|
|
|
|
+ if ($new_customer_id > 0) {
|
|
|
|
+ $contactSql = "INSERT INTO customer_contact (
|
|
|
|
+ customer_id, contact_name, tel, tel_format, tel_bu,
|
|
|
|
+ email, email_bu, whatsapp, whatsapp_format, whatsapp_bu,
|
|
|
|
+ wechat, wechat_bu, linkedin, linkedin_bu, facebook,
|
|
|
|
+ facebook_bu, alibaba, alibaba_bu, created_at, updated_at
|
|
|
|
+ ) VALUES (
|
|
|
|
+ " . $new_customer_id . ",
|
|
|
|
+ '" . $conn->real_escape_string($cs_name) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_tel) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_telformat) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_tel) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_email) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_email) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_whatsapp) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_whatsappformat) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_whatsapp) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_wechat) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_wechat) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_linkedin) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_linkedin) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_facebook) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_facebook) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_alibaba) . "',
|
|
|
|
+ '" . $conn->real_escape_string($cs_alibaba) . "',
|
|
|
|
+ NOW(),
|
|
|
|
+ NOW()
|
|
|
|
+ )";
|
|
|
|
+
|
|
|
|
+ $conn->query($contactSql);
|
|
|
|
+
|
|
|
|
+ // Save tags for new customer
|
|
|
|
+ foreach ($mytag as $tag) {
|
|
|
|
+ if (!empty(trim($tag))) {
|
|
|
|
+ $tagSql = "INSERT INTO tagtable (tagName, employeeId, customerId) VALUES ('" .
|
|
|
|
+ $conn->real_escape_string($tag) . "', " .
|
|
|
|
+ intval($_SESSION['employee_id']) . ", " .
|
|
|
|
+ intval($new_customer_id) . ")";
|
|
|
|
+ $conn->query($tagSql);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|