customers.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. <?php
  2. require_once("conn.php");
  3. include("checklogin.php");
  4. // 辅助函数
  5. function textEncode($str) {
  6. return htmlspecialchars($str, ENT_QUOTES, 'UTF-8');
  7. }
  8. function textDecode($str) {
  9. return htmlspecialchars_decode($str, ENT_QUOTES);
  10. }
  11. function htmlEncode($str) {
  12. return htmlspecialchars($str, ENT_QUOTES, 'UTF-8');
  13. }
  14. function htmlDecode($str) {
  15. return htmlspecialchars_decode($str, ENT_QUOTES);
  16. }
  17. $act = $_GET['act'] ?? '';
  18. $urlStr = '';
  19. // 处理保存操作
  20. if ($act == "save") {
  21. $isedit = false;
  22. $id = $_POST['id'] ?? '';
  23. if (!empty($id) && is_numeric($id)) {
  24. $isedit = true;
  25. }
  26. // 获取表单数据
  27. $cs_code = textEncode($_POST['cs_code']);
  28. $cs_company = textEncode($_POST['cs_company']);
  29. $cs_name = textEncode($_POST['cs_name']);
  30. $cs_belong = $_POST['cs_belong'];
  31. $cs_country = $_POST['cs_country'];
  32. $cs_from = $_POST['cs_from'];
  33. $cs_tel = textEncode($_POST['cs_tel']);
  34. $cs_email = textEncode($_POST['cs_email']);
  35. $cs_whatsapp = textEncode($_POST['cs_whatsapp']);
  36. $cs_wechat = textEncode($_POST['cs_wechat']);
  37. $cs_linkedin = textEncode($_POST['cs_linkedin']);
  38. $cs_facebook = textEncode($_POST['cs_facebook']);
  39. $cs_alibaba = textEncode($_POST['cs_alibaba']);
  40. $cs_state = $_POST['cs_state'];
  41. $cs_deal = $_POST['cs_deal'];
  42. $no_content = htmlEncode($_POST['no_content']);
  43. $allowedit = isset($_POST['allowedit']) ? 1 : 0;
  44. if ($isedit) {
  45. // 更新现有记录
  46. $sql = "SELECT cs_chain FROM customer WHERE id = $id";
  47. $result = mysqli_query($conn, $sql);
  48. if ($row = mysqli_fetch_assoc($result)) {
  49. $cs_chain = $row['cs_chain'];
  50. $chain_array = explode(',', $cs_chain);
  51. $last_item = end($chain_array);
  52. if ($last_item != $cs_belong) {
  53. $cs_chain .= ",$cs_belong";
  54. }
  55. $sql = "UPDATE customer SET
  56. cs_code = '$cs_code',
  57. cs_company = '$cs_company',
  58. cs_name = '$cs_name',
  59. cs_belong = '$cs_belong',
  60. cs_country = '$cs_country',
  61. cs_from = '$cs_from',
  62. cs_tel = '$cs_tel',
  63. cs_email = '$cs_email',
  64. cs_whatsapp = '$cs_whatsapp',
  65. cs_wechat = '$cs_wechat',
  66. cs_linkedin = '$cs_linkedin',
  67. cs_facebook = '$cs_facebook',
  68. cs_alibaba = '$cs_alibaba',
  69. cs_state = '$cs_state',
  70. cs_deal = '$cs_deal',
  71. cs_note = '$no_content',
  72. allowedit = $allowedit,
  73. cs_chain = '$cs_chain',
  74. cs_updatetime = NOW()
  75. WHERE id = $id";
  76. mysqli_query($conn, $sql);
  77. $page = $_GET['Page'] ?? '';
  78. $keys = urlencode($_GET['Keys'] ?? '');
  79. header("Location: ?keys=$keys&Page=$page$urlStr");
  80. exit;
  81. }
  82. }
  83. }
  84. // 处理编辑操作
  85. if ($act == "edit") {
  86. $id = $_GET['id'] ?? '';
  87. $isedit = false;
  88. if (!empty($id) && is_numeric($id)) {
  89. $isedit = true;
  90. }
  91. if ($isedit) {
  92. $sql = "SELECT c.*, n.c_code FROM customer c
  93. LEFT JOIN myNote n ON c.cs_code = n.c_code
  94. WHERE c.id = $id";
  95. $result = mysqli_query($conn, $sql);
  96. if ($row = mysqli_fetch_assoc($result)) {
  97. $cs_code = textDecode($row['cs_code']);
  98. $cs_company = textDecode($row['cs_company']);
  99. $cs_name = textDecode($row['cs_name']);
  100. $cs_country = $row['cs_country'];
  101. $cs_from = $row['cs_from'];
  102. $cs_tel = textDecode($row['cs_tel']);
  103. $cs_telBu = textDecode($row['cs_telBu']);
  104. $cs_email = textDecode($row['cs_email']);
  105. $cs_emailBu = textDecode($row['cs_emailBu']);
  106. $cs_whatsapp = textDecode($row['cs_whatsapp']);
  107. $cs_whatsappBu = textDecode($row['cs_whatsappBu']);
  108. $cs_wechat = textDecode($row['cs_wechat']);
  109. $cs_wechatBu = textDecode($row['cs_wechatBu']);
  110. $cs_linkedin = textDecode($row['cs_linkedin']);
  111. $cs_linkedinBu = textDecode($row['cs_linkedinBu']);
  112. $cs_facebook = textDecode($row['cs_facebook']);
  113. $cs_facebookBu = textDecode($row['cs_facebookBu']);
  114. $cs_alibaba = textDecode($row['cs_alibaba']);
  115. $cs_alibabaBu = textDecode($row['cs_alibabaBu']);
  116. $cs_address = textDecode($row['cs_address']);
  117. $cs_addtime = $row['cs_addtime'];
  118. $cs_updatetime = $row['cs_updatetime'];
  119. $cs_belong = $row['cs_belong'];
  120. $cs_state = $row['cs_state'];
  121. $cs_deal = $row['cs_deal'];
  122. $cs_note = htmlDecode($row['cs_note']);
  123. $allowedit = $row['allowedit'];
  124. }
  125. }
  126. }
  127. // 处理批量操作
  128. if ($act == "postchk") {
  129. if (isset($_POST['chkbox']) && isset($_POST['chkact'])) {
  130. $chkact = $_POST['chkact'];
  131. $ids = implode(',', array_map('intval', $_POST['chkbox']));
  132. switch($chkact) {
  133. case "0":
  134. case "1":
  135. $sql = "UPDATE customer SET cs_state = $chkact WHERE id IN ($ids)";
  136. break;
  137. case "-1":
  138. $sql = "DELETE FROM customer WHERE id IN ($ids)";
  139. break;
  140. }
  141. if (isset($sql)) {
  142. mysqli_query($conn, $sql);
  143. }
  144. $keys = urlencode($_GET['Keys'] ?? '');
  145. $page = $_GET['Page'] ?? '';
  146. header("Location: ?keys=$keys&Page=$page$urlStr");
  147. exit;
  148. }
  149. }
  150. // ... (第一部分代码续)
  151. // 处理筛选条件
  152. $fliterQudao = $_GET['fliterQudao'] ?? '';
  153. $fliterDeal = $_GET['fliterDeal'] ?? '';
  154. $fliterTeam = $_GET['fliterTeam'] ?? '';
  155. $fliterContact = $_GET['fliterContact'] ?? '';
  156. $fliterEmployee = $_GET['fliterEmployee'] ?? '';
  157. $fliterStr = "";
  158. if (!empty($fliterQudao)) {
  159. $fliterStr .= " AND cs_from = " . intval($fliterQudao);
  160. $urlStr .= "&fliterQudao=" . $fliterQudao;
  161. }
  162. if (!empty($fliterDeal)) {
  163. $fliterStr .= " AND cs_deal = " . intval($fliterDeal);
  164. $urlStr .= "&fliterDeal=" . $fliterDeal;
  165. }
  166. if (!empty($fliterTeam)) {
  167. $fliterStr .= " AND (cs_belong = " . intval($fliterTeam) .
  168. " OR cs_belong IN (SELECT id FROM employee WHERE em_role = " . intval($fliterTeam) . "))";
  169. $urlStr .= "&fliterTeam=" . $fliterTeam;
  170. }
  171. if (!empty($fliterEmployee)) {
  172. $fliterStr .= " AND cs_belong = " . intval($fliterEmployee);
  173. $urlStr .= "&fliterEmployee=" . $fliterEmployee;
  174. }
  175. if (!empty($fliterContact)) {
  176. switch($fliterContact) {
  177. case "1": $fliterStr .= " AND cs_tel != ''"; break;
  178. case "2": $fliterStr .= " AND cs_wechat != ''"; break;
  179. case "3": $fliterStr .= " AND cs_whatsapp != ''"; break;
  180. case "4": $fliterStr .= " AND cs_email != ''"; break;
  181. case "5": $fliterStr .= " AND cs_linkedin != ''"; break;
  182. case "6": $fliterStr .= " AND cs_facebook != ''"; break;
  183. case "7": $fliterStr .= " AND cs_alibaba != ''"; break;
  184. }
  185. $urlStr .= "&fliterContact=" . $fliterContact;
  186. }
  187. // 搜索和排序
  188. $keys = $_GET['Keys'] ?? '';
  189. $keyscode = textEncode($keys);
  190. $page = $_GET['Page'] ?? 1;
  191. $ord = $_GET['Ord'] ?? '';
  192. $ordStr = !empty($ord) ? "$ord," : "";
  193. // 构建查询SQL
  194. $sqlStr = "SELECT id, cs_code, cs_name, cs_country, cs_address, cs_tel, cs_email,
  195. cs_whatsapp, cs_wechat, cs_linkedin, cs_facebook, cs_addtime, cs_alibaba,
  196. cs_from, cs_deal, cs_updatetime, cs_belong, cs_note, cs_claimFrom, cs_chain,
  197. cs_dealdate
  198. FROM customer
  199. WHERE (cs_code LIKE '%$keyscode%'
  200. OR cs_name LIKE '%$keyscode%'
  201. OR cs_wechat LIKE '%$keyscode%'
  202. OR cs_alibaba LIKE '%$keyscode%'
  203. OR cs_telformat LIKE '%$keyscode%'
  204. OR cs_whatsappformat LIKE '%$keyscode%'
  205. OR cs_email LIKE '%$keyscode%')
  206. $fliterStr
  207. ORDER BY {$ordStr}cs_updatetime DESC";
  208. ?>
  209. <!DOCTYPE html>
  210. <html xmlns="http://www.w3.org/1999/xhtml">
  211. <head>
  212. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  213. <title>管理区域</title>
  214. <link rel="stylesheet" href="css/common.css" type="text/css" />
  215. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  216. <script type="text/javascript" src="js/js.js"></script>
  217. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  218. <script>
  219. $(document).ready(function(){
  220. $('.txt2').xheditor({
  221. tools:'full',
  222. hoverExecDelay:-1,
  223. urlBase:'system/',
  224. upLinkUrl:"upload.php",
  225. upLinkExt:"zip,rar,txt,pdf",
  226. upImgUrl:"upload.php",
  227. upImgExt:"jpg,jpeg,gif,png",
  228. upFlashUrl:"upload.php",
  229. upFlashExt:"swf",
  230. upMediaUrl:"upload.php",
  231. upMediaExt:"wmv,avi,wma,mp3,mid"
  232. });
  233. });
  234. </script>
  235. </head>
  236. <body>
  237. <div id="man_zone">
  238. <?php if ($act == "edit"): ?>
  239. <form name="form1" method="post" action="<?php echo "?keys=" . urlencode($keys) . "&Page=" . ($page ?? '') . "&act=save" . $urlStr; ?>">
  240. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  241. <tbody>
  242. <tr>
  243. <th width="8%">客户编号</th>
  244. <td><input type="text" id="cs_code" name="cs_code" value="<?php echo $cs_code ?? ''; ?>" class="txt1" />
  245. <input type="hidden" name="id" value="<?php echo $id ?? ''; ?>" /></td>
  246. </tr>
  247. <tr>
  248. <th width="8%">公司名称</th>
  249. <td><input type="text" id="cs_company" name="cs_company" value="<?php echo $cs_company ?? ''; ?>" class="txt1" /></td>
  250. </tr>
  251. <!-- 其他表单字段 -->
  252. <tr>
  253. <th width="8%">所属业务</th>
  254. <td>
  255. <select name="cs_belong">
  256. <option value="0">请选择</option>
  257. <?php
  258. $sql = "SELECT id, em_user FROM employee";
  259. $result = mysqli_query($conn, $sql);
  260. while ($row = mysqli_fetch_assoc($result)) {
  261. $selected = ($row['id'] == ($cs_belong ?? '')) ? ' selected="selected"' : '';
  262. echo "<option value=\"{$row['id']}\"$selected>{$row['em_user']}</option>";
  263. }
  264. ?>
  265. </select>
  266. </td>
  267. </tr>
  268. <!-- 更多表单字段 -->
  269. </tbody>
  270. </table>
  271. </form>
  272. <?php else: ?>
  273. <form id="form1" method="post" action="?act=postchk&keys=<?php echo urlencode($keys); ?>&Page=<?php echo $page; ?>" onSubmit="return false;">
  274. <div class="fastSelect clear">
  275. <H1>搜索条件</H1>
  276. <!-- 筛选条件 -->
  277. <div class="selectItem">
  278. <label>来源渠道</label>
  279. <select name="fliterQudao" class="filterSearch">
  280. <option value="">请选择渠道</option>
  281. <?php
  282. $sql = "SELECT id, ch_name FROM qudao";
  283. $result = mysqli_query($conn, $sql);
  284. while ($row = mysqli_fetch_assoc($result)) {
  285. $selected = ($fliterQudao == $row['id']) ? ' selected="selected"' : '';
  286. echo "<option value=\"{$row['id']}\"$selected>{$row['ch_name']}</option>";
  287. }
  288. ?>
  289. </select>
  290. </div>
  291. <!-- 其他筛选条件 -->
  292. </div>
  293. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  294. <!-- 表头 -->
  295. <thead>
  296. <tr>
  297. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  298. <th width="6%">序号</th>
  299. <th width="20%">客户编码</th>
  300. <th width="10%">联系人</th>
  301. <th width="10%">国家地区</th>
  302. <th width="7.5%">来源</th>
  303. <th width="7.5%">
  304. <a href="?keys=<?php echo urlencode($keys); ?>&Ord=<?php echo ($ord == 'cs_dealdate') ? 'cs_dealdate DESC' : 'cs_dealdate'; ?>">
  305. 是否成交
  306. </a>
  307. </th>
  308. <th width="10%">业务员</th>
  309. <th width="10%">操作</th>
  310. </tr>
  311. </thead>
  312. <tbody>
  313. <?php
  314. $result = mysqli_query($conn, $sqlStr);
  315. if (mysqli_num_rows($result) > 0) {
  316. $page_size = 18;
  317. $total_records = mysqli_num_rows($result);
  318. $total_pages = ceil($total_records / $page_size);
  319. if ($page > $total_pages) $page = $total_pages;
  320. $start = ($page - 1) * $page_size;
  321. mysqli_data_seek($result, $start);
  322. $counter = $start;
  323. for ($i = 0; $i < $page_size && $row = mysqli_fetch_assoc($result); $i++) {
  324. $counter++;
  325. // 显示数据行
  326. include('customer_row.php'); // 建议将行模板分离到单独文件
  327. }
  328. } else {
  329. echo "<tr><td colspan='9' align='center'>没有找到相关记录</td></tr>";
  330. }
  331. ?>
  332. </tbody>
  333. <!-- 分页控件 -->
  334. <tfoot>
  335. <tr>
  336. <td colspan="9">
  337. <div class="showpagebox">
  338. <?php include('pagination.php'); // 建议将分页逻辑分离到单独文件 ?>
  339. </div>
  340. <div class="postchkbox">
  341. <select id="chkact" name="chkact">
  342. <option value="1">显示</option>
  343. <option value="0">隐藏</option>
  344. <option value="-1">删除</option>
  345. </select>
  346. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  347. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  348. </div>
  349. </td>
  350. </tr>
  351. </tfoot>
  352. </table>
  353. </form>
  354. <?php endif; ?>
  355. </div>
  356. </body>
  357. </html>