hShopSysFun.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <?php
  2. //商城参数设置
  3. function ShopSys_set($add,$userid,$username){
  4. global $empire,$dbtbpre;
  5. //验证权限
  6. CheckLevel($userid,$username,$classid,"public");
  7. $add['shopddgroupid']=(int)$add['shopddgroupid'];
  8. $add['buycarnum']=(int)$add['buycarnum'];
  9. $add['havefp']=(int)$add['havefp'];
  10. $add['fpnum']=(int)$add['fpnum'];
  11. $add['fpname']=ehtmlspecialchars($add['fpname']);
  12. $add['haveatt']=(int)$add['haveatt'];
  13. $add['buystep']=(int)$add['buystep'];
  14. $add['shoppsmust']=(int)$add['shoppsmust'];
  15. $add['shoppayfsmust']=(int)$add['shoppayfsmust'];
  16. $add['dddeltime']=(int)$add['dddeltime'];
  17. $add['cutnumtype']=(int)$add['cutnumtype'];
  18. $add['cutnumtime']=(int)$add['cutnumtime'];
  19. $add['freepstotal']=(int)$add['freepstotal'];
  20. $add['singlenum']=(int)$add['singlenum'];
  21. //必填项
  22. $ddmuststr='';
  23. $ddmustf=$add['ddmustf'];
  24. $mfcount=count($ddmustf);
  25. for($i=0;$i<$mfcount;$i++)
  26. {
  27. if(empty($ddmustf[$i]))
  28. {
  29. continue;
  30. }
  31. $ddmuststr.=','.$ddmustf[$i];
  32. }
  33. if($ddmuststr)
  34. {
  35. $ddmuststr.=',';
  36. }
  37. //商城表
  38. $shoptbs='';
  39. $tbname=$add['tbname'];
  40. $tbcount=count($tbname);
  41. for($ti=0;$ti<$tbcount;$ti++)
  42. {
  43. if(empty($tbname[$ti]))
  44. {
  45. continue;
  46. }
  47. $shoptbs.=','.$tbname[$ti];
  48. }
  49. if($shoptbs)
  50. {
  51. $shoptbs.=',';
  52. }
  53. $ddmuststr=hRepPostStr2($ddmuststr);
  54. $shoptbs=hRepPostStr2($shoptbs);
  55. $sql=$empire->query("update {$dbtbpre}enewsshop_set set shopddgroupid='$add[shopddgroupid]',buycarnum='$add[buycarnum]',havefp='$add[havefp]',fpnum='$add[fpnum]',fpname='".eaddslashes($add[fpname])."',ddmust='$ddmuststr',haveatt='$add[haveatt]',shoptbs='$shoptbs',buystep='$add[buystep]',shoppsmust='$add[shoppsmust]',shoppayfsmust='$add[shoppayfsmust]',dddeltime='$add[dddeltime]',cutnumtype='$add[cutnumtype]',cutnumtime='$add[cutnumtime]',freepstotal='$add[freepstotal]',singlenum='$add[singlenum]' limit 1");
  56. if($sql)
  57. {
  58. insert_dolog("");//操作日志
  59. printerror('SetShopSysSuccess','SetShopSys.php'.hReturnEcmsHashStrHref2(1));
  60. }
  61. else
  62. {
  63. printerror('DbError','history.go(-1)');
  64. }
  65. }
  66. //返回商城参数
  67. function ShopSys_hReturnSet(){
  68. global $empire,$dbtbpre;
  69. $shoppr=$empire->fetch1("select * from {$dbtbpre}enewsshop_set limit 1");
  70. return $shoppr;
  71. }
  72. //后台订单增加备注
  73. function ShopSys_DdRetext($add,$userid,$username){
  74. global $empire,$dbtbpre;
  75. //验证权限
  76. CheckLevel($userid,$username,$classid,"shopdd");
  77. $ddid=(int)$add['ddid'];
  78. $retext=eaddslashes(ehtmlspecialchars($add['retext']));
  79. if(!$ddid)
  80. {
  81. printerror('ErrorUrl','');
  82. }
  83. $r=$empire->fetch1("select ddid,ddno from {$dbtbpre}enewsshopdd where ddid='$ddid'");
  84. if(!$r['ddid'])
  85. {
  86. printerror('ErrorUrl','');
  87. }
  88. $sql=$empire->query("update {$dbtbpre}enewsshopdd_add set retext='$retext' where ddid='$ddid'");
  89. if($sql)
  90. {
  91. $log_bz='';
  92. $log_addbz="";
  93. ShopSys_DdInsertLog($ddid,'DdRetext',$log_bz,$log_addbz);//订单日志
  94. insert_dolog("ddid=$ddid<br>ddno=$r[ddno]");//操作日志
  95. printerror('DdRetextSuccess',"ShowDd.php?ddid=$ddid".hReturnEcmsHashStrHref2(0));
  96. }
  97. else
  98. {
  99. printerror('DbError','history.go(-1)');
  100. }
  101. }
  102. //修改优惠金额
  103. function ShopSys_EditPretotal($add,$userid,$username){
  104. global $empire,$dbtbpre;
  105. //验证权限
  106. CheckLevel($userid,$username,$classid,"shopdd");
  107. $ddid=(int)$add['ddid'];
  108. $bz=eaddslashes(ehtmlspecialchars($add['bz']));
  109. $pretotal=(float)$add['pretotal'];
  110. if(!$ddid)
  111. {
  112. printerror('ErrorUrl','');
  113. }
  114. $r=$empire->fetch1("select ddid,ddno,pretotal from {$dbtbpre}enewsshopdd where ddid='$ddid'");
  115. if(!$r['ddid'])
  116. {
  117. printerror('ErrorUrl','');
  118. }
  119. $sql=$empire->query("update {$dbtbpre}enewsshopdd set pretotal='$pretotal' where ddid='$ddid'");
  120. if($sql)
  121. {
  122. $log_bz=$bz;
  123. $log_addbz="oldpre=$r[pretotal]&newpre=$pretotal";
  124. ShopSys_DdInsertLog($ddid,'EditPretotal',$log_bz,$log_addbz);//订单日志
  125. insert_dolog("ddid=$ddid&ddno=$r[ddno]<br>oldpre=$r[pretotal]&newpre=$pretotal");//操作日志
  126. printerror('DdEditPretotalSuccess',"ShowDd.php?ddid=$ddid".hReturnEcmsHashStrHref2(0));
  127. }
  128. else
  129. {
  130. printerror('DbError','history.go(-1)');
  131. }
  132. }
  133. //减少或恢复库存
  134. function Shopsys_DoCutMaxnum($add,$userid,$username){
  135. global $empire,$dbtbpre;
  136. //验证权限
  137. CheckLevel($userid,$username,$classid,"shopdd");
  138. $ddid=$add['ddid'];
  139. $ecms=(int)$add['cutmaxnum'];
  140. $count=count($ddid);
  141. if(!$count)
  142. {
  143. printerror('NotSetDdid','');
  144. }
  145. $log_ecms='DoCutMaxnum';
  146. $log_bz='';
  147. $log_addbz="ecms=$ecms";
  148. $shoppr=ShopSys_hReturnSet();
  149. $ids='';
  150. $dh='';
  151. for($i=0;$i<$count;$i++)
  152. {
  153. $doddid=(int)$ddid[$i];
  154. if(!$doddid)
  155. {
  156. continue;
  157. }
  158. $ddaddr=$empire->fetch1("select buycar from {$dbtbpre}enewsshopdd_add where ddid='$doddid'");
  159. if(empty($ddaddr['buycar']))
  160. {
  161. continue;
  162. }
  163. $ddr=$empire->fetch1("select havecutnum from {$dbtbpre}enewsshopdd where ddid='$doddid'");
  164. Shopsys_hCutMaxnum($doddid,$ddaddr['buycar'],$ddr['havecutnum'],$shoppr,$ecms);
  165. $ids.=$dh.$doddid;
  166. $dh=',';
  167. //写入订单日志
  168. ShopSys_DdInsertLog($doddid,$log_ecms,$log_bz,$log_addbz);
  169. }
  170. insert_dolog("ddid=$ids<br>ecms=$ecms");//操作日志
  171. printerror('CutMaxnumSuccess',EcmsGetReturnUrl());
  172. }
  173. //减少库存
  174. function Shopsys_hCutMaxnum($ddid,$buycar,$havecut,$shoppr,$ecms=0){
  175. global $class_r,$empire,$dbtbpre,$public_r;
  176. if(empty($buycar))
  177. {
  178. return '';
  179. }
  180. if($ecms==0&&$havecut)
  181. {
  182. return '';
  183. }
  184. if($ecms==1&&!$havecut)
  185. {
  186. return '';
  187. }
  188. if($ecms==0)
  189. {
  190. $fh='-';
  191. $salefh='+';
  192. }
  193. else
  194. {
  195. $fh='+';
  196. $salefh='-';
  197. }
  198. $record="!";
  199. $field="|";
  200. $buycarr=explode($record,$buycar);
  201. $bcount=count($buycarr);
  202. for($i=0;$i<$bcount-1;$i++)
  203. {
  204. $pr=explode($field,$buycarr[$i]);
  205. $productid=$pr[1];
  206. $fr=explode(",",$pr[1]);
  207. //ID
  208. $classid=(int)$fr[0];
  209. $id=(int)$fr[1];
  210. //数量
  211. $pnum=(int)$pr[3];
  212. if($pnum<1)
  213. {
  214. $pnum=1;
  215. }
  216. if(empty($class_r[$classid][tbname]))
  217. {
  218. continue;
  219. }
  220. $empire->query("update {$dbtbpre}ecms_".$class_r[$classid][tbname]." set pmaxnum=pmaxnum".$fh.$pnum.",psalenum=psalenum".$salefh.$pnum." where id='$id'");
  221. }
  222. $newhavecut=$ecms==0?1:0;
  223. $empire->query("update {$dbtbpre}enewsshopdd set havecutnum='$newhavecut' where ddid='$ddid'");
  224. }
  225. //过期取消订单并还原库存
  226. function ShopSys_hTimeCutMaxnum($userid,$shoppr){
  227. global $empire,$dbtbpre,$class_r;
  228. if($shoppr['cutnumtype']==1||$shoppr['cutnumtime']==0)
  229. {
  230. return '';
  231. }
  232. $userid=(int)$userid;
  233. $where=$userid?"userid='$userid' and ":"";
  234. $time=time()-($shoppr['cutnumtime']*60);
  235. $ddsql=$empire->query("select ddid,havecutnum from {$dbtbpre}enewsshopdd where ".$where."haveprice=0 and checked=0 and havecutnum=1 and ddtruetime<$time");
  236. while($ddr=$empire->fetch($ddsql))
  237. {
  238. $ddaddr=$empire->fetch1("select buycar from {$dbtbpre}enewsshopdd_add where ddid='$ddr[ddid]'");
  239. Shopsys_hCutMaxnum($ddr['ddid'],$ddaddr['buycar'],$ddr['havecutnum'],$shoppr,1);
  240. }
  241. $empire->query("update {$dbtbpre}enewsshopdd set checked=2 where ".$where."haveprice=0 and checked=0 and havecutnum=1 and ddtruetime<$time");
  242. }
  243. //写入订单日志
  244. function ShopSys_DdInsertLog($ddid,$ecms,$bz,$addbz){
  245. global $empire,$dbtbpre,$logininid,$loginin;
  246. $ddid=(int)$ddid;
  247. $ecms=RepPostVar($ecms);
  248. $logtime=date("Y-m-d H:i:s");
  249. if(empty($addbz))
  250. {$addbz="---";}
  251. $bz=hRepPostStr($bz,1);
  252. $addbz=addslashes(stripSlashes($addbz));
  253. $empire->query("insert into {$dbtbpre}enewsshop_ddlog(ddid,userid,username,ecms,bz,addbz,logtime) values('$ddid','$logininid','$loginin','$ecms','$bz','$addbz','$logtime');");
  254. }
  255. ?>