ListCard.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  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,"card");
  21. //增加点卡
  22. function AddCard($add,$userid,$username){
  23. global $empire,$dbtbpre;
  24. if(!$add[card_no]||!$add[password]||!$add[money])
  25. {printerror("EmptyCard","history.go(-1)");}
  26. //验证权限
  27. CheckLevel($userid,$username,$classid,"card");
  28. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewscard where card_no='$add[card_no]' limit 1");
  29. if($num)
  30. {printerror("ReCard","history.go(-1)");}
  31. $cardtime=date("Y-m-d H:i:s");
  32. $add[cardfen]=(int)$add[cardfen];
  33. $add[money]=(int)$add[money];
  34. $add[carddate]=(int)$add[carddate];
  35. $add[cdgroupid]=(int)$add[cdgroupid];
  36. $add[cdzgroupid]=(int)$add[cdzgroupid];
  37. $add['card_no']=hRepPostStr($add['card_no'],1);
  38. $add['password']=hRepPostStr($add['password'],1);
  39. $add['endtime']=hRepPostStr($add['endtime'],1);
  40. $sql=$empire->query("insert into {$dbtbpre}enewscard(card_no,password,cardfen,money,cardtime,endtime,carddate,cdgroupid,cdzgroupid) values('$add[card_no]','$add[password]',$add[cardfen],$add[money],'$cardtime','$add[endtime]',$add[carddate],$add[cdgroupid],$add[cdzgroupid]);");
  41. $cardid=$empire->lastid();
  42. if($sql)
  43. {
  44. //操作日志
  45. insert_dolog("cardid=$cardid&card_no=$add[card_no]&cardfen=$add[cardfen]&carddate=$add[carddate]");
  46. printerror("AddCardSuccess","AddCard.php?enews=AddCard".hReturnEcmsHashStrHref2(0));
  47. }
  48. else
  49. {printerror("DbError","history.go(-1)");}
  50. }
  51. //批量增加点卡
  52. function AddMoreCard($add,$userid,$username){
  53. global $empire,$dbtbpre;
  54. $donum=(int)$add['donum'];
  55. $cardnum=(int)$add['cardnum'];
  56. $passnum=(int)$add['passnum'];
  57. $add[cardfen]=(int)$add[cardfen];
  58. $add[money]=(int)$add[money];
  59. $add[carddate]=(int)$add[carddate];
  60. $add[cdgroupid]=(int)$add[cdgroupid];
  61. $add[cdzgroupid]=(int)$add[cdzgroupid];
  62. $add['endtime']=hRepPostStr($add['endtime'],1);
  63. if(!$donum||!$cardnum||!$passnum||!$add[money])
  64. {printerror("EmptyMoreCard","history.go(-1)");}
  65. //验证权限
  66. CheckLevel($userid,$username,$classid,"card");
  67. $cardtime=date("Y-m-d H:i:s");
  68. //写入卡号
  69. $no=1;
  70. while($no<=$donum)
  71. {
  72. $card_no=strtolower(no_make_password($cardnum));
  73. $password=strtolower(no_make_password($passnum));
  74. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewscard where card_no='$card_no' limit 1");
  75. if(!$num)
  76. {
  77. $sql=$empire->query("insert into {$dbtbpre}enewscard(card_no,password,cardfen,money,cardtime,endtime,carddate,cdgroupid,cdzgroupid) values('$card_no','$password',$add[cardfen],$add[money],'$cardtime','$add[endtime]',$add[carddate],$add[cdgroupid],$add[cdzgroupid]);");
  78. $no+=1;
  79. }
  80. }
  81. if($sql)
  82. {
  83. //操作日志
  84. insert_dolog("cardnum=$donum&cardfen=$add[cardfen]&carddate=$add[carddate]");
  85. printerror("AddMoreCardSuccess","AddMoreCard.php".hReturnEcmsHashStrHref2(1));
  86. }
  87. else
  88. {printerror("DbError","history.go(-1)");}
  89. }
  90. //修改点卡
  91. function EditCard($add,$userid,$username){
  92. global $empire,$time,$dbtbpre;
  93. $add[cardid]=(int)$add[cardid];
  94. if(!$add[card_no]||!$add[password]||!$add[money]||!$add[cardid])
  95. {printerror("EmptyCard","history.go(-1)");}
  96. //验证权限
  97. CheckLevel($userid,$username,$classid,"card");
  98. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewscard where card_no='$add[card_no]' and cardid<>".$add[cardid]." limit 1");
  99. if($num)
  100. {printerror("ReCard","history.go(-1)");}
  101. $add[cardfen]=(int)$add[cardfen];
  102. $add[money]=(int)$add[money];
  103. $add[carddate]=(int)$add[carddate];
  104. $add[cdgroupid]=(int)$add[cdgroupid];
  105. $add[cdzgroupid]=(int)$add[cdzgroupid];
  106. $add['card_no']=hRepPostStr($add['card_no'],1);
  107. $add['password']=hRepPostStr($add['password'],1);
  108. $add['endtime']=hRepPostStr($add['endtime'],1);
  109. $sql=$empire->query("update {$dbtbpre}enewscard set card_no='$add[card_no]',password='$add[password]',cardfen=$add[cardfen],money=$add[money],endtime='$add[endtime]',carddate=$add[carddate],cdgroupid=$add[cdgroupid],cdzgroupid=$add[cdzgroupid] where cardid='$add[cardid]'");
  110. if($sql)
  111. {
  112. //操作日志
  113. insert_dolog("cardid=$add[cardid]&card_no=$add[card_no]&cardfen=$add[cardfen]&carddate=$add[carddate]");
  114. printerror("EditCardSuccess","ListCard.php?time=$time".hReturnEcmsHashStrHref2(0));
  115. }
  116. else
  117. {printerror("DbError","history.go(-1)");}
  118. }
  119. //删除点卡
  120. function DelCard($cardid,$userid,$username){
  121. global $empire,$time,$dbtbpre;
  122. $cardid=(int)$cardid;
  123. if(!$cardid)
  124. {printerror("NotChangeCardid","history.go(-1)");}
  125. //验证权限
  126. CheckLevel($userid,$username,$classid,"card");
  127. $r=$empire->fetch1("select card_no,cardfen,carddate from {$dbtbpre}enewscard where cardid='$cardid'");
  128. $sql=$empire->query("delete from {$dbtbpre}enewscard where cardid='$cardid'");
  129. if($sql)
  130. {
  131. //操作日志
  132. insert_dolog("cardid=$cardid&card_no=$r[card_no]&cardfen=$r[cardfen]&carddate=$r[carddate]");
  133. printerror("DelCardSuccess","ListCard.php?time=$time".hReturnEcmsHashStrHref2(0));
  134. }
  135. else
  136. {printerror("DbError","history.go(-1)");}
  137. }
  138. //批量删除点卡
  139. function DelCard_all($add,$userid,$username){
  140. global $empire,$time,$dbtbpre;
  141. $cardid=$add[cardid];
  142. $count=count($cardid);
  143. if(!$count)
  144. {
  145. printerror("NotChangeCardid","history.go(-1)");
  146. }
  147. //验证权限
  148. CheckLevel($userid,$username,$classid,"card");
  149. $ids='';
  150. $dh='';
  151. for($i=0;$i<$count;$i++)
  152. {
  153. $ids.=$dh.intval($cardid[$i]);
  154. $dh=',';
  155. }
  156. $sql=$empire->query("delete from {$dbtbpre}enewscard where cardid in (".$ids.")");
  157. if($sql)
  158. {
  159. //操作日志
  160. insert_dolog("");
  161. printerror("DelCardSuccess","ListCard.php?time=$add[time]".hReturnEcmsHashStrHref2(0));
  162. }
  163. else
  164. {printerror("DbError","history.go(-1)");}
  165. }
  166. $enews=$_POST['enews'];
  167. if(empty($enews))
  168. {$enews=$_GET['enews'];}
  169. if($enews)
  170. {
  171. hCheckEcmsRHash();
  172. }
  173. //增加点卡
  174. if($enews=="AddCard")
  175. {
  176. $add=$_POST['add'];
  177. AddCard($add,$logininid,$loginin);
  178. }
  179. //修改点卡
  180. elseif($enews=="EditCard")
  181. {
  182. $time=(int)$_POST['time'];
  183. $add=$_POST['add'];
  184. EditCard($add,$logininid,$loginin);
  185. }
  186. //删除点卡
  187. elseif($enews=="DelCard")
  188. {
  189. $time=(int)$_GET['time'];
  190. $cardid=$_GET['cardid'];
  191. DelCard($cardid,$logininid,$loginin);
  192. }
  193. elseif($enews=="AddMoreCard")//批量增加点卡
  194. {
  195. $add=$_POST;
  196. AddMoreCard($add,$logininid,$loginin);
  197. }
  198. elseif($enews=="DelCard_all")//批量删除点卡
  199. {
  200. DelCard_all($_POST,$logininid,$loginin);
  201. }
  202. $search=$ecms_hashur['ehref'];
  203. $time=$_GET['time'];
  204. if(empty($time))
  205. {$time=$_POST['time'];}
  206. $time=RepPostStr($time,1);
  207. $page=(int)$_GET['page'];
  208. $page=RepPIntvar($page);
  209. $start=0;
  210. $line=25;
  211. $page_line=25;
  212. $add="";
  213. //搜索
  214. $sear=$_POST['sear'];
  215. if(empty($sear))
  216. {$sear=$_GET['sear'];}
  217. $sear=RepPostStr($sear,1);
  218. if($sear)
  219. {
  220. $show=$_POST['show'];
  221. if(empty($show))
  222. {$show=$_GET['show'];}
  223. $show=RepPostStr($show,1);
  224. $keyboard=$_POST['keyboard'];
  225. if(empty($keyboard))
  226. {$keyboard=$_GET['keyboard'];}
  227. $keyboard=RepPostVar2($keyboard);
  228. if($show==1)
  229. {$add=" where card_no like '%$keyboard%'";}
  230. elseif($show==2)
  231. {$add=" where money='$keyboard'";}
  232. elseif($show==3)
  233. {$add=" where cardfen='$keyboard'";}
  234. else
  235. {$add=" where carddate='$keyboard'";}
  236. $search.="&sear=1&show=$show&keyboard=$keyboard";
  237. }
  238. //过期
  239. if($time)
  240. {
  241. $today=date("Y-m-d");
  242. $search.="&time=$time";
  243. if($add)
  244. {$add.=" and endtime<>'0000-00-00' and endtime<'$today'";}
  245. else
  246. {$add.=" where endtime<>'0000-00-00' and endtime<'$today'";}
  247. }
  248. $offset=$line*$page;
  249. $totalquery="select count(*) as total from {$dbtbpre}enewscard".$add;
  250. $num=$empire->gettotal($totalquery);
  251. $query="select cardid,card_no,password,cardfen,money,endtime,cardtime,carddate from {$dbtbpre}enewscard".$add;
  252. $query.=" order by cardid desc limit $offset,$line";
  253. $sql=$empire->query($query);
  254. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  255. ?>
  256. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  257. <html>
  258. <head>
  259. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  260. <title>管理点卡</title>
  261. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  262. <script>
  263. function CheckAll(form)
  264. {
  265. for (var i=0;i<form.elements.length;i++)
  266. {
  267. var e = form.elements[i];
  268. if (e.name != 'chkall')
  269. e.checked = form.chkall.checked;
  270. }
  271. }
  272. </script>
  273. </head>
  274. <body>
  275. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  276. <tr>
  277. <td width="50%">位置:<a href="ListCard.php<?=$ecms_hashur['whehref']?>">管理点卡</a></td>
  278. <td><div align="right" class="emenubutton">
  279. <input type="button" name="Submit5" value="增加点卡" onclick="self.location.href='AddCard.php?enews=AddCard<?=$ecms_hashur['ehref']?>';">
  280. &nbsp;&nbsp;
  281. <input type="button" name="Submit52" value="批量增加点卡" onclick="self.location.href='AddMoreCard.php<?=$ecms_hashur['whehref']?>';">
  282. &nbsp;&nbsp;
  283. <input type="button" name="Submit53" value="管理过期点卡" onclick="self.location.href='ListCard.php?time=1<?=$ecms_hashur['ehref']?>';">
  284. </div></td>
  285. </tr>
  286. </table>
  287. <br>
  288. <table width="100%" border="0" cellpadding="0" cellspacing="1">
  289. <form name=search method=get action=ListCard.php>
  290. <?=$ecms_hashur['eform']?>
  291. <tr bgcolor="#FFFFFF">
  292. <td height="25" colspan="6"> 搜索:
  293. <input name="keyboard" type="text" id="keyboard"> <select name="show" id="show">
  294. <option value="1">卡号</option>
  295. <option value="2">金额</option>
  296. <option value="3">点数</option>
  297. <option value="4">天数</option>
  298. </select> <input type="submit" name="Submit" value="搜索"> <input name="sear" type="hidden" id="sear" value="1">
  299. <input name="time" type="hidden" id="time" value="<?=$time?>"> </td>
  300. </tr>
  301. </form>
  302. </table>
  303. <table width="100%" border="0" cellpadding="0" cellspacing="1" class="tableborder">
  304. <form name="listcardform" method="post" action="ListCard.php" onsubmit="return confirm('确认要删除?');">
  305. <?=$ecms_hashur['form']?>
  306. <input type="hidden" name="enews" value="DelCard_all">
  307. <input name="time" type="hidden" id="time" value="<?=$time?>">
  308. <tr class="header">
  309. <td width="4%"><div align="center"></div></td>
  310. <td width="7%" height="25"> <div align="center">ID</div></td>
  311. <td width="36%" height="25"> <div align="center">卡号</div></td>
  312. <td width="14%" height="25"> <div align="center">金额(元)</div></td>
  313. <td width="12%"><div align="center">有效期</div></td>
  314. <td width="12%" height="25"> <div align="center">点数</div></td>
  315. <td width="15%" height="25"> <div align="center">操作</div></td>
  316. </tr>
  317. <?
  318. while($r=$empire->fetch($sql))
  319. {
  320. ?>
  321. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  322. <td><div align="center">
  323. <input name="cardid[]" type="checkbox" id="cardid[]" value="<?=$r[cardid]?>">
  324. </div></td>
  325. <td height="25"> <div align="center">
  326. <?=$r[cardid]?>
  327. </div></td>
  328. <td height="25"> <div align="center"> <a alt="End Time:<?=$r[endtime]?><br>Add Time:<?=$r[cardtime]?>">
  329. <?=$r[card_no]?>
  330. </a> </div></td>
  331. <td height="25"> <div align="center">
  332. <?=$r[money]?>
  333. </div></td>
  334. <td><div align="center"><?=$r[carddate]?></div></td>
  335. <td height="25"> <div align="center">
  336. <?=$r[cardfen]?>
  337. </div></td>
  338. <td height="25"> <div align="center">[<a href="AddCard.php?enews=EditCard&cardid=<?=$r[cardid]?>&time=<?=$time?><?=$ecms_hashur['ehref']?>">修改</a>]&nbsp;[<a href="ListCard.php?enews=DelCard&cardid=<?=$r[cardid]?>&time=<?=$time?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  339. </tr>
  340. <?
  341. }
  342. ?>
  343. <tr bgcolor="#FFFFFF">
  344. <td height="25"> <div align="center">
  345. <input type=checkbox name=chkall value=on onclick="CheckAll(this.form)">
  346. </div></td>
  347. <td height="25" colspan="6">&nbsp;
  348. <?=$returnpage?>
  349. &nbsp;&nbsp; <input type="submit" name="Submit2" value="删除选中"> </td>
  350. </tr>
  351. </form>
  352. </table>
  353. </body>
  354. </html>
  355. <?
  356. db_close();
  357. $empire=null;
  358. ?>