AddPrecode.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"precode");
  20. $enews=ehtmlspecialchars($_GET['enews']);
  21. $time=(int)$_GET['time'];
  22. $endtime='';
  23. $r[precode]=strtoupper(make_password(20));
  24. $classid='';
  25. $r[musttotal]=0;
  26. $url="<a href=ListPrecode.php".$ecms_hashur['whehref'].">管理优惠码</a> &gt; 增加优惠码";
  27. if($enews=="EditPrecode")
  28. {
  29. $id=(int)$_GET['id'];
  30. $r=$empire->fetch1("select * from {$dbtbpre}enewsshop_precode where id='$id' limit 1");
  31. $url="<a href=ListPrecode.php".$ecms_hashur['whehref'].">管理优惠码</a> &gt; 修改优惠码";
  32. $endtime=$r['endtime']?date('Y-m-d',$r['endtime']):'';
  33. $classid=substr($r['classid'],1,strlen($r['classid'])-2);
  34. }
  35. //会员组
  36. $membergroup='';
  37. $line=5;//一行显示五个
  38. $i=0;
  39. $mgsql=$empire->query("select groupid,groupname from {$dbtbpre}enewsmembergroup order by level");
  40. while($level_r=$empire->fetch($mgsql))
  41. {
  42. $i++;
  43. $br='';
  44. if($i%$line==0)
  45. {
  46. $br='<br>';
  47. }
  48. if(strstr($r['groupid'],','.$level_r['groupid'].','))
  49. {$checked=" checked";}
  50. else
  51. {$checked="";}
  52. $membergroup.="<input type='checkbox' name='groupid[]' value='$level_r[groupid]'".$checked.">".$level_r[groupname]."&nbsp;".$br;
  53. }
  54. $href="AddPrecode.php?enews=$enews&time=$time&id=$id".$ecms_hashur['ehref'];
  55. ?>
  56. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  57. <html>
  58. <head>
  59. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  60. <title>增加优惠码</title>
  61. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  62. <script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  63. </head>
  64. <body>
  65. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  66. <tr>
  67. <td>位置:<?=$url?></td>
  68. </tr>
  69. </table>
  70. <form name="form1" method="post" action="ListPrecode.php" autocomplete="off">
  71. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  72. <?=$ecms_hashur['form']?>
  73. <tr class="header">
  74. <td height="25" colspan="2"><div align="center">增加优惠码
  75. <input name="enews" type="hidden" id="enews" value="<?=$enews?>">
  76. <input name="time" type="hidden" id="time" value="<?=$time?>">
  77. <input name="id" type="hidden" id="id" value="<?=$id?>">
  78. </div></td>
  79. </tr>
  80. <tr bgcolor="#FFFFFF">
  81. <td width="17%" height="25">优惠码名称(*):</td>
  82. <td width="83%" height="25"><input name="prename" type="text" id="prename" value="<?=$r[prename]?>" size="42"></td>
  83. </tr>
  84. <tr bgcolor="#FFFFFF">
  85. <td height="25">优惠码(*):</td>
  86. <td height="25"><input name="precode" type="text" id="precode" value="<?=$r[precode]?>" size="42">
  87. <input type="button" name="Submit3" value="随机优惠码" onclick="javascript:self.location.href='<?=$href?>'">
  88. <font color="#666666">(&lt;36位)</font></td>
  89. </tr>
  90. <tr bgcolor="#FFFFFF">
  91. <td height="25">优惠类型:</td>
  92. <td height="25"><select name="pretype" id="pretype">
  93. <option value="0"<?=$r['pretype']==0?' selected':''?>>减金额</option>
  94. <option value="1"<?=$r['pretype']==1?' selected':''?>>商品百分比</option>
  95. </select>
  96. <font color="#666666">(“减金额”即订单金额-优惠金额,“商品百分比”即给商品打多少折)</font> </td>
  97. </tr>
  98. <tr bgcolor="#FFFFFF">
  99. <td height="25">优惠金额(*):</td>
  100. <td height="25"><input name="premoney" type="text" id="premoney" value="<?=$r[premoney]?>" size="42">
  101. <font color="#666666">(当减金额时填金额,单位:元,当商品百分比时填百分比,单位:%)</font></td>
  102. </tr>
  103. <tr bgcolor="#FFFFFF">
  104. <td height="25">过期时间:</td>
  105. <td height="25"><input name="endtime" type="text" id="endtime" value="<?=$endtime?>" size="42" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  106. <font color="#666666">(空为不限制)</font></td>
  107. </tr>
  108. <tr bgcolor="#FFFFFF">
  109. <td height="25">优惠码重复使用:</td>
  110. <td height="25"><input type="radio" name="reuse" value="0"<?=$r['reuse']==0?' checked':''?>>
  111. 一次性使用
  112. <input type="radio" name="reuse" value="1"<?=$r['reuse']==1?' checked':''?>>
  113. 可以重复使用</td>
  114. </tr>
  115. <tr bgcolor="#FFFFFF">
  116. <td height="25">&nbsp;</td>
  117. <td height="25">限制重复使用次数:
  118. <input name="usenum" type="text" id="usenum" value="<?=$r[usenum]?>"><?=$r[haveusenum]?'[已使用:'.$r[haveusenum].']':''?>
  119. <font color="#666666">(0为不限)</font></td>
  120. </tr>
  121. <tr bgcolor="#FFFFFF">
  122. <td height="25">满多少金额可使用:</td>
  123. <td height="25"><input name="musttotal" type="text" id="musttotal" value="<?=$r[musttotal]?>" size="42">
  124. 元 <font color="#666666">(0为不限)</font></td>
  125. </tr>
  126. <tr bgcolor="#FFFFFF">
  127. <td height="25">可使用的会员组:<br>
  128. <font color="#666666">(不选为不限)</font></td>
  129. <td height="25"><?=$membergroup?></td>
  130. </tr>
  131. <tr bgcolor="#FFFFFF">
  132. <td height="25">可使用的栏目商品:</td>
  133. <td height="25"><input name="classid" type="text" id="classid" value="<?=$classid?>" size="42">
  134. <font color="#666666">(空为不限,要填写终极栏目ID,多个ID可用半角逗号隔开“,”)</font></td>
  135. </tr>
  136. <tr bgcolor="#FFFFFF">
  137. <td height="25" colspan="2"><div align="center">
  138. <input type="submit" name="Submit" value="提交">
  139. &nbsp;
  140. <input type="reset" name="Submit2" value="重置">
  141. &nbsp;</div></td>
  142. </tr>
  143. </table>
  144. </form>
  145. </body>
  146. </html>
  147. <?
  148. db_close();
  149. $empire=null;
  150. ?>