customerEdit.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. $id = $_GET['id'] ?? '';
  5. $page = $_GET['Page'] ?? '';
  6. $keys = urlencode($_GET['Keys'] ?? '');
  7. $hrefstr = "?keys=$keys&Page=$page";
  8. // Validate and fetch customer data
  9. if (!empty($id) && is_numeric($id)) {
  10. $sql = "SELECT c.*, cc.contact_name as cs_name, cc.tel as cs_tel, cc.email as cs_email,
  11. cc.whatsapp as cs_whatsapp, cc.wechat as cs_wechat, cc.linkedin as cs_linkedin,
  12. cc.facebook as cs_facebook, cc.alibaba as cs_alibaba
  13. FROM customer c
  14. LEFT JOIN customer_contact cc ON c.id = cc.customer_id
  15. WHERE c.cs_belong = ? AND c.id = ?";
  16. $stmt = $conn->prepare($sql);
  17. $stmt->bind_param("ii", $_SESSION['employee_id'], $id);
  18. $stmt->execute();
  19. $result = $stmt->get_result();
  20. if ($row = $result->fetch_assoc()) {
  21. $customer = [
  22. 'cs_company' => textUncode($row['cs_company']),
  23. 'cs_name' => textUncode($row['cs_name']),
  24. 'cs_country' => $row['cs_country'],
  25. 'cs_tel' => textUncode($row['cs_tel']),
  26. 'cs_email' => textUncode($row['cs_email']),
  27. 'cs_whatsapp' => textUncode($row['cs_whatsapp']),
  28. 'cs_wechat' => textUncode($row['cs_wechat']),
  29. 'cs_linkedin' => textUncode($row['cs_linkedin']),
  30. 'cs_facebook' => textUncode($row['cs_facebook']),
  31. 'cs_address' => textUncode($row['cs_address']),
  32. 'cs_alibaba' => textUncode($row['cs_alibaba']),
  33. 'cs_code' => textUncode($row['cs_code']),
  34. 'cs_deal' => textUncode($row['cs_deal']),
  35. 'cs_addtime' => $row['cs_addtime'],
  36. 'cs_belongclient' => $row['cs_belongclient'],
  37. 'cs_updatetime' => $row['cs_updatetime'],
  38. 'cs_from' => $row['cs_from'],
  39. 'cs_type' => $row['cs_type'],
  40. 'cs_note' => htmlUnCode($row['cs_note']),
  41. 'cs_claimFrom' => $row['cs_claimFrom'],
  42. 'allowedit' => $row['allowedit']
  43. ];
  44. } else {
  45. echo "<script>alert('客户不存在或你没权限查看!');history.back();</script>";
  46. exit;
  47. }
  48. } else {
  49. echo "<script>alert('客户不存在!');history.back();</script>";
  50. header("Location: $hrefstr");
  51. exit;
  52. }
  53. ?>
  54. <!DOCTYPE html>
  55. <html xmlns="http://www.w3.org/1999/xhtml">
  56. <head>
  57. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  58. <title>管理区域</title>
  59. <link rel="stylesheet" href="css/common.css" type="text/css" />
  60. <script src="system/js/jquery-1.7.2.min.js"></script>
  61. <script src="js/js.js"></script>
  62. <script src="js/xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  63. <script src="js/Hz2Py-szm-min.js"></script>
  64. <script src="js/ySearchSelect.js"></script>
  65. <script>
  66. $(document).ready(function(){
  67. $('.txt2').xheditor({
  68. tools:'full',
  69. hoverExecDelay:-1,
  70. urlBase:'system',
  71. upLinkUrl:"upload.php",
  72. upLinkExt:"zip,rar,txt,pdf",
  73. upImgUrl:"upload.php",
  74. upImgExt:"jpg,jpeg,gif,png",
  75. upFlashUrl:"upload.php",
  76. upFlashExt:"swf",
  77. upMediaUrl:"upload.php",
  78. upMediaExt:"wmv,avi,wma,mp3,mid"
  79. });
  80. });
  81. </script>
  82. <style>
  83. body {
  84. margin: 0;
  85. padding: 20px;
  86. background: #fff;
  87. }
  88. #man_zone {
  89. margin-left: 0;
  90. }
  91. </style>
  92. </head>
  93. <body class="clear">
  94. <?php // require_once 'panel.php'; ?>
  95. <div id="man_zone">
  96. <form name="form1" id="form1" method="post" action="customerSave.php<?= $hrefstr ?>" onSubmit="return checkInput();">
  97. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  98. <tbody>
  99. <tr>
  100. <th width="8%">客户编号</th>
  101. <td>
  102. <input type="text" id="cs_code" name="cs_code" value="<?= htmlspecialcharsFix($customer['cs_code']) ?>"
  103. <?= !empty($customer['cs_claimFrom']) ? 'readonly' : '' ?> class="txt1" />
  104. <input type="hidden" name="id" value="<?= $id ?>" />
  105. <input type="hidden" name="cs_addtime" value="<?= $customer['cs_addtime'] ?>" />
  106. <input type="hidden" name="Permissions" value="<?= $customer['allowedit'] ?>" />
  107. </td>
  108. </tr>
  109. <tr>
  110. <th width="8%">公司名称</th>
  111. <td><input type="text" id="cs_company" name="cs_company" value="<?= htmlspecialcharsFix($customer['cs_company']) ?>" class="txt1" /></td>
  112. </tr>
  113. <tr>
  114. <th width="8%">联系人</th>
  115. <td><input type="text" id="cs_name" name="cs_name" value="<?= htmlspecialcharsFix($customer['cs_name']) ?>" class="txt1" /></td>
  116. </tr>
  117. <tr>
  118. <th width="8%">地区</th>
  119. <td>
  120. <div class="layui-input-inline">
  121. <div class="layui-form-select ySearchSelect y1">
  122. <div class="layui-input">
  123. <?php
  124. $stmt = $conn->prepare("SELECT id, countryCode, countryName FROM country WHERE id = ?");
  125. $stmt->bind_param("i", $customer['cs_country']);
  126. $stmt->execute();
  127. $countryResult = $stmt->get_result();
  128. if ($countryRow = $countryResult->fetch_assoc()) {
  129. $countryId = $countryRow['id'];
  130. echo htmlspecialcharsFix($countryRow['countryName']);
  131. } else {
  132. echo "请选择";
  133. }
  134. ?>
  135. </div>
  136. <ul>
  137. <?php
  138. $result = $conn->query("SELECT id, countryCode, countryName FROM country");
  139. while ($row = $result->fetch_assoc()) {
  140. echo "<li class=\"on\" data-c=\"{$row['id']}\">(+{$row['countryCode']}){$row['countryName']}</li>";
  141. }
  142. ?>
  143. <p>无匹配项</p>
  144. </ul>
  145. <input name="cs_country" id="cs_country" value="<?= $countryId ?? '' ?>" type="hidden">
  146. </div>
  147. </div>
  148. <script>
  149. $(function () {
  150. $(".y1").ySearchSelect();
  151. })
  152. </script>
  153. </td>
  154. </tr>
  155. <tr>
  156. <th width="8%">客户来源</th>
  157. <td>
  158. <select id="cs_from" name="cs_from">
  159. <option value="0">请选择来源</option>
  160. <?php
  161. $result = $conn->query("SELECT id, ch_name FROM qudao");
  162. while ($row = $result->fetch_assoc()) {
  163. $selected = ($customer['cs_from'] == $row['id']) ? ' selected="selected"' : '';
  164. echo "<option value=\"{$row['id']}\"$selected>{$row['ch_name']}</option>";
  165. }
  166. ?>
  167. </select>
  168. </td>
  169. </tr>
  170. <tr>
  171. <th rowspan="7">联系方式</th>
  172. <td><input type="text" id="cs_tel" name="cs_tel" value="<?= htmlspecialcharsFix($customer['cs_tel']) ?>" class="txt1 tel" placeholder="电话格式:区号+号码 如:+86 15012345678" /></td>
  173. </tr>
  174. <tr>
  175. <td><input type="text" id="cs_wechat" name="cs_wechat" value="<?= htmlspecialcharsFix($customer['cs_wechat']) ?>" class="txt1 wechat" placeholder="微信"/></td>
  176. </tr>
  177. <tr>
  178. <td><input type="text" id="cs_whatsapp" name="cs_whatsapp" value="<?= htmlspecialcharsFix($customer['cs_whatsapp']) ?>" class="txt1 whatsapp" placeholder="Whatsapp 格式:区号+号码 如:+86 15012345678"/></td>
  179. </tr>
  180. <tr>
  181. <td><input type="text" id="cs_email" name="cs_email" value="<?= htmlspecialcharsFix($customer['cs_email']) ?>" class="txt1 mail" placeholder="邮件" /></td>
  182. </tr>
  183. <tr>
  184. <td><input type="text" id="cs_linkedin" name="cs_linkedin" value="<?= htmlspecialcharsFix($customer['cs_linkedin']) ?>" class="txt1 linkedin" placeholder="领英链接"/></td>
  185. </tr>
  186. <tr>
  187. <td><input type="text" id="cs_facebook" name="cs_facebook" value="<?= htmlspecialcharsFix($customer['cs_facebook']) ?>" class="txt1 facebook" placeholder="Facebook" /></td>
  188. </tr>
  189. <tr>
  190. <td><input type="text" id="cs_alibaba" name="cs_alibaba" value="<?= htmlspecialcharsFix($customer['cs_alibaba']) ?>" class="txt1 alibaba" placeholder="alibaba" /></td>
  191. </tr>
  192. <tr>
  193. <th width="8%">地址</th>
  194. <td><input type="text" id="cs_address" name="cs_address" value="<?= htmlspecialcharsFix($customer['cs_address']) ?>" class="txt1" /></td>
  195. </tr>
  196. <tr>
  197. <th>业务类型</th>
  198. <td>
  199. <?php
  200. $result = $conn->query("SELECT id, businessType FROM clienttype");
  201. while ($row = $result->fetch_assoc()) {
  202. $checked = ($row['id'] == $customer['cs_type']) ? ' checked="checked"' : '';
  203. echo "<input type=\"radio\" name=\"cs_type\" value=\"{$row['id']}\" id=\"fortype{$row['id']}\"$checked>
  204. <label for=\"fortype{$row['id']}\">{$row['businessType']}</label>";
  205. }
  206. ?>
  207. </td>
  208. </tr>
  209. <tr>
  210. <th>跟进阶段</th>
  211. <td>
  212. <?php
  213. $dealOptions = [
  214. ['id' => '0', 'label' => '无响应'],
  215. ['id' => '1', 'label' => '背景调查'],
  216. ['id' => '2', 'label' => '明确需求'],
  217. ['id' => '3', 'label' => '已成交']
  218. ];
  219. foreach ($dealOptions as $option) {
  220. $checked = ($customer['cs_deal'] == $option['id']) ? ' checked="checked"' : '';
  221. $disabled = ($customer['cs_deal'] == '3' && $option['id'] != '3') ? ' disabled="disabled"' : '';
  222. echo "<input type=\"radio\" id=\"fordeal{$option['id']}\" class=\"cs_deal\" name=\"cs_deal\"
  223. value=\"{$option['id']}\"$checked$disabled><label for=\"fordeal{$option['id']}\">{$option['label']}</label>";
  224. }
  225. ?>
  226. </td>
  227. </tr>
  228. <tr>
  229. <th>其他</th>
  230. <td>
  231. <input type="checkbox" id="belongClient" class="cs_belongClient" name="cs_belongClient"
  232. value="1"<?= $customer['cs_belongclient'] == 1 ? ' checked="checked"' : '' ?>>
  233. <label for="belongClient">客户的客户</label>
  234. </td>
  235. </tr>
  236. <tr>
  237. <th>自定义标签</th>
  238. <td>
  239. <div class="taglist">
  240. <?php
  241. $stmt = $conn->prepare("SELECT id, tagName FROM tagtable WHERE customerId = ?");
  242. $stmt->bind_param("i", $id);
  243. $stmt->execute();
  244. $result = $stmt->get_result();
  245. while ($row = $result->fetch_assoc()) {
  246. echo "<span>" . htmlspecialcharsFix($row['tagName']) . "</span>";
  247. }
  248. ?>
  249. </div>
  250. <div class="commontag">
  251. <i class="tag">美特柏品牌客户</i>,
  252. <i class="tag">OEM定制客户</i>,
  253. <i class="tag">小型B端客户</i>,
  254. <i class="tag">C端客户</i>,
  255. <i class="tag">贸易公司</i>,
  256. <i class="tag">档口客户</i>
  257. <?php
  258. $stmt = $conn->prepare("SELECT DISTINCT tagName FROM tagtable WHERE employeeId = ?");
  259. $stmt->bind_param("i", $_SESSION['employee_id']);
  260. $stmt->execute();
  261. $result = $stmt->get_result();
  262. while ($row = $result->fetch_assoc()) {
  263. echo "<i class=\"tag\">" . htmlspecialcharsFix(textUncode($row['tagName'])) . "</i>,";
  264. }
  265. ?>
  266. </div>
  267. <input type="text" id="tapinput" class="txt-short" placeholder="自定义标签,按Enter添加">
  268. <input type="hidden" id="mytag" name="mytag" value="">
  269. </td>
  270. </tr>
  271. <tr>
  272. <th width="8%">备注</th>
  273. <td><textarea name="cs_note" class="txt2"><?= htmlspecialcharsFix($customer['cs_note']) ?></textarea></td>
  274. </tr>
  275. <tr>
  276. <th></th>
  277. <td>
  278. <input type="button" name="save" id="save" value="确定" class="btn1" onclick="subform();">
  279. <input type="button" value="返回" class="btn1" onClick="location.href='customers.php<?= $hrefstr ?>'" />
  280. </td>
  281. </tr>
  282. </tbody>
  283. </table>
  284. </form>
  285. </div>
  286. </body>
  287. </html>