|
@@ -26,7 +26,7 @@ $cs_company = textEncode($_POST['cs_company'] ?? '');
|
|
|
$cs_country = $_POST['cs_country'] ?? '';
|
|
|
$cs_from = $_POST['cs_from'] ?? '';
|
|
|
$cs_address = textEncode($_POST['cs_address'] ?? '');
|
|
|
-$cs_type = textEncode($_POST['cs_type'] ?? '');
|
|
|
+$cs_type = $_POST['cs_type'] ?? []; // Changed to array for multi-select
|
|
|
$cs_belongclient = $_POST['cs_belongclient'] ?? '';
|
|
|
$cs_addtime = $_POST['cs_addtime'] ?? '';
|
|
|
$cs_updatetime = date('Y-m-d H:i:s');
|
|
@@ -43,7 +43,6 @@ $allowedit = is_numeric($allowedit) ? $allowedit : 0;
|
|
|
$cs_country = (is_numeric($cs_country) && $cs_country !== '') ? $cs_country : 0;
|
|
|
$cs_from = (is_numeric($cs_from) && $cs_from !== '') ? $cs_from : 0;
|
|
|
$cs_deal = (is_numeric($cs_deal) && $cs_deal !== '') ? $cs_deal : 1;
|
|
|
-$cs_type = (is_numeric($cs_type) && $cs_type !== '') ? $cs_type : 5;
|
|
|
$cs_belongClient = (is_numeric($cs_belongclient) && $cs_belongclient !== '') ? $cs_belongclient : 0;
|
|
|
|
|
|
$cs_note = htmlEncode($_POST['cs_note'] ?? '');
|
|
@@ -698,6 +697,20 @@ if ($act == "editSave" || $allowedit == 1) {
|
|
|
|
|
|
$conn->query($updateSql);
|
|
|
|
|
|
+ // 处理业务类型 - 先删除已有的业务类型
|
|
|
+ $conn->query("DELETE FROM customer_business_type WHERE customer_id = " . intval($id));
|
|
|
+
|
|
|
+ // 添加新的业务类型
|
|
|
+ if (!empty($cs_type) && is_array($cs_type)) {
|
|
|
+ foreach ($cs_type as $type_id) {
|
|
|
+ $type_id = intval($type_id);
|
|
|
+ if ($type_id > 0) {
|
|
|
+ $conn->query("INSERT INTO customer_business_type (customer_id, business_type_id)
|
|
|
+ VALUES (" . intval($id) . ", " . $type_id . ")");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
// 处理联系人信息 - 首先删除已有的不在提交列表中的联系人
|
|
|
$existingContactIds = [];
|
|
|
foreach ($contacts as $contact) {
|
|
@@ -795,7 +808,7 @@ if ($act == "editSave" || $allowedit == 1) {
|
|
|
// Insert new customer record
|
|
|
$insertSql = "INSERT INTO customer (
|
|
|
cs_code, cs_company, cs_country, cs_from, cs_address,
|
|
|
- cs_type, cs_addtime, cs_updatetime, cs_belong, cs_belongClient,
|
|
|
+ cs_addtime, cs_updatetime, cs_belong, cs_belongClient,
|
|
|
cs_state, cs_deal, cs_note, cs_chain, is_silent, cs_dealdate
|
|
|
) VALUES (
|
|
|
'" . $conn->real_escape_string($cs_code) . "',
|
|
@@ -803,7 +816,6 @@ if ($act == "editSave" || $allowedit == 1) {
|
|
|
" . $cs_country . ",
|
|
|
" . $cs_from . ",
|
|
|
'" . $conn->real_escape_string($cs_address) . "',
|
|
|
- " . $cs_type . ",
|
|
|
NOW(),
|
|
|
NOW(),
|
|
|
" . $cs_belong . ",
|
|
@@ -819,6 +831,17 @@ if ($act == "editSave" || $allowedit == 1) {
|
|
|
$conn->query($insertSql);
|
|
|
$new_customer_id = $conn->insert_id;
|
|
|
|
|
|
+ // Insert business types for new customer
|
|
|
+ if ($new_customer_id > 0 && !empty($cs_type) && is_array($cs_type)) {
|
|
|
+ foreach ($cs_type as $type_id) {
|
|
|
+ $type_id = intval($type_id);
|
|
|
+ if ($type_id > 0) {
|
|
|
+ $conn->query("INSERT INTO customer_business_type (customer_id, business_type_id)
|
|
|
+ VALUES (" . $new_customer_id . ", " . $type_id . ")");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
// Insert contact information for all contacts
|
|
|
if ($new_customer_id > 0) {
|
|
|
foreach ($contacts as $contact) {
|