ListPayRecord.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require "../".LoadLang("pub/fun.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. //验证权限
  20. CheckLevel($logininid,$loginin,$classid,"pay");
  21. //批量删除
  22. function DelPayRecord_all($id,$userid,$username){
  23. global $empire,$dbtbpre;
  24. //验证权限
  25. CheckLevel($userid,$username,$classid,"pay");
  26. $count=count($id);
  27. if(!$count)
  28. {
  29. printerror("NotDelPayRecordid","history.go(-1)");
  30. }
  31. for($i=0;$i<$count;$i++)
  32. {
  33. $add.=" id='".intval($id[$i])."' or";
  34. }
  35. $add=substr($add,0,strlen($add)-3);
  36. $sql=$empire->query("delete from {$dbtbpre}enewspayrecord where".$add);
  37. if($sql)
  38. {
  39. //操作日志
  40. insert_dolog("");
  41. printerror("DelPayRecordSuccess","ListPayRecord.php".hReturnEcmsHashStrHref2(1));
  42. }
  43. else
  44. {
  45. printerror("DbError","history.go(-1)");
  46. }
  47. }
  48. $enews=$_POST['enews'];
  49. if(empty($enews))
  50. {$enews=$_GET['enews'];}
  51. if($enews)
  52. {
  53. hCheckEcmsRHash();
  54. }
  55. //批量删除
  56. if($enews=="DelPayRecord_all")
  57. {
  58. $id=$_POST['id'];
  59. DelPayRecord_all($id,$logininid,$loginin);
  60. }
  61. $line=25;//每页显示条数
  62. $page_line=18;//每页显示链接数
  63. $page=(int)$_GET['page'];
  64. $page=RepPIntvar($page);
  65. $start=0;
  66. $offset=$page*$line;//总偏移量
  67. $query="select id,userid,username,orderid,money,posttime,paybz,type,payip from {$dbtbpre}enewspayrecord";
  68. $totalquery="select count(*) as total from {$dbtbpre}enewspayrecord";
  69. //搜索
  70. $search='';
  71. $search.=$ecms_hashur['ehref'];
  72. $where='';
  73. if($_GET['sear']==1)
  74. {
  75. $search.="&sear=1";
  76. $a='';
  77. $startday=RepPostVar($_GET['startday']);
  78. $endday=RepPostVar($_GET['endday']);
  79. if($startday&&$endday)
  80. {
  81. $search.="&startday=$startday&endday=$endday";
  82. $a.="posttime<='".$endday." 23:59:59' and posttime>='".$startday." 00:00:00'";
  83. }
  84. $keyboard=RepPostVar($_GET['keyboard']);
  85. if($keyboard)
  86. {
  87. $and=$a?' and ':'';
  88. $show=RepPostStr($_GET['show'],1);
  89. if($show==1)
  90. {
  91. $a.=$and."username like '%$keyboard%'";
  92. }
  93. elseif($show==2)
  94. {
  95. $a.=$and."payip like '%$keyboard%'";
  96. }
  97. elseif($show==3)
  98. {
  99. $a.=$and."paybz like '%$keyboard%'";
  100. }
  101. else
  102. {
  103. $a.=$and."orderid like '%$keyboard%'";
  104. }
  105. $search.="&keyboard=$keyboard&show=$show";
  106. }
  107. if($a)
  108. {
  109. $where.=" where ".$a;
  110. }
  111. $query.=$where;
  112. $totalquery.=$where;
  113. }
  114. $num=$empire->gettotal($totalquery);//取得总条数
  115. $query=$query." order by id desc limit $offset,$line";
  116. $sql=$empire->query($query);
  117. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  118. ?>
  119. <html>
  120. <head>
  121. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  122. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  123. <title>在线支付</title>
  124. <script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  125. <script>
  126. function CheckAll(form)
  127. {
  128. for (var i=0;i<form.elements.length;i++)
  129. {
  130. var e = form.elements[i];
  131. if (e.name != 'chkall')
  132. e.checked = form.chkall.checked;
  133. }
  134. }
  135. </script>
  136. </head>
  137. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  138. <tr>
  139. <td>位置:在线支付&gt; <a href="ListPayRecord.php<?=$ecms_hashur['whehref']?>">管理支付记录</a></td>
  140. <td width="50%"><div align="right" class="emenubutton">
  141. <input type="button" name="Submit5" value="管理支付接口" onclick="self.location.href='PayApi.php<?=$ecms_hashur['whehref']?>';">
  142. &nbsp;&nbsp;
  143. <input type="button" name="Submit5" value="支付参数设置" onclick="self.location.href='SetPayFen.php<?=$ecms_hashur['whehref']?>';">
  144. </div></td>
  145. </tr>
  146. </table>
  147. <br>
  148. <table width="100%" align=center cellpadding=0 cellspacing=0>
  149. <form name=searchlogform method=get action='ListPayRecord.php'>
  150. <?=$ecms_hashur['eform']?>
  151. <tr>
  152. <td height="25"> <div align="center">时间从
  153. <input name="startday" type="text" value="<?=$startday?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  154. <input name="endday" type="text" value="<?=$endday?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  155. ,关键字:
  156. <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
  157. <select name="show" id="show">
  158. <option value="0"<?=$show==0?' selected':''?>>订单号</option>
  159. <option value="1"<?=$show==1?' selected':''?>>汇款者</option>
  160. <option value="2"<?=$show==2?' selected':''?>>汇款IP</option>
  161. <option value="3"<?=$show==3?' selected':''?>>备注</option>
  162. </select>
  163. <input name=submit1 type=submit id="submit12" value=搜索>
  164. <input name="sear" type="hidden" id="sear" value="1">
  165. </div></td>
  166. </tr>
  167. </form>
  168. </table>
  169. <form name="form2" method="post" action="ListPayRecord.php" onsubmit="return confirm('确认要删除?');">
  170. <table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class="tableborder">
  171. <?=$ecms_hashur['form']?>
  172. <tr class="header">
  173. <td width="3%"><div align="center">
  174. <input type=checkbox name=chkall value=on onClick="CheckAll(this.form)">
  175. </div></td>
  176. <td width="19%"><div align="center">订单号</div></td>
  177. <td width="13%"><div align="center">汇款者</div></td>
  178. <td width="10%" height="25"><div align="center">金额</div></td>
  179. <td width="15%"><div align="center">汇款时间</div></td>
  180. <td width="12%" height="25"><div align="center">汇款IP</div></td>
  181. <td width="20%"><div align="center">备注</div></td>
  182. <td width="8%" height="25"><div align="center">接口</div></td>
  183. </tr>
  184. <?
  185. while($r=$empire->fetch($sql))
  186. {
  187. if($r['userid'])
  188. {
  189. $username="<a href='../member/AddMember.php?enews=EditMember&userid=$r[userid]".$ecms_hashur['ehref']."'>$r[username]</a>";
  190. }
  191. else
  192. {
  193. $username="游客(".$r[username].")";
  194. }
  195. ?>
  196. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  197. <td><div align="center">
  198. <input name="id[]" type="checkbox" id="id[]" value="<?=$r[id]?>">
  199. </div></td>
  200. <td><div align="center">
  201. <?=$r[orderid]?>
  202. </div></td>
  203. <td><div align="center">
  204. <?=$username?>
  205. </div></td>
  206. <td height="25"><div align="center">
  207. <?=$r[money]?>
  208. </div></td>
  209. <td><div align="center">
  210. <?=$r[posttime]?>
  211. </div></td>
  212. <td height="25"><div align="center">
  213. <?=$r[payip]?>
  214. </div></td>
  215. <td><div align="center">
  216. <?=$r[paybz]?>
  217. </div></td>
  218. <td height="25"><div align="center"><?=$r[type]?></div></td>
  219. </tr>
  220. <?
  221. }
  222. ?>
  223. <tr bgcolor="#FFFFFF">
  224. <td height="25" colspan="8">&nbsp;
  225. <?=$returnpage?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  226. <input type="submit" name="Submit" value="批量删除"> <input name="enews" type="hidden" id="enews" value="DelPayRecord_all"></td>
  227. </tr>
  228. </table>
  229. </form>
  230. <?
  231. db_close();
  232. $empire=null;
  233. ?>
  234. </body>
  235. </html>