customerEdit.php 14 KB

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