customerSave.asp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  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="system/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="system/js/js.js"></script>
  10. </head>
  11. <body class="clear">
  12. <%
  13. Page = Request.QueryString("Page")
  14. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  15. fliterBusiness=Request.QueryString("fliterBusiness")
  16. fliterDeal=Request.QueryString("Deal")
  17. id = Request.Form("id")
  18. cs_code=TextEncode(Request.Form("cs_code"))
  19. cs_company=TextEncode(Request.Form("cs_company"))
  20. cs_name=TextEncode(Request.Form("cs_name"))
  21. cs_country=Request.Form("cs_country")
  22. cs_from=Request.Form("cs_from")
  23. cs_tel=TextEncode(Request.Form("cs_tel"))
  24. cs_wechat=TextEncode(Request.Form("cs_wechat"))
  25. cs_whatsapp=TextEncode(Request.Form("cs_whatsapp"))
  26. cs_email=TextEncode(Request.Form("cs_email"))
  27. cs_linkedin=TextEncode(Request.Form("cs_linkedin"))
  28. cs_facebook=TextEncode(Request.Form("cs_facebook"))
  29. cs_alibaba=TextEncode(Request.Form("cs_alibaba"))
  30. cs_alibaba=replace(cs_alibaba,":",":")
  31. cs_alibaba=replace(cs_alibaba,"ID:","")
  32. cs_address=TextEncode(Request.Form("cs_address"))
  33. cs_type=TextEncode(Request.Form("cs_type"))
  34. cs_belongclient=Request.Form("cs_belongclient")
  35. cs_addtime=Request.Form("cs_addtime")
  36. cs_updatetime=now()
  37. cs_belong=Session("employee_id")
  38. cs_state=1
  39. cs_deal=Request.Form("cs_deal")
  40. cs_telformat=NumFormat(Request.Form("cs_tel"))
  41. cs_whatsappformat=NumFormat(Request.Form("cs_whatsapp"))
  42. allowedit=Request.Form("Permissions") '用于处理误报数据
  43. If not isNumeric(allowedit) Then allowedit=0
  44. If cs_country="" or Not isNumeric(cs_country) Then cs_country=0
  45. If cs_from="" or Not isNumeric(cs_from) Then cs_from=0
  46. If cs_deal="" or Not isNumeric(cs_deal) Then cs_deal=1
  47. If cs_type="" or Not isNumeric(cs_type) Then cs_type=5
  48. If cs_belongClient="" or Not isNumeric(cs_belongClient) Then cs_belongClient=0
  49. cs_note=HtmlEncode(Request.Form("cs_note"))
  50. mytag=TextEncode(Request.Form("mytag"))
  51. mytag=replace(mytag,"&#60;&#47;span&#62;&#60;span&#62;",",")
  52. mytag=replace(mytag,"&#60;&#47;span&#62;","")
  53. mytag=replace(mytag,"&#60;span&#62;","")
  54. mytag=split(mytag,",")
  55. If (instr(cs_code,";1688"))>0 Then cs_from=1 End If'1 为1688,2为国际站,判断阿里旺旺是否录入
  56. If (instr(cs_code,";阿里"))>0 Then cs_from=2 End If'1 为1688,2为国际站,判断阿里旺旺是否录入
  57. If allowedit<>1 Then
  58. If (cs_from=1 or cs_from=2) and cs_alibaba="" or isNull(cs_alibaba) Then
  59. Response.write "<script>alert('阿里旺旺为必填项');history.back();</script>"
  60. Conn.Close:Set Conn=Nothing
  61. Response.End
  62. End If
  63. If (instr(cs_code,"官网"))>0 Then cs_from=3 End If'3为官网
  64. If cs_from=3 and cs_tel="" and cs_whatsapp="" and cs_wechat=""Then
  65. Response.write "<script>alert('电话和WhatsApp为必填项');history.back();</script>"
  66. Conn.Close:Set Conn=Nothing
  67. Response.End
  68. End If
  69. If cs_from=8 and cs_wechat="" Then '8为市场客户
  70. Response.write "<script>alert('微信为必填项');history.back();</script>"
  71. Conn.Close:Set Conn=Nothing
  72. Response.End
  73. End If
  74. If cs_from=12 and cs_facebook="" Then '12为Facebook
  75. Response.write "<script>alert('Facebook为必填项');history.back();</script>"
  76. Conn.Close:Set Conn=Nothing
  77. Response.End
  78. End If
  79. End If
  80. Set Rs=Server.CreateObject("ADODB.RecordSet")
  81. If id="" or Not isNumeric(id) Then
  82. act="addSave"
  83. Else
  84. Rs.Open "Select * from Customer where id="&id,conn,1,1
  85. If Not Rs.bof and Not Rs.eof Then
  86. if Rs("cs_belong")=cint(cs_belong) Then
  87. act="editSave"
  88. Else
  89. Response.write "<script>alert('抱歉,该客户属于另一业务,你没有权限修改');history.back();</script>"
  90. Rs.close:Set Rs=Nothing
  91. Conn.Close:Set Conn=Nothing
  92. Response.End
  93. End if
  94. Else
  95. Response.write "<script>alert('没有此客户!');history.back();</script>"
  96. Rs.close:Set Rs=Nothing
  97. Conn.Close:Set Conn=Nothing
  98. Response.End
  99. End if
  100. Rs.close
  101. End if
  102. If cs_code="" or IsNull(cs_code) Then
  103. Response.write "<script>alert('客户编码不能为空');history.back();</script>"
  104. Conn.Close:Set Conn=Nothing
  105. Response.End
  106. End IF
  107. checkStr="Select * from Customer where cs_belong<>"&Session("employee_id")&" and (id=0 "
  108. If cs_tel<>"" Then
  109. checkStr=checkStr & "or cs_telformat like '%"&Mid(cs_telformat,4,9)&"%'" & " or cs_wechat like '%"&Mid(cs_telformat,4,9)&"%'" & " or cs_whatsappformat like '%"&cs_telformat&"%'"
  110. Dupli="电话:"&cs_tel
  111. End IF '查电话
  112. If cs_email<>"" Then
  113. checkStr=checkStr & " or cs_email='"&cs_email&"'"
  114. Dupli=Dupli&"邮箱:"&cs_email
  115. End If '查邮件
  116. If cs_whatsapp<>"" Then
  117. checkStr=checkStr & " or cs_whatsappformat like '%"&mid(cs_whatsappformat,4,9)&"%'" & " or cs_telformat like '%"&mid(cs_whatsappformat,4,9)&"%'"
  118. Dupli=Dupli&"WhatsApp:"&cs_whatsapp
  119. End If '查whatsapp
  120. If cs_wechat<>"" Then
  121. If len(cs_wechat)<10 Then
  122. checkStr=checkStr & " or cs_wechat like '%"&cs_wechat&"'" & " or cs_telformat like '%"&cs_wechat&"'"
  123. Else
  124. checkStr=checkStr & " or cs_wechat like '%"&mid(cs_wechat,3,12)&"%'" & " or cs_telformat like '%"&mid(cs_wechat,3,12)&"%'"
  125. End If
  126. Dupli=Dupli&"微信:"&cs_wechat
  127. End If '查微信
  128. If cs_linkedin<>"" Then
  129. checkStr=checkStr & " or cs_linkedin like '%"&cs_linkedin&"%'"
  130. Dupli=Dupli&"Linked:"&cs_linkedin
  131. End If '查领英
  132. If cs_facebook<>"" Then
  133. checkStr=checkStr & " or cs_facebook like '%"&cs_facebook&"%'"
  134. Dupli=Dupli&"Facebook:"&cs_facebook
  135. End If '查facebook
  136. If cs_alibaba<>"" Then
  137. If len(cs_alibaba)<10 Then
  138. checkStr=checkStr & " or cs_alibaba like '"&cs_alibaba&"'"
  139. Else
  140. checkStr=checkStr & " or cs_alibaba like '%"&mid(cs_alibaba,4,12)&"%'"
  141. End If
  142. Dupli=Dupli&"阿里旺旺:"&cs_alibaba
  143. End If '查alibaba
  144. checkStr=checkStr & " ) Order by id asc"
  145. If allowedit<>1 Then
  146. Rs.Open checkStr,conn,1,3
  147. If not Rs.bof and not Rs.eof Then'信息重复
  148. Set Rs1=Server.CreateObject("ADODB.RecordSet")
  149. Rs1.Open "Select em_user from employee where id="&Rs("cs_belong"),conn,1,1
  150. owner=TextUnCode(Rs1("em_user"))
  151. Rs1.close
  152. Set Rs1=Nothing
  153. if DateDiff("n",cs_addtime,Rs("cs_addtime"))>0 Then
  154. tstr="Insert into logRecord (loginName,loginIp,loginTime,loginAct) values('"&Session("employee_name")&"','"&getIp()&"','"&now()&"','"&Session("employee_name")&"编辑客户"""&cs_code&""",该客户与"""&TextUncode(Rs("cs_code"))&"""高度类似,<br>重复项为:"&Dupli&"<br>客户由:"&Session("employee_name")&cs_addtime&"首次录入')"
  155. Else
  156. tstr="Insert into logRecord (loginName,loginIp,loginTime,loginAct) values('"&Session("employee_name")&"','"&getIp()&"','"&now()&"','"&Session("employee_name")&"编辑客户"""&cs_code&""",该客户与"""&TextUncode(Rs("cs_code"))&"""高度类似,<br>重复项为:"&Dupli&"<br>客户由:"&owner&Rs("cs_addtime")&"首次录入')"
  157. End if
  158. Conn.execute(tstr)
  159. Response.write"<script>alert('录入信息\n与"&owner&"客户编号:"&TextUncode(Rs("cs_code"))&" \n高度类似,未能保存,请联系管理员核实!');history.back();</script>"
  160. Rs.close:Set Rs=Nothing
  161. Conn.Close:Set Conn=Nothing
  162. Response.End
  163. End IF
  164. Rs.close
  165. End If
  166. If act="editSave" or allowedit=1 Then
  167. hrefstr = "/customers.asp?Keys="&Keys&"&fliterBusiness="&fliterBusiness&"&fliterDeal="&fliterDeal&"&Page="&page
  168. Rs.Open "Select * from Customer where id="&id,conn,1,3
  169. Rs("cs_code")=cs_code
  170. Rs("cs_company")=cs_company
  171. Rs("cs_name")=cs_name
  172. Rs("cs_country")=cs_country
  173. Rs("cs_from")=cs_from
  174. Rs("cs_tel")=cs_tel
  175. Rs("cs_wechat")=cs_wechat
  176. Rs("cs_whatsapp")=cs_whatsapp
  177. Rs("cs_email")=cs_email
  178. Rs("cs_linkedin")=cs_linkedin
  179. Rs("cs_facebook")=cs_facebook
  180. Rs("cs_address")=cs_address
  181. Rs("cs_type")=cs_type
  182. Rs("cs_alibaba")=cs_alibaba
  183. Rs("cs_updatetime")=cs_updatetime
  184. Rs("cs_belong")=cs_belong
  185. Rs("cs_belongclient")=cs_belongclient
  186. Rs("cs_state")=cs_state
  187. Rs("cs_telformat")=cs_telformat
  188. Rs("cs_whatsappformat")=cs_whatsappformat
  189. Rs("cs_deal")=cs_deal
  190. Rs("cs_note")=cs_note
  191. IF cs_deal=3 and IsNull(Rs("cs_dealdate")) Then Rs("cs_dealdate")=now() End If
  192. Rs.update
  193. '保存标签
  194. conn.execute("delete from tagTable where customerId="&id&"")
  195. for i=0 to ubound(mytag)
  196. conn.execute("Insert into tagTable (tagName,employeeId,customerId) values('"&mytag(i)&"',"&Session("employee_id")&","&id&")")
  197. Next
  198. '保存标签end
  199. Rs.close
  200. Set Rs=Nothing
  201. Conn.Close:Set Conn=Nothing
  202. response.write "<script>location.href='../"&hrefstr&"';</script>"
  203. Else '新增
  204. Rs.Open "Select * from Customer",conn,1,3
  205. Rs.addNew()
  206. Rs("cs_code")=cs_code
  207. Rs("cs_company")=cs_company
  208. Rs("cs_name")=cs_name
  209. Rs("cs_country")=cs_country
  210. Rs("cs_from")=cs_from
  211. Rs("cs_tel")=cs_tel
  212. Rs("cs_wechat")=cs_wechat
  213. Rs("cs_whatsapp")=cs_whatsapp
  214. Rs("cs_email")=cs_email
  215. Rs("cs_linkedin")=cs_linkedin
  216. Rs("cs_facebook")=cs_facebook
  217. Rs("cs_alibaba")=cs_alibaba
  218. Rs("cs_address")=cs_address
  219. Rs("cs_telBu")=cs_tel '以下Bu for BackUp防止误删
  220. Rs("cs_wechatBu")=cs_wechat
  221. Rs("cs_whatsappBu")=cs_whatsapp
  222. Rs("cs_emailBu")=cs_email
  223. Rs("cs_linkedinBu")=cs_linkedin
  224. Rs("cs_facebookBu")=cs_facebook
  225. Rs("cs_alibabaBu")=cs_alibaba
  226. Rs("cs_type")=cs_type
  227. Rs("cs_addtime")=now()
  228. Rs("cs_updatetime")=now()
  229. Rs("cs_belong")=cs_belong
  230. Rs("cs_belongClient")=cs_belongClient
  231. Rs("cs_state")=cs_state
  232. Rs("cs_telformat")=cs_telformat
  233. Rs("cs_whatsappformat")=cs_whatsappformat
  234. Rs("cs_deal")=cs_deal
  235. Rs("colortag")=0
  236. Rs("cs_note")=cs_note
  237. Rs("cs_chain")=cs_belong
  238. Rs("is_silent")=0
  239. IF cs_deal=3 Then Rs("cs_dealdate")=now() End If
  240. Rs.update
  241. Rs.close
  242. Rs.OPEN "select top 1 id from Customer order by id desc",conn,1,1
  243. id=Rs("id")
  244. Rs.close
  245. '保存标签
  246. for i=0 to ubound(mytag)
  247. conn.execute("Insert into tagTable (tagName,employeeId,customerId) values('"&mytag(i)&"',"&Session("employee_id")&","&id&")")
  248. Next
  249. '保存标签end
  250. Set Rs=Nothing
  251. Conn.Close:Set Conn=Nothing
  252. response.write "<script>location.href='../customerAdd.asp';</script>"
  253. End If
  254. %>
  255. </body>
  256. </html>