ListPs.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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,"shopps");
  21. //增加配送方式
  22. function AddPs($add,$userid,$username){
  23. global $empire,$dbtbpre;
  24. if(empty($add[pname]))
  25. {
  26. printerror("EmptyPayname","history.go(-1)");
  27. }
  28. //验证权限
  29. CheckLevel($userid,$username,$classid,"shopps");
  30. $add[price]=(float)$add[price];
  31. $add['isclose']=(int)$add['isclose'];
  32. $add['pname']=ehtmlspecialchars($add['pname']);
  33. $add['otherprice']=hRepPostStr($add['otherprice'],1);
  34. $sql=$empire->query("insert into {$dbtbpre}enewsshopps(pname,price,otherprice,psay,isclose) values('".eaddslashes($add[pname])."','$add[price]','$add[otherprice]','".eaddslashes($add[psay])."','$add[isclose]');");
  35. $pid=$empire->lastid();
  36. if($sql)
  37. {
  38. //操作日志
  39. insert_dolog("pid=".$pid."<br>pname=".$add[pname]);
  40. printerror("AddPayfsSuccess","AddPs.php?enews=AddPs".hReturnEcmsHashStrHref2(0));
  41. }
  42. else
  43. {
  44. printerror("DbError","history.go(-1)");
  45. }
  46. }
  47. //修改配送方式
  48. function EditPs($add,$userid,$username){
  49. global $empire,$dbtbpre;
  50. $add[pid]=(int)$add[pid];
  51. if(empty($add[pname])||!$add[pid])
  52. {
  53. printerror("EmptyPayname","history.go(-1)");
  54. }
  55. //验证权限
  56. CheckLevel($userid,$username,$classid,"shopps");
  57. $add[price]=(float)$add[price];
  58. $add['isclose']=(int)$add['isclose'];
  59. $add['pname']=ehtmlspecialchars($add['pname']);
  60. $add['otherprice']=hRepPostStr($add['otherprice'],1);
  61. $sql=$empire->query("update {$dbtbpre}enewsshopps set pname='".eaddslashes($add[pname])."',price='$add[price]',otherprice='$add[otherprice]',psay='".eaddslashes($add[psay])."',isclose='$add[isclose]' where pid='$add[pid]'");
  62. if($sql)
  63. {
  64. //操作日志
  65. insert_dolog("pid=".$add[pid]."<br>pname=".$add[pname]);
  66. printerror("EditPayfsSuccess","ListPs.php".hReturnEcmsHashStrHref2(1));
  67. }
  68. else
  69. {
  70. printerror("DbError","history.go(-1)");
  71. }
  72. }
  73. //删除配送方式
  74. function DelPs($pid,$userid,$username){
  75. global $empire,$dbtbpre;
  76. $pid=(int)$pid;
  77. if(!$pid)
  78. {
  79. printerror("EmptyPayfsid","history.go(-1)");
  80. }
  81. //验证权限
  82. CheckLevel($userid,$username,$classid,"shopps");
  83. $r=$empire->fetch1("select pname from {$dbtbpre}enewsshopps where pid='$pid'");
  84. $sql=$empire->query("delete from {$dbtbpre}enewsshopps where pid='$pid'");
  85. if($sql)
  86. {
  87. //操作日志
  88. insert_dolog("pid=".$pid."<br>pname=".$r[pname]);
  89. printerror("DelPayfsSuccess","ListPs.php".hReturnEcmsHashStrHref2(1));
  90. }
  91. else
  92. {
  93. printerror("DbError","history.go(-1)");
  94. }
  95. }
  96. //设置为默认配送方式
  97. function DefPs($pid,$userid,$username){
  98. global $empire,$dbtbpre;
  99. $pid=(int)$pid;
  100. if(!$pid)
  101. {
  102. printerror("EmptyPayfsid","history.go(-1)");
  103. }
  104. //验证权限
  105. CheckLevel($userid,$username,$classid,"shopps");
  106. $r=$empire->fetch1("select pname from {$dbtbpre}enewsshopps where pid='$pid'");
  107. $upsql=$empire->query("update {$dbtbpre}enewsshopps set isdefault=0");
  108. $sql=$empire->query("update {$dbtbpre}enewsshopps set isdefault=1 where pid='$pid'");
  109. if($sql)
  110. {
  111. //操作日志
  112. insert_dolog("pid=".$pid."<br>pname=".$r[pname]);
  113. printerror("DefPayfsSuccess","ListPs.php".hReturnEcmsHashStrHref2(1));
  114. }
  115. else
  116. {
  117. printerror("DbError","history.go(-1)");
  118. }
  119. }
  120. $enews=$_POST['enews'];
  121. if(empty($enews))
  122. {$enews=$_GET['enews'];}
  123. if($enews)
  124. {
  125. hCheckEcmsRHash();
  126. }
  127. if($enews=="AddPs")
  128. {
  129. AddPs($_POST,$logininid,$loginin);
  130. }
  131. elseif($enews=="EditPs")
  132. {
  133. EditPs($_POST,$logininid,$loginin);
  134. }
  135. elseif($enews=="DelPs")
  136. {
  137. $pid=$_GET['pid'];
  138. DelPs($pid,$logininid,$loginin);
  139. }
  140. elseif($enews=="DefPs")
  141. {
  142. $pid=$_GET['pid'];
  143. DefPs($pid,$logininid,$loginin);
  144. }
  145. else
  146. {}
  147. $search=$ecms_hashur['ehref'];
  148. $page=(int)$_GET['page'];
  149. $page=RepPIntvar($page);
  150. $start=0;
  151. $line=16;//每页显示条数
  152. $page_line=18;//每页显示链接数
  153. $offset=$page*$line;//总偏移量
  154. $query="select * from {$dbtbpre}enewsshopps";
  155. $num=$empire->num($query);//取得总条数
  156. $query=$query." order by pid limit $offset,$line";
  157. $sql=$empire->query($query);
  158. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  159. ?>
  160. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  161. <html>
  162. <head>
  163. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  164. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  165. <title>管理配送方式</title>
  166. </head>
  167. <body>
  168. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  169. <tr>
  170. <td width="50%" height="25">位置:<a href="ListPs.php<?=$ecms_hashur['whehref']?>">管理配送方式</a>&nbsp;&nbsp;&nbsp;
  171. </td>
  172. <td><div align="right" class="emenubutton">
  173. <input type="button" name="Submit" value="增加配送方式" onclick="self.location.href='AddPs.php?enews=AddPs<?=$ecms_hashur['ehref']?>'">
  174. </div></td>
  175. </tr>
  176. </table>
  177. <br>
  178. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  179. <tr class="header">
  180. <td width="5%" height="25"> <div align="center">ID</div></td>
  181. <td width="36%" height="25"> <div align="center">配送方式</div></td>
  182. <td width="15%"><div align="center">价格</div></td>
  183. <td width="11%"><div align="center">默认</div></td>
  184. <td width="11%"><div align="center">启用</div></td>
  185. <td width="22%" height="25"> <div align="center">操作</div></td>
  186. </tr>
  187. <?
  188. while($r=$empire->fetch($sql))
  189. {
  190. ?>
  191. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  192. <td height="25"> <div align="center">
  193. <?=$r[pid]?>
  194. </div></td>
  195. <td height="25"> <div align="center">
  196. <?=$r[pname]?>
  197. </div></td>
  198. <td><div align="center">
  199. <?=$r[price]?>
  200. 元 </div></td>
  201. <td><div align="center"><?=$r[isdefault]==1?'是':'--'?></div></td>
  202. <td><div align="center"><?=$r[isclose]==1?'关闭':'开启'?></div></td>
  203. <td height="25"> <div align="center">[<a href="AddPs.php?enews=EditPs&pid=<?=$r[pid]?><?=$ecms_hashur['ehref']?>">修改</a>] [<a href="ListPs.php?enews=DefPs&pid=<?=$r[pid]?><?=$ecms_hashur['href']?>">设为默认</a>] [<a href="ListPs.php?enews=DelPs&pid=<?=$r[pid]?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  204. </tr>
  205. <?
  206. }
  207. ?>
  208. <tr bgcolor="#FFFFFF">
  209. <td height="25" colspan="6">&nbsp;&nbsp;&nbsp;
  210. <?=$returnpage?> </td>
  211. </tr>
  212. </table>
  213. </body>
  214. </html>
  215. <?
  216. db_close();
  217. $empire=null;
  218. ?>