<?php require_once 'conn.php'; checkLogin(); $act = $_GET['act'] ?? ''; $tagName = $_GET['tagName'] ?? ''; if (empty($tagName)) { header('Location: customers.php'); exit; } if ($act == 'postchk') { $keys = urlencode($_GET['Keys'] ?? ''); $chkact = str_replace('t', '', $_POST['chkact'] ?? ''); if (isset($_POST['chkbox'])) { $sqlStr = "(" . implode(',', array_map('intval', (array)$_POST['chkbox'])) . ")"; $updateStr = "UPDATE customer SET cs_updatetime='" . date('Y-m-d H:i:s') . "', cs_code=REPLACE(cs_code, '-', '/' + (SELECT em_code FROM employee WHERE id=" . (int)$chkact . ") + '-'), cs_belong=" . (int)$chkact . ", cs_chain=CONCAT(cs_chain,'," . (int)$chkact . "') WHERE id IN " . $sqlStr; $deleteTag = "DELETE FROM tagtable WHERE customerId IN " . $sqlStr; $conn->query($updateStr); $conn->query($deleteTag); } header('Location: tag.php?tagName=' . urlencode($tagName)); exit; } // Get all tags for the current employee $tagStr = ''; $result = $conn->query("SELECT DISTINCT tagName FROM tagtable WHERE employeeId=" . $_SESSION['employee_id']); while ($row = $result->fetch_assoc()) { $tagStr .= "<span>" . htmlspecialcharsFix($row['tagName']) . "</span>,"; } ?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>管理区域</title> <link rel="stylesheet" href="css/common.css" type="text/css" /> <link rel="stylesheet" href="css/alert.css" type="text/css" /> <script src="system/js/jquery-1.7.2.min.js"></script> <script src="js/js.js"></script> <style> body { margin: 0; padding: 20px; background: #fff; } #man_zone { margin-left: 0; } </style> </head> <body class="clear"> <?php // require_once 'panel.php'; ?> <div id="man_zone"> <div class="fastSelect clear"> <H1 class="taghead" contenteditable="true" data-originaltag="<?= htmlspecialcharsFix($tagName) ?>" data-em="<?= $_SESSION['employee_id'] ?>"><?= htmlspecialcharsFix($tagName) ?></H1> </div> <form id="form1" method="post" action="?act=postchk&tagName=<?= urlencode($tagName) ?>" onsubmit="return false"> <div width="100%" border="0" cellpadding="3" cellspacing="1" class="table2"> <div class="theader"> <div class="col1"><input type="checkbox" name="chkall" id="chkall" onclick="chkboxall(this,'chkbox')"></div> <div class="col2">序号</div> <div class="col3">客户编号</div> <div class="col4">渠道来源</div> <div class="col5">区域</div> <div class="col7">跟进阶段</div> <div class="col8">录入时间</div> <div class="col10">操作</div> </div> <?php $sqlStr = "SELECT c.id, c.cs_code, c.cs_from, c.cs_country, c.cs_type, c.cs_deal, c.cs_addtime, c.cs_note, cc.id as contact_id, cc.contact_name, cc.tel_1, cc.tel_1_format, cc.tel_1_bu, cc.tel_2, cc.tel_2_format, cc.tel_2_bu, cc.tel_3, cc.tel_3_format, cc.tel_3_bu, cc.email_1, cc.email_1_bu, cc.email_2, cc.email_2_bu, cc.email_3, cc.email_3_bu, cc.whatsapp_1, cc.whatsapp_1_format, cc.whatsapp_1_bu, cc.whatsapp_2, cc.whatsapp_2_format, cc.whatsapp_2_bu, cc.whatsapp_3, cc.whatsapp_3_format, cc.whatsapp_3_bu, cc.wechat_1, cc.wechat_1_bu, cc.wechat_2, cc.wechat_2_bu, cc.wechat_3, cc.wechat_3_bu, cc.linkedin_1, cc.linkedin_1_bu, cc.linkedin_2, cc.linkedin_2_bu, cc.linkedin_3, cc.linkedin_3_bu, cc.facebook_1, cc.facebook_1_bu, cc.facebook_2, cc.facebook_2_bu, cc.facebook_3, cc.facebook_3_bu, cc.alibaba_1, cc.alibaba_1_bu, cc.alibaba_2, cc.alibaba_2_bu, cc.alibaba_3, cc.alibaba_3_bu FROM customer c LEFT JOIN customer_contact cc ON c.id = cc.customer_id WHERE c.cs_belong=" . $_SESSION['employee_id'] . " AND c.id IN (SELECT customerId FROM tagtable WHERE tagName='" . $conn->real_escape_string($tagName) . "')"; $result = $conn->query($sqlStr); $tempNum = 0; while ($row = $result->fetch_assoc()) { $tempNum++; ?> <div class="tline"> <div class="col1" align="center"><input type="checkbox" name="chkbox[]" value="<?= $row['id'] ?>"></div> <div class="col2"><?= $tempNum ?></div> <div class="col3 slidepanel"><?= htmlspecialcharsFix($row['cs_code']) ?></div> <div class="col4"> <?php $qudaoResult = $conn->query("SELECT ch_name FROM qudao WHERE id=" . (int)$row['cs_from']); echo ($qudaoRow = $qudaoResult->fetch_assoc()) ? htmlspecialcharsFix($qudaoRow['ch_name']) : '未填写'; ?> </div> <div class="col5"> <?php $countryResult = $conn->query("SELECT countryName FROM country WHERE id=" . (int)$row['cs_country']); echo ($countryRow = $countryResult->fetch_assoc()) ? htmlspecialcharsFix($countryRow['countryName']) : '未填写'; ?> </div> <div class="col7"> <?php if ($row['cs_deal'] == 3) { echo "<span style='color:red;'>成交</span>"; } elseif ($row['cs_deal'] == 2) { echo "明确需求"; } elseif ($row['cs_deal'] == 1) { echo "背景调查"; } else { echo "无响应"; } ?> </div> <div class="col8"><?= $row['cs_addtime'] ?></div> <div class="col10"><a href="customerEdit.php?id=<?= $row['id'] ?>" class="ico_edit ico">修改</a></div> </div> <div class="notepanel clear"> <div class="noteItem">联系方式</div> <div class="lx"> <div class="tel"> <?php if(!empty($row['tel_1'])): ?> <div><?= htmlspecialcharsFix($row['tel_1']) ?></div> <?php endif; ?> <?php if(!empty($row['tel_2'])): ?> <div><?= htmlspecialcharsFix($row['tel_2']) ?></div> <?php endif; ?> <?php if(!empty($row['tel_3'])): ?> <div><?= htmlspecialcharsFix($row['tel_3']) ?></div> <?php endif; ?> </div> <div class="mail"> <?php if(!empty($row['email_1'])): ?> <div><a href="mailto:<?= htmlspecialcharsFix($row['email_1']) ?>"><?= htmlspecialcharsFix($row['email_1']) ?></a></div> <?php endif; ?> <?php if(!empty($row['email_2'])): ?> <div><a href="mailto:<?= htmlspecialcharsFix($row['email_2']) ?>"><?= htmlspecialcharsFix($row['email_2']) ?></a></div> <?php endif; ?> <?php if(!empty($row['email_3'])): ?> <div><a href="mailto:<?= htmlspecialcharsFix($row['email_3']) ?>"><?= htmlspecialcharsFix($row['email_3']) ?></a></div> <?php endif; ?> </div> <div class="whatsapp"> <?php if(!empty($row['whatsapp_1'])): ?> <div><?= htmlspecialcharsFix($row['whatsapp_1']) ?></div> <?php endif; ?> <?php if(!empty($row['whatsapp_2'])): ?> <div><?= htmlspecialcharsFix($row['whatsapp_2']) ?></div> <?php endif; ?> <?php if(!empty($row['whatsapp_3'])): ?> <div><?= htmlspecialcharsFix($row['whatsapp_3']) ?></div> <?php endif; ?> </div> <div class="wechat"> <?php if(!empty($row['wechat_1'])): ?> <div><?= htmlspecialcharsFix($row['wechat_1']) ?></div> <?php endif; ?> <?php if(!empty($row['wechat_2'])): ?> <div><?= htmlspecialcharsFix($row['wechat_2']) ?></div> <?php endif; ?> <?php if(!empty($row['wechat_3'])): ?> <div><?= htmlspecialcharsFix($row['wechat_3']) ?></div> <?php endif; ?> </div> <div class="linkedin"> <?php if(!empty($row['linkedin_1'])): ?> <div><?= htmlspecialcharsFix($row['linkedin_1']) ?></div> <?php endif; ?> <?php if(!empty($row['linkedin_2'])): ?> <div><?= htmlspecialcharsFix($row['linkedin_2']) ?></div> <?php endif; ?> <?php if(!empty($row['linkedin_3'])): ?> <div><?= htmlspecialcharsFix($row['linkedin_3']) ?></div> <?php endif; ?> </div> <div class="facebook"> <?php if(!empty($row['facebook_1'])): ?> <div><?= htmlspecialcharsFix($row['facebook_1']) ?></div> <?php endif; ?> <?php if(!empty($row['facebook_2'])): ?> <div><?= htmlspecialcharsFix($row['facebook_2']) ?></div> <?php endif; ?> <?php if(!empty($row['facebook_3'])): ?> <div><?= htmlspecialcharsFix($row['facebook_3']) ?></div> <?php endif; ?> </div> <div class="alibaba"> <?php if(!empty($row['alibaba_1'])): ?> <div><?= htmlspecialcharsFix($row['alibaba_1']) ?></div> <?php endif; ?> <?php if(!empty($row['alibaba_2'])): ?> <div><?= htmlspecialcharsFix($row['alibaba_2']) ?></div> <?php endif; ?> <?php if(!empty($row['alibaba_3'])): ?> <div><?= htmlspecialcharsFix($row['alibaba_3']) ?></div> <?php endif; ?> </div> </div> <div class="noteItem2">备注</div> <div class="notecontent"><?= htmlUnCode($row['cs_note']) ?></div> <div class="coltag mytag" data-id="<?= $row['id'] ?>" data-em="<?= $_SESSION['employee_id'] ?>"> <?php $tagStr1 = $tagStr; $tagResult = $conn->query("SELECT tagName FROM tagtable WHERE customerId=" . $row['id']); while ($tagRow = $tagResult->fetch_assoc()) { $tagStr1 = str_replace( "<span>" . htmlspecialcharsFix($tagRow['tagName']) . "</span>", "<span class=\"active\">" . htmlspecialcharsFix($tagRow['tagName']) . "</span>", $tagStr1 ); } echo $tagStr1; ?> </div> </div> <?php } ?> <div colspan="9"> <div class="showpagebox"> </div> <div class="postchkbox"> <select id="chkact" name="chkact"> <?php $result = $conn->query("SELECT id, em_code, em_user FROM employee ORDER BY em_code ASC"); while ($row = $result->fetch_assoc()) { echo "<option value=\"t{$row['id']}\">转给" . htmlspecialcharsFix($row['em_user']) . "(" . htmlspecialcharsFix($row['em_code']) . ")</option>"; } ?> </select> <input type="button" value="执行" onclick="postchk(1)" class="btn1"> </div> </div> </div> </form> </div> </body> </html>