ListPrecode.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  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. require("class/hShopSysFun.php");
  8. $link=db_connect();
  9. $empire=new mysqlquery();
  10. $editor=1;
  11. //验证用户
  12. $lur=is_login();
  13. $logininid=$lur['userid'];
  14. $loginin=$lur['username'];
  15. $loginrnd=$lur['rnd'];
  16. $loginlevel=$lur['groupid'];
  17. $loginadminstyleid=$lur['adminstyleid'];
  18. //ehash
  19. $ecms_hashur=hReturnEcmsHashStrAll();
  20. //验证权限
  21. CheckLevel($logininid,$loginin,$classid,"precode");
  22. //返回会员组列表
  23. function ReturnPreGroupids($groupid){
  24. $count=count($groupid);
  25. if(!$count)
  26. {
  27. return '';
  28. }
  29. $gids='';
  30. $dh='';
  31. for($i=0;$i<$count;$i++)
  32. {
  33. $groupid[$i]=(int)$groupid[$i];
  34. if(!$groupid[$i])
  35. {
  36. continue;
  37. }
  38. $gids.=$dh.$groupid[$i];
  39. $dh=',';
  40. }
  41. if($gids)
  42. {
  43. $gids=','.$gids.',';
  44. }
  45. return $gids;
  46. }
  47. //增加优惠码
  48. function AddPrecode($add,$userid,$username){
  49. global $empire,$dbtbpre;
  50. if(!$add['prename']||!$add['precode']||!$add['premoney'])
  51. {
  52. printerror("EmptyPrecode","history.go(-1)");
  53. }
  54. //验证权限
  55. CheckLevel($userid,$username,$classid,"precode");
  56. $add['precode']=RepPostVar($add['precode']);
  57. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsshop_precode where precode='$add[precode]' limit 1");
  58. if($num)
  59. {
  60. printerror("RePrecode","history.go(-1)");
  61. }
  62. $addtime=time();
  63. $add['prename']=eaddslashes(ehtmlspecialchars($add['prename']));
  64. $add['premoney']=(int)$add['premoney'];
  65. $add['pretype']=(int)$add['pretype'];
  66. $add['reuse']=(int)$add['reuse'];
  67. $add['endtime']=$add['endtime']?to_time($add['endtime']):0;
  68. $add['musttotal']=(int)$add['musttotal'];
  69. $add['usenum']=(int)$add['usenum'];
  70. $groupids=ReturnPreGroupids($add['groupid']);
  71. $add['classid']=trim($add['classid']);
  72. $classids=$add['classid']?','.$add['classid'].',':'';
  73. $sql=$empire->query("insert into {$dbtbpre}enewsshop_precode(prename,precode,premoney,pretype,reuse,addtime,endtime,groupid,classid,musttotal,usenum) values('$add[prename]','$add[precode]','$add[premoney]','$add[pretype]','$add[reuse]','$addtime','$add[endtime]','$groupids','".eaddslashes($classids)."','$add[musttotal]','$add[usenum]');");
  74. $id=$empire->lastid();
  75. if($sql)
  76. {
  77. //操作日志
  78. insert_dolog("id=$id&precode=$add[precode]<br>premoney=$add[premoney]&pretype=$add[pretype]");
  79. printerror("AddPrecodeSuccess","AddPrecode.php?enews=AddPrecode".hReturnEcmsHashStrHref2(0));
  80. }
  81. else
  82. {printerror("DbError","history.go(-1)");}
  83. }
  84. //批量增加优惠码
  85. function AddMorePrecode($add,$userid,$username){
  86. global $empire,$dbtbpre;
  87. $donum=(int)$add['donum'];
  88. $precodenum=(int)$add['precodenum'];
  89. $add['prename']=eaddslashes(ehtmlspecialchars($add['prename']));
  90. $add['premoney']=(int)$add['premoney'];
  91. $add['pretype']=(int)$add['pretype'];
  92. $add['reuse']=(int)$add['reuse'];
  93. $add['endtime']=$add['endtime']?to_time($add['endtime']):0;
  94. $add['musttotal']=(int)$add['musttotal'];
  95. $add['usenum']=(int)$add['usenum'];
  96. $groupids=ReturnPreGroupids($add['groupid']);
  97. $add['classid']=trim($add['classid']);
  98. $classids=$add['classid']?','.$add['classid'].',':'';
  99. if(!$donum||!$precodenum||!$add['prename']||!$add['premoney'])
  100. {
  101. printerror("EmptyMorePrecode","history.go(-1)");
  102. }
  103. //验证权限
  104. CheckLevel($userid,$username,$classid,"precode");
  105. $addtime=time();
  106. //写入优惠码
  107. $no=1;
  108. while($no<=$donum)
  109. {
  110. $precode=strtoupper(make_password($precodenum));
  111. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsshop_precode where precode='$precode' limit 1");
  112. if(!$num)
  113. {
  114. $sql=$empire->query("insert into {$dbtbpre}enewsshop_precode(prename,precode,premoney,pretype,reuse,addtime,endtime,groupid,classid,musttotal,usenum) values('$add[prename]','$precode','$add[premoney]','$add[pretype]','$add[reuse]','$addtime','$add[endtime]','$groupids','".eaddslashes($classids)."','$add[musttotal]','$add[usenum]');");
  115. $no+=1;
  116. }
  117. }
  118. if($sql)
  119. {
  120. //操作日志
  121. insert_dolog("prenum=$donum&premoney=$add[premoney]&pretype=$add[pretype]");
  122. printerror("AddMorePrecodeSuccess","AddMorePrecode.php".hReturnEcmsHashStrHref2(1));
  123. }
  124. else
  125. {printerror("DbError","history.go(-1)");}
  126. }
  127. //修改优惠码
  128. function EditPrecode($add,$userid,$username){
  129. global $empire,$dbtbpre;
  130. $add['id']=(int)$add['id'];
  131. if(!$add['prename']||!$add['precode']||!$add['premoney']||!$add['id'])
  132. {
  133. printerror("EmptyPrecode","history.go(-1)");
  134. }
  135. //验证权限
  136. CheckLevel($userid,$username,$classid,"precode");
  137. $add['precode']=RepPostVar($add['precode']);
  138. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsshop_precode where precode='$add[precode]' and id<>".$add[id]." limit 1");
  139. if($num)
  140. {
  141. printerror("RePrecode","history.go(-1)");
  142. }
  143. $time=(int)$add['time'];
  144. $add['prename']=eaddslashes(ehtmlspecialchars($add['prename']));
  145. $add['premoney']=(int)$add['premoney'];
  146. $add['pretype']=(int)$add['pretype'];
  147. $add['reuse']=(int)$add['reuse'];
  148. $add['endtime']=$add['endtime']?to_time($add['endtime']):0;
  149. $add['musttotal']=(int)$add['musttotal'];
  150. $add['usenum']=(int)$add['usenum'];
  151. $groupids=ReturnPreGroupids($add['groupid']);
  152. $add['classid']=trim($add['classid']);
  153. $classids=$add['classid']?','.$add['classid'].',':'';
  154. $classids=eaddslashes($classids);
  155. $sql=$empire->query("update {$dbtbpre}enewsshop_precode set prename='$add[prename]',precode='$add[precode]',premoney='$add[premoney]',pretype='$add[pretype]',reuse='$add[reuse]',endtime='$add[endtime]',groupid='$groupids',classid='$classids',musttotal='$add[musttotal]',usenum='$add[usenum]' where id='$add[id]'");
  156. if($sql)
  157. {
  158. //操作日志
  159. insert_dolog("id=$add[id]&precode=$add[precode]<br>premoney=$add[premoney]&pretype=$add[pretype]");
  160. printerror("EditPrecodeSuccess","ListPrecode.php?time=$time".hReturnEcmsHashStrHref2(0));
  161. }
  162. else
  163. {printerror("DbError","history.go(-1)");}
  164. }
  165. //删除优惠码
  166. function DelPrecode($add,$userid,$username){
  167. global $empire,$dbtbpre;
  168. $id=(int)$add['id'];
  169. if(!$id)
  170. {
  171. printerror("NotChangePrecodeid","history.go(-1)");
  172. }
  173. //验证权限
  174. CheckLevel($userid,$username,$classid,"precode");
  175. $time=(int)$add['time'];
  176. $r=$empire->fetch1("select precode,premoney,pretype from {$dbtbpre}enewsshop_precode where id='$id'");
  177. $sql=$empire->query("delete from {$dbtbpre}enewsshop_precode where id='$id'");
  178. if($sql)
  179. {
  180. //操作日志
  181. insert_dolog("id=$id&precode=$r[precode]<br>premoney=$r[premoney]&pretype=$r[pretype]");
  182. printerror("DelPrecodeSuccess","ListPrecode.php?time=$time".hReturnEcmsHashStrHref2(0));
  183. }
  184. else
  185. {printerror("DbError","history.go(-1)");}
  186. }
  187. //批量删除优惠码
  188. function DelPrecode_all($add,$userid,$username){
  189. global $empire,$dbtbpre;
  190. $id=$add['id'];
  191. $count=count($id);
  192. if(!$count)
  193. {
  194. printerror("NotChangePrecodeid","history.go(-1)");
  195. }
  196. //验证权限
  197. CheckLevel($userid,$username,$classid,"precode");
  198. $ids='';
  199. $dh='';
  200. for($i=0;$i<$count;$i++)
  201. {
  202. $ids.=$dh.intval($id[$i]);
  203. $dh=',';
  204. }
  205. $time=(int)$add['time'];
  206. $sql=$empire->query("delete from {$dbtbpre}enewsshop_precode where id in (".$ids.")");
  207. if($sql)
  208. {
  209. //操作日志
  210. insert_dolog("");
  211. printerror("DelPrecodeSuccess","ListPrecode.php?time=$add[time]".hReturnEcmsHashStrHref2(0));
  212. }
  213. else
  214. {printerror("DbError","history.go(-1)");}
  215. }
  216. $enews=$_POST['enews'];
  217. if(empty($enews))
  218. {$enews=$_GET['enews'];}
  219. if($enews)
  220. {
  221. hCheckEcmsRHash();
  222. }
  223. if($enews=="AddPrecode")//增加优惠码
  224. {
  225. AddPrecode($_POST,$logininid,$loginin);
  226. }
  227. elseif($enews=="EditPrecode")//修改优惠码
  228. {
  229. EditPrecode($_POST,$logininid,$loginin);
  230. }
  231. elseif($enews=="DelPrecode")//删除优惠码
  232. {
  233. DelPrecode($_GET,$logininid,$loginin);
  234. }
  235. elseif($enews=="AddMorePrecode")//批量增加优惠码
  236. {
  237. AddMorePrecode($_POST,$logininid,$loginin);
  238. }
  239. elseif($enews=="DelPrecode_all")//批量删除优惠码
  240. {
  241. DelPrecode_all($_POST,$logininid,$loginin);
  242. }
  243. $page=(int)$_GET['page'];
  244. $page=RepPIntvar($page);
  245. $start=0;
  246. $line=25;
  247. $page_line=25;
  248. $add="";
  249. $and=' where ';
  250. $search="";
  251. $search.=$ecms_hashur['ehref'];
  252. $time=(int)$_GET['time'];
  253. //搜索
  254. $sear=(int)$_GET['sear'];
  255. if($sear)
  256. {
  257. $show=(int)$_GET['show'];
  258. $keyboard=$_GET['keyboard'];
  259. $keyboard=RepPostVar2($keyboard);
  260. if($keyboard)
  261. {
  262. if($show==1)//优惠码名称
  263. {
  264. $add.=$and."prename like '%$keyboard%'";
  265. }
  266. elseif($show==2)//优惠码
  267. {
  268. $add.=$and."precode='$keyboard'";
  269. }
  270. else//金额
  271. {
  272. $add.=$and."premoney='$keyboard'";
  273. }
  274. $and=' and ';
  275. }
  276. //类型
  277. $pretype=(int)$_GET['pretype'];
  278. if($pretype)
  279. {
  280. if($pretype==1)//金额
  281. {
  282. $add.=$and."pretype=0";
  283. }
  284. else//百分比
  285. {
  286. $add.=$and."pretype=1";
  287. }
  288. $and=' and ';
  289. }
  290. //重复使用
  291. $reuse=(int)$_GET['reuse'];
  292. if($reuse)
  293. {
  294. if($reuse==1)//一次性使用
  295. {
  296. $add.=$and."reuse=0";
  297. }
  298. else//可重复使用
  299. {
  300. $add.=$and."reuse=1";
  301. }
  302. $and=' and ';
  303. }
  304. $search.="&sear=1&pretype=$pretype&reuse=$reuse&show=$show&keyboard=$keyboard";
  305. }
  306. //过期
  307. if($time)
  308. {
  309. $todaytime=time();
  310. $search.="&time=$time";
  311. $add.=$and."endtime>0 and endtime<".$todaytime;
  312. }
  313. $offset=$line*$page;
  314. $totalquery="select count(*) as total from {$dbtbpre}enewsshop_precode".$add;
  315. $num=$empire->gettotal($totalquery);
  316. $query="select id,prename,precode,pretype,premoney,reuse,addtime,endtime from {$dbtbpre}enewsshop_precode".$add;
  317. $query.=" order by id desc limit $offset,$line";
  318. $sql=$empire->query($query);
  319. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  320. ?>
  321. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  322. <html>
  323. <head>
  324. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  325. <title>管理优惠码</title>
  326. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  327. <script>
  328. function CheckAll(form)
  329. {
  330. for (var i=0;i<form.elements.length;i++)
  331. {
  332. var e = form.elements[i];
  333. if (e.name != 'chkall')
  334. e.checked = form.chkall.checked;
  335. }
  336. }
  337. </script>
  338. </head>
  339. <body>
  340. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  341. <tr>
  342. <td width="50%">位置:<a href="ListPrecode.php<?=$ecms_hashur['whehref']?>">管理优惠码</a><?=$time?' &gt; 过期优惠码':''?></td>
  343. <td><div align="right" class="emenubutton">
  344. <input type="button" name="Submit5" value="增加优惠码" onclick="self.location.href='AddPrecode.php?enews=AddPrecode<?=$ecms_hashur['ehref']?>';">
  345. &nbsp;&nbsp;
  346. <input type="button" name="Submit52" value="批量增加优惠码" onclick="self.location.href='AddMorePrecode.php<?=$ecms_hashur['whehref']?>';">
  347. &nbsp;&nbsp;
  348. <input type="button" name="Submit53" value="管理过期优惠码" onclick="self.location.href='ListPrecode.php?time=1<?=$ecms_hashur['ehref']?>';">
  349. </div></td>
  350. </tr>
  351. </table>
  352. <br>
  353. <table width="100%" border="0" cellpadding="0" cellspacing="1">
  354. <form name=search method=GET action=ListPrecode.php>
  355. <?=$ecms_hashur['eform']?>
  356. <tr bgcolor="#FFFFFF">
  357. <td height="25" colspan="6"> 搜索:
  358. <select name="show" id="show">
  359. <option value="1"<?=$show==1?' selected':''?>>优惠码名称</option>
  360. <option value="2"<?=$show==2?' selected':''?>>优惠码</option>
  361. <option value="3"<?=$show==3?' selected':''?>>金额</option>
  362. </select>
  363. <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
  364. <select name="pretype" id="pretype">
  365. <option value="0"<?=$pretype==0?' selected':''?>>不限类型</option>
  366. <option value="1"<?=$pretype==1?' selected':''?>>减金额的优惠码</option>
  367. <option value="2"<?=$pretype==2?' selected':''?>>百分比的优惠码</option>
  368. </select>
  369. <select name="reuse" id="reuse">
  370. <option value="0"<?=$reuse==0?' selected':''?>>不限使用</option>
  371. <option value="1"<?=$reuse==1?' selected':''?>>一次性使用</option>
  372. <option value="2"<?=$reuse==2?' selected':''?>>可重复使用</option>
  373. </select>
  374. <input type="submit" name="Submit" value="搜索"> <input name="sear" type="hidden" id="sear" value="1">
  375. <input name="time" type="hidden" id="time" value="<?=$time?>"> </td>
  376. </tr>
  377. </form>
  378. </table>
  379. <table width="100%" border="0" cellpadding="0" cellspacing="1" class="tableborder">
  380. <form name="listcardform" method="post" action="ListPrecode.php" onsubmit="return confirm('确认要删除?');">
  381. <?=$ecms_hashur['form']?>
  382. <input type="hidden" name="enews" value="DelPrecode_all">
  383. <input name="time" type="hidden" id="time" value="<?=$time?>">
  384. <tr class="header">
  385. <td width="2%"><div align="center"></div></td>
  386. <td width="5%" height="25"> <div align="center">ID</div></td>
  387. <td width="28%"><div align="center">优惠码名称</div></td>
  388. <td width="31%" height="25"> <div align="center">优惠码</div></td>
  389. <td width="12%" height="25"> <div align="center">金额(元)</div></td>
  390. <td width="7%"><div align="center">重复使用</div></td>
  391. <td width="15%" height="25"> <div align="center">操作</div></td>
  392. </tr>
  393. <?
  394. while($r=$empire->fetch($sql))
  395. {
  396. if($r['pretype']==1)
  397. {
  398. $premoney=$r['premoney'].'%';
  399. }
  400. else
  401. {
  402. $premoney=$r['premoney'].'元';
  403. }
  404. ?>
  405. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  406. <td><div align="center">
  407. <input name="id[]" type="checkbox" id="id[]" value="<?=$r[id]?>">
  408. </div></td>
  409. <td height="25"> <div align="center">
  410. <?=$r[id]?>
  411. </div></td>
  412. <td><div align="center"><a title="<?="增加时间:".date('Y-m-d H:i:s',$r[addtime])."\r\n过期时间:".date('Y-m-d',$r[endtime])?>"><?=$r[prename]?></a></div></td>
  413. <td height="25"> <div align="center">
  414. <?=$r[precode]?>
  415. </div></td>
  416. <td height="25"> <div align="center">
  417. <?=$premoney?>
  418. </div></td>
  419. <td><div align="center"><?=$r['reuse']==1?'可重复':'一次'?></div></td>
  420. <td height="25"> <div align="center">[<a href="AddPrecode.php?enews=EditPrecode&id=<?=$r[id]?>&time=<?=$time?><?=$ecms_hashur['ehref']?>">修改</a>]&nbsp;[<a href="ListPrecode.php?enews=DelPrecode&id=<?=$r[id]?>&time=<?=$time?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  421. </tr>
  422. <?
  423. }
  424. ?>
  425. <tr bgcolor="#FFFFFF">
  426. <td height="25"> <div align="center">
  427. <input type=checkbox name=chkall value=on onclick="CheckAll(this.form)">
  428. </div></td>
  429. <td height="25" colspan="6">&nbsp;
  430. <?=$returnpage?>
  431. &nbsp;&nbsp; <input type="submit" name="Submit2" value="删除选中"> </td>
  432. </tr>
  433. </form>
  434. </table>
  435. </body>
  436. </html>
  437. <?
  438. db_close();
  439. $empire=null;
  440. ?>