customerEdit.asp 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. <!--#include file="Conn.asp"--><%Checklogin()%>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>管理区域</title>
  7. <link rel="stylesheet" href="css/common.css" type="text/css" />
  8. <script language="javascript" src="system/js/jquery-1.7.2.min.js"></script>
  9. <script type="text/javascript" src="js/js.js"></script>
  10. <script type="text/javascript" src="js/xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  11. <script type="text/javascript" src="js/Hz2Py-szm-min.js"></script>
  12. <script type="text/javascript" src="js/ySearchSelect.js"></script>
  13. <script>
  14. $(document).ready(function(){
  15. $('.txt2').xheditor({
  16. tools:'full',hoverExecDelay:-1,urlBase:'system',//urlType:'root',//plugins:allPlugin,
  17. upLinkUrl:"upload.asp",upLinkExt:"zip,rar,txt,pdf",
  18. upImgUrl:"upload.asp",upImgExt:"jpg,jpeg,gif,png",
  19. upFlashUrl:"upload.asp",upFlashExt:"swf",
  20. upMediaUrl:"upload.asp",upMediaExt:"wmv,avi,wma,mp3,mid"//,loadCSS:'css/edit.css'
  21. });
  22. });
  23. </script>
  24. </head>
  25. <body class="clear">
  26. <!--#include file="panel.asp"-->
  27. <div id="man_zone">
  28. <%
  29. id = Request.QueryString("id")
  30. Page = Request.QueryString("Page")
  31. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  32. hrefstr = "?keys="&Keys&"&Page="&Page
  33. If id<>"" And IsNumeric(id) Then
  34. Set Rs = Server.CreateObject("ADODB.RecordSet")
  35. Rs.Open "Select * From customer Where cs_belong="&Session("employee_id")&" and customer.id="&id,Conn,1,1
  36. If Not Rs.Bof And Not Rs.Eof Then
  37. cs_company=TextUncode(Rs("cs_company"))
  38. cs_name=TextUncode(Rs("cs_name"))
  39. cs_country=Rs("cs_country")
  40. cs_tel=TextUncode(Rs("cs_tel"))
  41. cs_email=TextUncode(Rs("cs_email"))
  42. cs_whatsapp=TextUncode(Rs("cs_whatsapp"))
  43. cs_wechat=TextUncode(Rs("cs_wechat"))
  44. cs_linkedin=TextUncode(Rs("cs_linkedin"))
  45. cs_facebook=TextUncode(Rs("cs_facebook"))
  46. cs_address=TextUncode(Rs("cs_address"))
  47. cs_alibaba=TextUncode(Rs("cs_alibaba"))
  48. cs_code=TextUncode(Rs("cs_code"))
  49. cs_deal=TextUncode(Rs("cs_deal"))
  50. cs_addtime=Rs("cs_addtime")
  51. cs_belongclient=Rs("cs_belongclient")
  52. cs_updatetime=Rs("cs_updatetime")
  53. cs_from=Rs("cs_from")
  54. cs_type=Rs("cs_type")
  55. cs_note=HtmlUnCode(Rs("cs_note"))
  56. cs_claimFrom=Rs("cs_claimFrom")
  57. allowedit=Rs("allowedit")
  58. Else
  59. Rs.Close:Set Rs=Nothing
  60. Conn.Close:Set Conn=Nothing
  61. response.write "<script>alert('客户不存在或你没权限查看!');history.back();</script>"
  62. response.End
  63. End If
  64. Rs.Close:Set Rs=Nothing
  65. Else
  66. response.write "<script>alert('客户不存在!');history.back();</script>"
  67. Rs.Close:Set Rs=Nothing
  68. Conn.Close:Set Conn=Nothing
  69. response.redirect hrefstr
  70. End If
  71. %>
  72. <form name="form1" id="form1" method="post" action="customerSave.asp<%=hrefstr%>" onSubmit="return checkInput();">
  73. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  74. <tbody>
  75. <tr>
  76. <th width="8%">客户编号</th>
  77. <td><input type="text" id="cs_code" name="cs_code" value="<%=cs_code%>" <%if cs_claimFrom<>"" Then response.write "readonly" %> class="txt1" /><input type="hidden" name="id" value="<%=id%>" /><input type="hidden" name="cs_addtime" value="<%=cs_addtime%>" /><input type="hidden" name="Permissions" value="<%=allowedit%>" /></td>
  78. </tr>
  79. <tr>
  80. <th width="8%">公司名称</th>
  81. <td><input type="text" id="cs_company" name="cs_company" value="<%=cs_company%>" class="txt1" /></td>
  82. </tr>
  83. <tr>
  84. <th width="8%">联系人</th>
  85. <td><input type="text" id="cs_name" name="cs_name" value="<%=cs_name%>" class="txt1" /></td>
  86. </tr>
  87. <tr>
  88. <th width="8%">地区</th>
  89. <td>
  90. <div class="layui-input-inline">
  91. <div class="layui-form-select ySearchSelect y1">
  92. <div class="layui-input" >
  93. <% Set Rs=server.CreateObject("ADODB.RecordSet")
  94. Rs.Open "Select id,countryCode,countryName from country where id="&cs_country,conn,1,1
  95. If Not Rs.bof and Not Rs.eof then
  96. countryId=Rs("id")
  97. response.write Rs("countryName")
  98. Else
  99. response.write "请选择"
  100. End If
  101. Rs.close
  102. %>
  103. </div>
  104. <ul>
  105. <% Set Rs=server.CreateObject("ADODB.RecordSet")
  106. Rs.Open "Select id,countryCode,countryName from country",conn,1,1
  107. Do while Not Rs.bof And Not Rs.eof
  108. %>
  109. <li class="on" data-c="<%=Rs("id")%>">(+<%=Rs("countryCode")%>)<%=Rs("countryName")%></li>
  110. <%
  111. Rs.moveNext
  112. loop
  113. Rs.close
  114. %>
  115. <p>无匹配项</p>
  116. </ul>
  117. <input name="cs_country" id="cs_country" value="<%=countryId%>" type="hidden">
  118. </div>
  119. </div>
  120. <script>
  121. $(function () {
  122. $(".y1").ySearchSelect();
  123. })
  124. </script>
  125. </td>
  126. </tr>
  127. <tr>
  128. <th width="8%">客户来源 </th>
  129. <td><Select id="cs_from" name="cs_from">
  130. <option value="0">请选择来源</option>
  131. <% Rs.Open "Select id,ch_name from qudao where id="&cs_from,conn,1,1
  132. Do while Not Rs.bof And Not Rs.eof
  133. %>
  134. <option value="<%=Rs("id")%>" <%If cs_from=Rs("id") Then Response.write "selected=""selected""" %>><%=Rs("ch_name")%></option>
  135. <%
  136. Rs.moveNext
  137. loop
  138. Rs.close
  139. %>
  140. </Select>
  141. </td>
  142. </tr>
  143. <tr >
  144. <th rowspan="7">联系方式</th>
  145. <td><input type="text" id="cs_tel" name="cs_tel" value="<%=cs_tel%>" class="txt1 tel" placeholder="电话格式:区号+号码 如:+86 15012345678" /></td>
  146. </tr>
  147. <tr>
  148. <td><input type="text" id="cs_wechat" name="cs_wechat" value="<%=cs_wechat%>" class="txt1 wechat" placeholder="微信"/></td>
  149. </tr>
  150. <tr>
  151. <td><input type="text" id="cs_whatsapp" name="cs_whatsapp" value="<%=cs_whatsapp%>" class="txt1 whatsapp" placeholder="Whatsapp 格式:区号+号码 如:+86 15012345678"/></td>
  152. </tr>
  153. <tr>
  154. <td><input type="text" id="cs_email" name="cs_email" value="<%=cs_email%>" class="txt1 mail" placeholder="邮件" /></td>
  155. </tr>
  156. <tr>
  157. <td><input type="text" id="cs_linkedin" name="cs_linkedin" value="<%=cs_linkedin%>" class="txt1 linkedin" placeholder="领英链接"/></td>
  158. </tr>
  159. <tr>
  160. <td><input type="text" id="cs_facebook" name="cs_facebook" value="<%=cs_facebook%>" class="txt1 facebook" placeholder="Facebook" /></td>
  161. </tr>
  162. <tr>
  163. <td><input type="text" id="cs_alibaba" name="cs_alibaba" value="<%=cs_alibaba%>" class="txt1 alibaba" placeholder="alibaba" /></td>
  164. </tr>
  165. <tr>
  166. <th width="8%">地址 </th>
  167. <td><input type="text" id="cs_address" name="cs_address" value="<%=cs_address%>" class="txt1" /></td>
  168. </tr>
  169. <tr>
  170. <th>业务类型</th>
  171. <td>
  172. <% Rs.Open "Select id,businessType from clientType",conn,1,1
  173. Do while Not Rs.bof And Not Rs.eof
  174. %>
  175. <input type="radio" name="cs_type" value="<%=Rs("id")%>" id="fortype<%=Rs("id")%>" <%If Rs("id")=cs_type Then Response.write "checked=""checked"""%> ><label for="fortype<%=Rs("id")%>"><%=Rs("businessType")%></label>
  176. <%
  177. Rs.moveNext
  178. loop
  179. Rs.close
  180. %>
  181. </td>
  182. </tr>
  183. <tr>
  184. <th>跟进阶段</th>
  185. <td>
  186. <input type="radio" id="fordeal1" class="cs_deal" name="cs_deal" value="0" <%If cs_deal=0 Then Response.write"checked=""checked""" Else If cs_deal=3 Then Response.write "disabled=""disabled""" End If%>><label for="fordeal1">无响应</label>
  187. <input type="radio" id="fordeal2" class="cs_deal" name="cs_deal" value="1" <%If cs_deal=1 Then Response.write"checked=""checked""" Else If cs_deal=3 Then Response.write "disabled=""disabled""" End If %>><label for="fordeal2">背景调查</label>
  188. <input type="radio" id="fordeal3" class="cs_deal" name="cs_deal" value="2" <%If cs_deal=2 Then Response.write"checked=""checked""" Else If cs_deal=3 Then Response.write "disabled=""disabled""" End If %>><label for="fordeal3">明确需求</label>
  189. <input type="radio" id="fordeal4" class="cs_deal" name="cs_deal" value="3" <%If cs_deal=3 Then Response.write"checked=""checked""" %>><label for="fordeal4">已成交</label>
  190. </td>
  191. </tr>
  192. <tr>
  193. <th>其他</th>
  194. <td>
  195. <input type="checkbox" id="belongClient" class="cs_belongClient" name="cs_belongClient" <%if cs_belongclient=1 Then Response.write "checked=""checked"""%> value="1"><label for="belongClient">客户的客户</label>
  196. </td>
  197. </tr>
  198. <tr>
  199. <th>自定义标签</th>
  200. <td><div class="taglist">
  201. <% Rs.Open "Select id,tagName from tagTable where customerId="&id,conn,1,1
  202. Do while Not Rs.bof And Not Rs.eof
  203. %>
  204. <span><%=Rs("tagName")%></span>
  205. <%
  206. Rs.moveNext
  207. loop
  208. Rs.close
  209. %>
  210. </div>
  211. <div class="commontag">
  212. <i class="tag">美特柏品牌客户</i>,
  213. <i class="tag">OEM定制客户</i>,
  214. <i class="tag">小型B端客户</i>,
  215. <i class="tag">C端客户</i>,
  216. <i class="tag">贸易公司</i>,<i class="tag">档口客户</i>
  217. <% Rs.Open "select distinct tagName from tagTable where employeeId="&Session("employee_id"),conn,1,1
  218. Do while Not Rs.bof And Not Rs.eof
  219. %>
  220. <i class="tag"><%=TextUncode(Rs("tagName"))%></i>,
  221. <%
  222. Rs.moveNext
  223. loop
  224. Rs.close
  225. Set Rs=Nothing
  226. %>
  227. </div>
  228. <input type="text" id="tapinput" class="txt-short" placeholder="自定义标签,按Enter添加">
  229. <input type="hidden" id="mytag" name="mytag" value="">
  230. </td>
  231. </tr>
  232. <tr>
  233. <th width="8%">备注</th>
  234. <td><textarea name="cs_note" class="txt2"><%=cs_note%></textarea></td>
  235. </tr>
  236. <tr>
  237. <th></th>
  238. <td><input type="button" name="save" id="save" value="确定" class="btn1" onclick="subform();">
  239. <input type="button" value="返回" class="btn1" onClick="location.href='customers.asp<%=hrefstr%>'" /></td>
  240. </tr>
  241. </tbody>
  242. </table>
  243. </form>
  244. </div>
  245. </body>
  246. </html>
  247. <%Conn.Close:Set Conn=Nothing%>