team.asp 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <!--#include file="Conn.asp"--><%Checklogin()%>
  2. <%
  3. datestart=Request.Form("start")
  4. dateend=Request.Form("end")
  5. currentMonth=year(date)&"-"&month(date)&"-1 00:00:00"
  6. if datestart="" or Not IsDate(datestart) Then
  7. datestart=currentMonth
  8. else
  9. datestart=FormatTime(datestart,"yyyy-mm-dd")&" 00:00:00"
  10. End if
  11. if dateend="" or Not IsDate(dateend) Then
  12. dateend=now()
  13. else
  14. dateend=FormatTime(dateend,"yyyy-mm-dd")&" 23:59:59"
  15. End if
  16. %>
  17. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  18. <html xmlns="http://www.w3.org/1999/xhtml">
  19. <head>
  20. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  21. <title>管理区域</title>
  22. <link rel="stylesheet" href="css/common.css" type="text/css" />
  23. <link rel="stylesheet" href="css/bootstrap-datepicker3.min.css" type="text/css" />
  24. <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
  25. <script type="text/javascript" src="js/js.js"></script>
  26. <script type="text/javascript" src="js/bootstrap-datepicker.min.js"></script>
  27. <script type="text/javascript" src="js/bootstrap-datepicker.zh-CN.min.js"></script>
  28. <script>
  29. $(function(){
  30. $('#sandbox-container .input-daterange').datepicker({
  31. maxViewMode: 2,
  32. language: "zh-CN"
  33. });
  34. })
  35. </script>
  36. </head>
  37. <body class="clear">
  38. <!--#include file="panel.asp"-->
  39. <div id="man_zone">
  40. <div class="dashboard">
  41. <h1 class="dashboardHead">各组数据</h1>
  42. <form method="post" action="team.asp">
  43. <div class="sandbox-containe" id="sandbox-container">
  44. <div class="input-daterange input-group" id="datepicker">
  45. <span class="input-group-addon">日期筛选</span>
  46. <input type="text" class="input-sm form-control" autocomplete="off" value="<%=datestart%>" name="start">
  47. <span class="input-group-addon">至</span>
  48. <input type="text" class="input-sm form-control" autocomplete="off" value="<%=dateend%>" name="end">
  49. </div>
  50. <input type="submit" class="submit" value="筛选">
  51. </div>
  52. </form>
  53. <table class="teamStatistics" border="1px" bordercollapse="collapse" cellspacing="0" cellpadding="5" bordercolor="#DDD">
  54. <tr>
  55. <td>组长</td>
  56. <td>组员</td>
  57. <td>总客户数量</td>
  58. <td width="25%">本月成交</td>
  59. <td>进公海客户总数</td>
  60. <td>公海认领</td>
  61. </tr>
  62. <%
  63. Set Rs=Server.CreateObject("ADODB.RecordSet")
  64. Rs.Open "select id,em_user from employee where em_role=0 and id<>13",conn,1,1
  65. Do while Not Rs.bof and Not Rs.eof
  66. clstr=""
  67. Set Rs1=Server.CreateObject("ADODB.RecordSet")
  68. Rs1.Open "Select count(DISTINCT cs_code) as c1 from customer where cs_belong="&Rs("id"),conn,1,1
  69. c1=Rs1("c1")'总客户数量
  70. Rs1.close
  71. Rs1.Open "Select count(id) as c2 from customer where cs_deal<>3 and cs_deal<>0 and cs_type<>2 and DATEDIFF(day,cs_updatetime,getDate())>90 and cs_belongclient=0 and cs_belong="&Rs("id"),conn,1,1
  72. c2=Rs1("c2")'进入公海
  73. Rs1.close
  74. Rs1.Open "Select DISTINCT cs_code from customer where cs_dealdate>'"&datestart&"' and cs_dealdate<='"&dateend&"' and cs_deal=3 and cs_belong="&Rs("id"),conn,1,1
  75. c3=Rs1.RecordCount'成交
  76. Do while Not Rs1.bof and Not Rs1.eof
  77. clstr=clstr&Rs1("cs_code")&"<br>"
  78. Rs1.moveNext
  79. loop
  80. Rs1.close
  81. Rs1.Open "Select count(DISTINCT cs_code) as c4 from customer where cs_claimdate>'"&datestart&"' and cs_claimdate<='"&dateend&"' and cs_belong="&Rs("id"),conn,1,1
  82. c4=Rs1("c4")'认领
  83. Rs1.close
  84. Rs1.Open "Select count(id) as c5 from employee where em_role="&Rs("id"),conn,1,1
  85. c5=Rs1("c5")
  86. Rs1.close
  87. Set Rs1=Nothing
  88. %>
  89. <tr>
  90. <td rowspan="<%=1+c5%>"><%=Rs("em_user")%></td>
  91. <td><%=Rs("em_user")%></td>
  92. <td><%=c1%></td>
  93. <td><%=clstr%></td>
  94. <td><%=c2%></td>
  95. <td><%=c4%></td>
  96. </tr>
  97. <%
  98. Set Rs1=Server.CreateObject("ADODB.RecordSet")
  99. Rs1.Open "Select id,em_user from employee Where em_role="&Rs("id"),conn,1,1
  100. Do while Not Rs1.bof and Not Rs1.eof
  101. clstr=""
  102. Set Rs2=Server.CreateObject("ADODB.RecordSet")
  103. Rs2.Open "Select count(DISTINCT cs_code) as c1 from customer where cs_belong="&Rs1("id"),conn,1,1
  104. c1=Rs2("c1")'总客户数量
  105. Rs2.close
  106. Rs2.Open "Select count(DISTINCT cs_code) as c2 from customer where cs_deal<>3 and cs_deal<>0 and cs_type<>2 and DATEDIFF(day,cs_updatetime,getDate())>90 and cs_belongclient=0 and cs_belong="&Rs1("id"),conn,1,1
  107. c2=Rs2("c2")'进入公海
  108. Rs2.close
  109. Rs2.Open "Select DISTINCT cs_code from customer where cs_dealdate>'"&datestart&"' and cs_dealdate<='"&dateend&"' and cs_deal=3 and cs_belong="&Rs1("id"),conn,1,1
  110. c3=Rs2.RecordCount'成交
  111. Do while Not Rs2.bof and Not Rs2.eof
  112. clstr=clstr&Rs2("cs_code")&"<br>"
  113. Rs2.moveNext
  114. loop
  115. Rs2.close
  116. Rs2.Open "Select count(id) as c4 from customer where cs_claimdate>'"&datestart&"' and cs_claimdate<='"&dateend&"' and cs_belong="&Rs1("id"),conn,1,1
  117. c4=Rs2("c4")'认领
  118. Rs2.close
  119. Set Rs2=Nothing
  120. Response.write "<tr><td>"&Rs1("em_user")&"</td><td>"&c1&"</td><td>"&clstr&"</td><td>"&c2&"</td><td>"&c4&"</td></tr>"
  121. Rs1.moveNext
  122. loop
  123. Rs1.close
  124. Set Rs1=Nothing
  125. Rs.moveNext
  126. loop
  127. Rs.close
  128. %>
  129. </table>
  130. <%Set Rs=Nothing:Conn.Close:Set Conn=Nothing%>
  131. </div>
  132. </div>
  133. </body>
  134. </html>