ShopSysFun.php 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966
  1. <?php
  2. //返回商城参数
  3. function ShopSys_ReturnSet(){
  4. global $empire,$dbtbpre;
  5. $shoppr=$empire->fetch1("select * from {$dbtbpre}enewsshop_set limit 1");
  6. return $shoppr;
  7. }
  8. //验证是否商城表
  9. function ShopSys_CheckShopTb($tbname,$shoppr){
  10. if(!strstr($shoppr['shoptbs'],','.$tbname.','))
  11. {
  12. printerror("ErrorShopTbname","history.go(-1)",1);
  13. }
  14. }
  15. //声明购物车
  16. function SetBuycar($buycar){
  17. $set=esetcookie("mybuycar",$buycar,0);
  18. return $set;
  19. }
  20. //清空购物车
  21. function ClearBuycar(){
  22. SetBuycar("");
  23. Header("Refresh:0; URL=buycar/");
  24. }
  25. //返回数量
  26. function ReturnBuycarProductNum($num){
  27. $num=(int)$num;
  28. if($num<1)
  29. {
  30. $num=1;
  31. }
  32. return $num;
  33. }
  34. //替换参数
  35. function ShopSys_BuycarRepvar($var){
  36. $var=str_replace('!','',$var);
  37. $var=str_replace('|','',$var);
  38. $var=str_replace(',','',$var);
  39. return $var;
  40. }
  41. //替换参数
  42. function ShopSys_BuycarRepvar2($var){
  43. $var=str_replace('!','',$var);
  44. $var=str_replace('|','',$var);
  45. return $var;
  46. }
  47. //库存检查
  48. function Shopsys_CheckMaxnum($num,$maxnum,$shoppr){
  49. if($num>$maxnum)
  50. {
  51. printerror("ShopOutMaxnum","history.go(-1)",1);
  52. }
  53. if($shoppr['singlenum']&&$num>$shoppr['singlenum'])
  54. {
  55. printerror("ShopOutSinglenum","history.go(-1)",1);
  56. }
  57. }
  58. //减少库存
  59. function Shopsys_CutMaxnum($ddid,$buycar,$havecut,$shoppr,$ecms=0){
  60. global $class_r,$empire,$dbtbpre,$public_r;
  61. $ddid=(int)$ddid;
  62. if(empty($buycar))
  63. {
  64. return '';
  65. }
  66. if($ecms==0&&$havecut)
  67. {
  68. return '';
  69. }
  70. if($ecms==1&&!$havecut)
  71. {
  72. return '';
  73. }
  74. if($ecms==0)
  75. {
  76. $fh='-';
  77. $salefh='+';
  78. }
  79. else
  80. {
  81. $fh='+';
  82. $salefh='-';
  83. }
  84. $record="!";
  85. $field="|";
  86. $buycarr=explode($record,$buycar);
  87. $bcount=count($buycarr);
  88. for($i=0;$i<$bcount-1;$i++)
  89. {
  90. $pr=explode($field,$buycarr[$i]);
  91. $productid=$pr[1];
  92. $fr=explode(",",$pr[1]);
  93. //ID
  94. $classid=(int)$fr[0];
  95. $id=(int)$fr[1];
  96. //数量
  97. $pnum=(int)$pr[3];
  98. if($pnum<1)
  99. {
  100. $pnum=1;
  101. }
  102. if(empty($class_r[$classid][tbname]))
  103. {
  104. continue;
  105. }
  106. $empire->query("update {$dbtbpre}ecms_".$class_r[$classid][tbname]." set pmaxnum=pmaxnum".$fh.$pnum.",psalenum=psalenum".$salefh.$pnum." where id='$id'");
  107. }
  108. $newhavecut=$ecms==0?1:0;
  109. $empire->query("update {$dbtbpre}enewsshopdd set havecutnum='$newhavecut' where ddid='$ddid'");
  110. }
  111. //加入购物车
  112. function AddBuycar($classid,$id,$pn=1,$add){
  113. global $class_r,$empire,$dbtbpre,$public_r;
  114. $shoppr=ShopSys_ReturnSet();
  115. $classid=(int)$classid;
  116. $id=(int)$id;
  117. $pn=(int)$pn;
  118. if(empty($classid)||empty($id)||empty($class_r[$classid][tbname]))
  119. {
  120. printerror("NotChangeProduct","history.go(-1)",1);
  121. }
  122. //验证商城表
  123. ShopSys_CheckShopTb($class_r[$classid]['tbname'],$shoppr);
  124. //验证产品是否存在
  125. $infor=$empire->fetch1("select id,classid,pmaxnum,price,buyfen from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where id='$id' limit 1");
  126. if(!$infor['id']||$infor['classid']!=$classid)
  127. {
  128. printerror("NotChangeProduct","history.go(-1)",1);
  129. }
  130. //无货
  131. if($infor['pmaxnum']<1)
  132. {
  133. printerror("ShopNotProductNum","history.go(-1)",1);
  134. }
  135. $pn=ReturnBuycarProductNum($pn);
  136. if($shoppr['haveatt'])
  137. {
  138. $addatt=ShopSys_BuycarInfoAdd($add['addatt']);
  139. }
  140. else
  141. {
  142. $addatt='';
  143. }
  144. $record="!";
  145. $field="|";
  146. $productid=$classid.",".$id;
  147. $addattstr='|'.$addatt;
  148. $buycar=getcvar('mybuycar');
  149. //重复
  150. if(strstr($buycar,"|".$productid.$addattstr."|"))
  151. {
  152. $pr=explode("|".$productid.$addattstr."|",$buycar);
  153. $pr1=explode("!",$pr[1]);
  154. $oldbuycar="|".$productid.$addattstr."|".$pr1[0]."!";
  155. //数量
  156. $pr1[0]=ReturnBuycarProductNum($pr1[0]);
  157. if(empty($pr1[0]))
  158. {
  159. $pr1[0]=1;
  160. }
  161. $newnum=$pr1[0]+$pn;
  162. //库存
  163. Shopsys_CheckMaxnum($newnum,$infor['pmaxnum'],$shoppr);
  164. $newbuycar="|".$productid.$addattstr."|".$newnum."!";
  165. $buycar=str_replace($oldbuycar,$newbuycar,$buycar);
  166. }
  167. else
  168. {
  169. if($shoppr['buycarnum']>1)
  170. {
  171. $bcr=explode($record,$buycar);
  172. $count=count($bcr);
  173. if($count>$shoppr['buycarnum'])
  174. {
  175. printerror("ShopBuycarMaxnum","history.go(-1)",1);
  176. }
  177. }
  178. //只存放一个
  179. if($shoppr['buycarnum']==1)
  180. {
  181. $buycar='';
  182. }
  183. //库存
  184. Shopsys_CheckMaxnum($pn,$infor['pmaxnum'],$shoppr);
  185. $buycar.="|".$productid.$addattstr."|".$pn."!";
  186. }
  187. SetBuycar($buycar);
  188. if($shoppr['buystep']==2)
  189. {
  190. $tourl='order/';
  191. }
  192. else
  193. {
  194. $tourl='buycar/';
  195. }
  196. Header("Refresh:0; URL=$tourl");
  197. }
  198. //修改购物车
  199. function EditBuycar($add){
  200. global $class_r,$empire,$dbtbpre,$public_r;
  201. $shoppr=ShopSys_ReturnSet();
  202. $record="!";
  203. $field="|";
  204. $productid=$add['productid'];
  205. $addatt=$add['addatt'];
  206. $num=$add['num'];
  207. $del=$add['del'];
  208. $delatt=$add['delatt'];
  209. $count=count($productid);
  210. $buycar="";
  211. for($i=0;$i<$count;$i++)
  212. {
  213. $productid[$i]=RepPostVar($productid[$i]);
  214. //验证商品是否存在
  215. $pr=explode(',',$productid[$i]);
  216. $classid=(int)$pr[0];
  217. $id=(int)$pr[1];
  218. $productid[$i]=$classid.','.$id;
  219. //验证商城表
  220. ShopSys_CheckShopTb($class_r[$classid]['tbname'],$shoppr);
  221. //验证产品是否存在
  222. $infor=$empire->fetch1("select id,classid,pmaxnum,price,buyfen from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where id='$id' limit 1");
  223. if(!$infor['id']||$infor['classid']!=$classid)
  224. {
  225. printerror("NotChangeProduct","history.go(-1)",1);
  226. }
  227. //无货
  228. if($infor['pmaxnum']<1)
  229. {
  230. printerror("ShopNotProductNum","history.go(-1)",1);
  231. }
  232. if($shoppr['haveatt'])
  233. {
  234. $addatt[$i]=ShopSys_BuycarRepvar2(RepPostStr($addatt[$i]));
  235. }
  236. else
  237. {
  238. $addatt[$i]='';
  239. }
  240. $num[$i]=intval($num[$i]);
  241. //验证是否删除项
  242. if(empty($num[$i]))
  243. {
  244. continue;
  245. }
  246. $isdel=0;
  247. for($j=0;$j<count($del);$j++)
  248. {
  249. if($del[$j]==$productid[$i].'|'.$addatt[$i])
  250. {
  251. $isdel=1;
  252. break;
  253. }
  254. }
  255. if($isdel==1)
  256. {
  257. continue;
  258. }
  259. $num[$i]=ReturnBuycarProductNum($num[$i]);
  260. //库存
  261. Shopsys_CheckMaxnum($num[$i],$infor['pmaxnum'],$shoppr);
  262. $buycar.="|".$productid[$i]."|".$addatt[$i]."|".$num[$i]."!";
  263. }
  264. SetBuycar($buycar);
  265. if($shoppr['buystep']==2)
  266. {
  267. $tourl='order/';
  268. }
  269. else
  270. {
  271. $tourl='buycar/';
  272. }
  273. Header("Refresh:0; URL=$tourl");
  274. }
  275. //返回附加属性
  276. function ShopSys_BuycarInfoAdd($addatt){
  277. $count=count($addatt);
  278. if(!$count)
  279. {
  280. return '';
  281. }
  282. $attexp='';
  283. $attstr='';
  284. for($i=0;$i<$count;$i++)
  285. {
  286. $att=ShopSys_BuycarRepvar(RepPostStr($addatt[$i]));
  287. if(!trim($att))
  288. {
  289. continue;
  290. }
  291. $attstr.=$attexp.$att;
  292. $attexp=',';
  293. }
  294. return $attstr;
  295. }
  296. //验证提交权限
  297. function ShopCheckAddDdGroup($shoppr){
  298. global $public_r;
  299. //限制下单会员
  300. if($shoppr['shopddgroupid'])
  301. {
  302. if(!getcvar('mluserid'))
  303. {
  304. $phpmyself=urlencode(eReturnSelfPage(1));
  305. $gotourl=$public_r['newsurl']."e/member/login/login.php?prt=1&from=".$phpmyself;
  306. $petype=1;
  307. printerror("NotLogin",$gotourl,$petype);
  308. }
  309. }
  310. }
  311. //验证订单必填项
  312. function ShopSys_CheckDdMust($add,$shoppr){
  313. $ddmustr=explode(',',$shoppr['ddmust']);
  314. $mcount=count($ddmustr)-1;
  315. for($i=1;$i<$mcount;$i++)
  316. {
  317. $mf=$ddmustr[$i];
  318. if(empty($mf))
  319. {
  320. continue;
  321. }
  322. if(!trim($add[$mf]))
  323. {
  324. printerror("MustEnterSelect","history.go(-1)",1);
  325. }
  326. }
  327. if($shoppr['shoppsmust']&&!$add['psid'])
  328. {
  329. printerror("NotPsid","history.go(-1)",1);
  330. }
  331. if($shoppr['shoppayfsmust']&&!$add['payfsid'])
  332. {
  333. printerror("NotPayfsid","history.go(-1)",1);
  334. }
  335. }
  336. //返回优惠码信息
  337. function ShopSys_GetPre($precode,$totalmoney,$user,$classids){
  338. global $empire,$dbtbpre;
  339. $premoney=0;
  340. $precode=RepPostVar(trim($precode));
  341. if(!$precode)
  342. {
  343. printerror("EmptyPreCode","history.go(-1)",1);
  344. }
  345. $prer=$empire->fetch1("select id,prename,precode,premoney,pretype,reuse,endtime,groupid,classid,musttotal,usenum,haveusenum from {$dbtbpre}enewsshop_precode where precode='$precode' limit 1");
  346. if(!$prer['id'])
  347. {
  348. printerror("EmptyPreCode","history.go(-1)",1);
  349. }
  350. //是否过期
  351. $time=time();
  352. if($prer['endtime']&&$prer['endtime']<$time)
  353. {
  354. printerror("PreCodeOuttime","history.go(-1)",1);
  355. }
  356. //会员组
  357. if($prer['groupid']&&!strstr($prer['groupid'],','.$user[groupid].','))
  358. {
  359. printerror("PreCodeNotLevel","history.go(-1)",1);
  360. }
  361. //栏目
  362. if($prer['classid'])
  363. {
  364. $cr=explode(',',$classids);
  365. $ccount=count($cr);
  366. for($i=0;$i<$ccount;$i++)
  367. {
  368. $cr[$i]=(int)$cr[$i];
  369. if(!strstr($prer['classid'],','.$cr[$i].','))
  370. {
  371. printerror("PreCodeErrorClass","history.go(-1)",1);
  372. }
  373. }
  374. }
  375. //满金额
  376. if($totalmoney<$prer['musttotal'])
  377. {
  378. $GLOBALS['precodemusttotal']=$prer['musttotal'];
  379. printerror("PreCodeMusttotal","history.go(-1)",1);
  380. }
  381. return $prer;
  382. }
  383. //返回优惠金额
  384. function ShopSys_PreMoney($prer,$money){
  385. $premoney=0;
  386. if($prer['pretype']==1)
  387. {
  388. $premoney=intval(($prer['premoney']/100)*$money);
  389. }
  390. else
  391. {
  392. $premoney=$prer['premoney'];
  393. }
  394. return $premoney;
  395. }
  396. //返回配送方式金额
  397. function ShopSys_PrePsTotal($psid,$psprice,$alltotal,$shoppr){
  398. if($shoppr['freepstotal']<1)
  399. {
  400. return $psprice;
  401. }
  402. if($alltotal>=$shoppr['freepstotal'])
  403. {
  404. $psprice=0;
  405. }
  406. return $psprice;
  407. }
  408. //返回订单号
  409. function ShopSys_ReturnDdNo(){
  410. $ddno=time().rand(10000,99999);
  411. return $ddno;
  412. }
  413. //增加订单
  414. function AddDd($add){
  415. global $empire,$public_r,$dbtbpre;
  416. $shoppr=ShopSys_ReturnSet();
  417. //验证权限
  418. ShopCheckAddDdGroup($shoppr);
  419. //购物车无内容
  420. if(!getcvar('mybuycar'))
  421. {
  422. printerror("EmptyBuycar","history.go(-1)",1);
  423. }
  424. $add[ddno]=RepPostVar($add[ddno]);
  425. $add[truename]=dgdb_tosave($add[truename]);
  426. $add[oicq]=dgdb_tosave($add[oicq]);
  427. $add[msn]=dgdb_tosave($add[msn]);
  428. $add[mycall]=dgdb_tosave($add[mycall]);
  429. $add[phone]=dgdb_tosave($add[phone]);
  430. $add[email]=dgdb_tosave($add[email]);
  431. $add[address]=dgdb_tosave($add[address]);
  432. $add[zip]=dgdb_tosave($add[zip]);
  433. $add[signbuild]=dgdb_tosave($add[signbuild]);
  434. $add[besttime]=dgdb_tosave($add[besttime]);
  435. $add[bz]=dgdb_tosave($add[bz]);
  436. $add[fptt]=dgdb_tosave($add[fptt]);
  437. $add[fpname]=dgdb_tosave($add[fpname]);
  438. $add[fp]=(int)$add[fp];
  439. $add[psid]=(int)$add[psid];
  440. $add[payfsid]=(int)$add[payfsid];
  441. $add['precode']=RepPostVar($add['precode']);
  442. //基本必填
  443. if(!$add['ddno'])
  444. {
  445. printerror("EmptyBuycar","history.go(-1)",1);
  446. }
  447. //必填项
  448. ShopSys_CheckDdMust($add,$shoppr);
  449. $mess="AddDdSuccess";
  450. $haveprice=0;
  451. $payby=0;
  452. //返回购物车存放格式
  453. $buyr=ReturnBuycardd($shoppr);
  454. $alltotal=$buyr[2];
  455. $alltotalfen=$buyr[1];
  456. $buycar=$buyr[3];
  457. $classids=$buyr['classids'];
  458. //配送方式
  459. $pr=array();
  460. if($shoppr['shoppsmust'])
  461. {
  462. $pr=$empire->fetch1("select pid,pname,price from {$dbtbpre}enewsshopps where pid='$add[psid]' and isclose=0");
  463. if(empty($pr['pid']))
  464. {
  465. printerror("NotPsid","history.go(-1)",1);
  466. }
  467. }
  468. //支付方式
  469. $payr=array();
  470. if($shoppr['shoppayfsmust'])
  471. {
  472. $payr=$empire->fetch1("select payid,payname,payurl,userpay,userfen from {$dbtbpre}enewsshoppayfs where payid='$add[payfsid]' and isclose=0");
  473. if(empty($payr['payid']))
  474. {
  475. printerror("NotPayfsid","history.go(-1)",1);
  476. }
  477. }
  478. //取得用户信息
  479. $user=array();
  480. $userid=(int)getcvar('mluserid');
  481. $username=RepPostVar(getcvar('mlusername'));
  482. if($userid)
  483. {
  484. islogin();
  485. $rnd=RepPostVar(getcvar('mlrnd'));
  486. $user=$empire->fetch1("select ".eReturnSelectMemberF('userid,money,userfen,groupid')." from ".eReturnMemberTable()." where ".egetmf('userid')."='$userid' and ".egetmf('rnd')."='$rnd' limit 1");
  487. if(!$user['userid'])
  488. {
  489. printerror("MustSingleUser","history.go(-1)",1);
  490. }
  491. }
  492. //优惠
  493. $prer=array();
  494. $pretotal=0;
  495. if($add['precode'])
  496. {
  497. $prer=ShopSys_GetPre($add['precode'],$alltotal,$user,$classids);
  498. $pretotal=ShopSys_PreMoney($prer,$alltotal);
  499. }
  500. //运费
  501. $truetotalmoney=$alltotal-$pretotal;
  502. if($pr['pid'])
  503. {
  504. $pr['price']=ShopSys_PrePsTotal($pr['pid'],$pr['price'],$truetotalmoney,$shoppr);
  505. }
  506. //发票
  507. $fptotal=0;
  508. if($add[fp])
  509. {
  510. $fptotal=($alltotal-$pretotal)*($shoppr['fpnum']/100);
  511. }
  512. //支付金额
  513. $buyallfen=$alltotalfen+$pr['price'];
  514. $buyallmoney=$alltotal+$pr['price']+$fptotal-$pretotal;
  515. if($buyallmoney<0)
  516. {
  517. $buyallmoney=0;
  518. }
  519. $location="buycar/";
  520. if($payr[userfen]) //直接扣点
  521. {
  522. if($buyr[0])
  523. {
  524. printerror("NotProductForBuyfen","history.go(-1)",1);
  525. }
  526. else
  527. {
  528. if($userid)
  529. {
  530. $buyallfen=$alltotalfen+$pr[price];
  531. if($buyallfen>$user['userfen'])
  532. {
  533. printerror("NotEnoughFenBuy","history.go(-1)",1);
  534. }
  535. //扣除点数
  536. $usql=$empire->query("update ".eReturnMemberTable()." set ".egetmf('userfen')."=".egetmf('userfen')."-".$buyallfen." where ".egetmf('userid')."='$userid'");
  537. if($usql)
  538. {
  539. $mess="AddDdSuccessa";
  540. $payby=1;
  541. $haveprice=1;
  542. }
  543. }
  544. else
  545. {
  546. printerror("NotLoginTobuy","history.go(-1)",1);
  547. }
  548. }
  549. }
  550. elseif($payr[userpay]) //帐号余额扣除
  551. {
  552. if($userid)
  553. {
  554. $buyallmoney=$alltotal+$pr[price]+$fptotal-$pretotal;
  555. if($buyallmoney<0)
  556. {
  557. $buyallmoney=0;
  558. }
  559. if($buyallmoney>$user['money'])
  560. {
  561. printerror("NotEnoughMoneyBuy","history.go(-1)",1);
  562. }
  563. //扣除金额
  564. $usql=$empire->query("update ".eReturnMemberTable()." set ".egetmf('money')."=".egetmf('money')."-".$buyallmoney." where ".egetmf('userid')."='$userid'");
  565. if($usql)
  566. {
  567. $mess="AddDdSuccessa";
  568. $payby=2;
  569. $haveprice=1;
  570. }
  571. }
  572. else
  573. {
  574. printerror("NotLoginTobuy","history.go(-1)",1);
  575. }
  576. }
  577. elseif($payr[payurl]) //在线支付
  578. {
  579. $mess="AddDdAndToPaySuccess";
  580. $location=$payr[payurl];
  581. }
  582. else
  583. {}
  584. $ddtime=date("Y-m-d H:i:s");
  585. $ddtruetime=time();
  586. $ip=egetip();
  587. $pr[price]=(float)$pr[price];
  588. $alltotal=(float)$alltotal;
  589. $alltotalfen=(float)$alltotalfen;
  590. $fptotal=(float)$fptotal;
  591. $pretotal=(float)$pretotal;
  592. $sql=$empire->query("insert into {$dbtbpre}enewsshopdd(ddno,ddtime,userid,username,outproduct,haveprice,checked,truename,oicq,msn,email,`mycall`,phone,address,zip,psid,psname,pstotal,alltotal,payfsid,payfsname,payby,alltotalfen,fp,fptt,fptotal,fpname,userip,signbuild,besttime,pretotal,ddtruetime) values('$add[ddno]','$ddtime',$userid,'$username',0,'$haveprice',0,'$add[truename]','$add[oicq]','$add[msn]','$add[email]','$add[mycall]','$add[phone]','$add[address]','$add[zip]','$add[psid]','$pr[pname]',$pr[price],$alltotal,'$add[payfsid]','$payr[payname]','$payby',$alltotalfen,$add[fp],'$add[fptt]',$fptotal,'$add[fpname]','$ip','$add[signbuild]','$add[besttime]','$pretotal','$ddtruetime');");
  593. $ddid=$empire->lastid();
  594. $sqladd=$empire->query("insert into {$dbtbpre}enewsshopdd_add(ddid,buycar,bz,retext) values('$ddid','".addslashes($buycar)."','$add[bz]','');");
  595. //减库存
  596. if($shoppr['cutnumtype']==0)
  597. {
  598. Shopsys_CutMaxnum($ddid,$buycar,0,$shoppr,0);
  599. }
  600. else
  601. {
  602. if($haveprice==1)
  603. {
  604. Shopsys_CutMaxnum($ddid,$buycar,0,$shoppr,0);
  605. }
  606. }
  607. //优惠码
  608. if($prer['id'])
  609. {
  610. $prer['id']=(int)$prer['id'];
  611. if($prer['reuse']==0)
  612. {
  613. $empire->query("delete from {$dbtbpre}enewsshop_precode where id='".$prer['id']."'");
  614. }
  615. elseif($prer['reuse']&&$prer['usenum'])
  616. {
  617. if($prer['usenum']<=$prer['haveusenum']+1)
  618. {
  619. $empire->query("delete from {$dbtbpre}enewsshop_precode where id='".$prer['id']."'");
  620. }
  621. else
  622. {
  623. $empire->query("update {$dbtbpre}enewsshop_precode set haveusenum=haveusenum+1 where id='".$prer['id']."'");
  624. }
  625. }
  626. }
  627. if($sql)
  628. {
  629. $set=esetcookie("paymoneyddid",$ddid,0);
  630. SetBuycar("");
  631. printerror($mess,$location,1);
  632. }
  633. else
  634. {
  635. printerror("DbError","history.go(-1)",1);
  636. }
  637. }
  638. //返回购物车数据
  639. function ReturnBuycardd($shoppr){
  640. global $empire,$class_r,$dbtbpre;
  641. $buycar=getcvar('mybuycar');
  642. $record="!";
  643. $field="|";
  644. $r=explode($record,$buycar);
  645. $alltotal=0;
  646. $return[0]=0;//是否全部积分
  647. $return[1]=0;//购买总积分
  648. $return[2]=0;//购买总金额
  649. $return[3]="";//存放格式
  650. $return['classids']="";//栏目集合
  651. $cdh='';
  652. $newbuycar="";
  653. for($i=0;$i<count($r)-1;$i++)
  654. {
  655. $pr=explode($field,$r[$i]);
  656. $productid=$pr[1];
  657. $fr=explode(",",$pr[1]);
  658. //ID
  659. $classid=(int)$fr[0];
  660. $id=(int)$fr[1];
  661. if(empty($class_r[$classid][tbname]))
  662. {
  663. continue;
  664. }
  665. //验证商城表
  666. ShopSys_CheckShopTb($class_r[$classid]['tbname'],$shoppr);
  667. //附加属性
  668. if($shoppr['haveatt'])
  669. {
  670. $addattstr=dgdb_tosave(ShopSys_BuycarRepvar2(RepPostStr($pr[2])));
  671. }
  672. else
  673. {
  674. $addattstr='';
  675. }
  676. //数量
  677. $num=ReturnBuycarProductNum($pr[3]);
  678. if(empty($num))
  679. {
  680. $num=1;
  681. }
  682. //取得产品信息
  683. $productr=$empire->fetch1("select title,tprice,price,isurl,titleurl,classid,id,titlepic,buyfen,pmaxnum from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where id='$id' limit 1");
  684. if(!$productr['id']||$productr['classid']!=$classid)
  685. {
  686. continue;
  687. }
  688. //无货
  689. if($productr['pmaxnum']<1)
  690. {
  691. printerror("ShopNotProductNum","history.go(-1)",1);
  692. }
  693. //库存
  694. Shopsys_CheckMaxnum($num,$productr['pmaxnum'],$shoppr);
  695. //是否全部积分
  696. if(!$productr[buyfen])
  697. {
  698. $return[0]=1;
  699. }
  700. $return[1]+=$productr[buyfen]*$num;
  701. $thistotal=$productr[price]*$num;
  702. $alltotal+=$thistotal;
  703. //栏目集合
  704. $return['classids'].=$cdh.$productr['classid'];
  705. $cdh=',';
  706. //组成存放的格式
  707. $title=str_replace("!","",$productr[title]);
  708. $title=str_replace("|","",$title);
  709. $title=str_replace(",","",$title);
  710. $title=dgdb_tosave($title);
  711. $productr[price]=dgdb_tosave($productr[price]);
  712. $productr[buyfen]=dgdb_tosave($productr[buyfen]);
  713. $newbuycar.="|".$classid.",".$id."|".$addattstr."|".$num."|".$productr[price]."|".$productr[buyfen]."|".$title."!";
  714. }
  715. $return[2]=$alltotal;
  716. $return[3]=$newbuycar;
  717. return $return;
  718. }
  719. //未付款的继续支付
  720. function ShopDdToPay($ddid){
  721. global $empire,$dbtbpre;
  722. $ddid=(int)$ddid;
  723. if(!$ddid)
  724. {
  725. printerror("NotShopDdId","history.go(-1)",1);
  726. }
  727. //是否登陆
  728. $user_r=islogin();
  729. $r=$empire->fetch1("select ddid,payfsid,haveprice,checked,ddtime from {$dbtbpre}enewsshopdd where ddid='$ddid' and userid='$user_r[userid]' limit 1");
  730. if(!$r['ddid'])
  731. {
  732. printerror("NotShopDdId","history.go(-1)",1);
  733. }
  734. if($r['checked']==2)
  735. {
  736. printerror("ShopDdCancel","history.go(-1)",1);
  737. }
  738. if($r['haveprice'])
  739. {
  740. printerror("ShopDdIdHavePrice","history.go(-1)",1);
  741. }
  742. if(empty($r['payfsid']))
  743. {
  744. printerror("NotPayfsid","history.go(-1)",1);
  745. }
  746. //支付方式
  747. $payr=$empire->fetch1("select payid,payurl from {$dbtbpre}enewsshoppayfs where payid='$r[payfsid]' and isclose=0");
  748. if(!$payr['payid']||!$payr['payurl'])
  749. {
  750. printerror("NotPayfsid","history.go(-1)",1);
  751. }
  752. $location=$payr['payurl'];
  753. esetcookie("paymoneyddid",$ddid,0);
  754. Header("Refresh:0; URL=$location");
  755. }
  756. //删除订单
  757. function ShopSys_qDelDd($add){
  758. global $empire,$dbtbpre,$public_r;
  759. $shoppr=ShopSys_ReturnSet();
  760. //是否登陆
  761. $user_r=islogin();
  762. $ddid=(int)$add['ddid'];
  763. if(!$ddid)
  764. {
  765. printerror("NotChangeShopDdid","history.go(-1)",1);
  766. }
  767. $r=$empire->fetch1("select ddid,outproduct,haveprice,checked,ddtime,havecutnum from {$dbtbpre}enewsshopdd where ddid='$ddid' and userid='$user_r[userid]' limit 1");
  768. if(!$r['ddid'])
  769. {
  770. printerror("NotChangeShopDdid","history.go(-1)",1);
  771. }
  772. //订单不能删除
  773. if($r['checked']||$r['outproduct']||$r['haveprice'])
  774. {
  775. printerror("NotDelShopDd","history.go(-1)",1);
  776. }
  777. //超过时间不能删除
  778. $dddeltime=$shoppr['dddeltime']*60;
  779. if(time()-$dddeltime>to_time($r['ddtime']))
  780. {
  781. printerror("OuttimeNotDelShopDd","history.go(-1)",1);
  782. }
  783. //还原库存
  784. if($shoppr['cutnumtype']==0)
  785. {
  786. $buycarr=$empire->fetch1("select buycar from {$dbtbpre}enewsshopdd_add where ddid='$ddid'");
  787. Shopsys_CutMaxnum($ddid,$buycarr['buycar'],$r['havecutnum'],$shoppr,1);
  788. }
  789. $sql=$empire->query("delete from {$dbtbpre}enewsshopdd where ddid='$ddid' and userid='$user_r[userid]'");
  790. $sqladd=$empire->query("delete from {$dbtbpre}enewsshopdd_add where ddid='$ddid'");
  791. if($sql)
  792. {
  793. printerror('DelShopDdSuccess','ListDd/',1);
  794. }
  795. else
  796. {
  797. printerror("DbError","history.go(-1)",1);
  798. }
  799. }
  800. //过期取消订单并还原库存
  801. function ShopSys_TimeCutMaxnum($userid,$shoppr){
  802. global $empire,$dbtbpre,$class_r;
  803. if($shoppr['cutnumtype']==1||$shoppr['cutnumtime']==0)
  804. {
  805. return '';
  806. }
  807. $userid=(int)$userid;
  808. $where=$userid?"userid='$userid' and ":"";
  809. $time=time()-($shoppr['cutnumtime']*60);
  810. $ddsql=$empire->query("select ddid,havecutnum from {$dbtbpre}enewsshopdd where ".$where."haveprice=0 and checked=0 and havecutnum=1 and ddtruetime<$time");
  811. while($ddr=$empire->fetch($ddsql))
  812. {
  813. $ddaddr=$empire->fetch1("select buycar from {$dbtbpre}enewsshopdd_add where ddid='$ddr[ddid]'");
  814. Shopsys_CutMaxnum($ddr['ddid'],$ddaddr['buycar'],$ddr['havecutnum'],$shoppr,1);
  815. }
  816. $empire->query("update {$dbtbpre}enewsshopdd set checked=2 where ".$where."haveprice=0 and checked=0 and havecutnum=1 and ddtruetime<$time");
  817. }
  818. //新增地址
  819. function ShopSys_AddAddress($add){
  820. global $empire,$dbtbpre,$public_r;
  821. //是否登陆
  822. $user_r=islogin();
  823. $add['addressname']=dgdb_tosave($add['addressname']);
  824. $add['truename']=dgdb_tosave($add['truename']);
  825. $add['oicq']=dgdb_tosave($add['oicq']);
  826. $add['msn']=dgdb_tosave($add['msn']);
  827. $add['email']=dgdb_tosave($add['email']);
  828. $add['address']=dgdb_tosave($add['address']);
  829. $add['zip']=dgdb_tosave($add['zip']);
  830. $add['mycall']=dgdb_tosave($add['mycall']);
  831. $add['phone']=dgdb_tosave($add['phone']);
  832. $add['signbuild']=dgdb_tosave($add['signbuild']);
  833. $add['besttime']=dgdb_tosave($add['besttime']);
  834. if(!trim($add['addressname']))
  835. {
  836. printerror("EmptyAddress","history.go(-1)",1);
  837. }
  838. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsshop_address where userid='$user_r[userid]'");
  839. $isdefault=$num?0:1;
  840. $sql=$empire->query("insert into {$dbtbpre}enewsshop_address(addressname,userid,truename,oicq,msn,email,address,zip,mycall,phone,signbuild,besttime,isdefault) values('$add[addressname]','$user_r[userid]','$add[truename]','$add[oicq]','$add[msn]','$add[email]','$add[address]','$add[zip]','$add[mycall]','$add[phone]','$add[signbuild]','$add[besttime]','$isdefault');");
  841. if($sql)
  842. {
  843. printerror('AddAddressSuccess','address/AddAddress.php?enews=AddAddress',1);
  844. }
  845. else
  846. {
  847. printerror("DbError","history.go(-1)",1);
  848. }
  849. }
  850. //修改地址
  851. function ShopSys_EditAddress($add){
  852. global $empire,$dbtbpre,$public_r;
  853. //是否登陆
  854. $user_r=islogin();
  855. $addressid=(int)$add['addressid'];
  856. $add['addressname']=dgdb_tosave($add['addressname']);
  857. $add['truename']=dgdb_tosave($add['truename']);
  858. $add['oicq']=dgdb_tosave($add['oicq']);
  859. $add['msn']=dgdb_tosave($add['msn']);
  860. $add['email']=dgdb_tosave($add['email']);
  861. $add['address']=dgdb_tosave($add['address']);
  862. $add['zip']=dgdb_tosave($add['zip']);
  863. $add['mycall']=dgdb_tosave($add['mycall']);
  864. $add['phone']=dgdb_tosave($add['phone']);
  865. $add['signbuild']=dgdb_tosave($add['signbuild']);
  866. $add['besttime']=dgdb_tosave($add['besttime']);
  867. if(!$addressid||!trim($add['addressname']))
  868. {
  869. printerror("EmptyAddress","history.go(-1)",1);
  870. }
  871. $sql=$empire->query("update {$dbtbpre}enewsshop_address set addressname='$add[addressname]',truename='$add[truename]',oicq='$add[oicq]',msn='$add[msn]',email='$add[email]',address='$add[address]',zip='$add[zip]',mycall='$add[mycall]',phone='$add[phone]',signbuild='$add[signbuild]',besttime='$add[besttime]' where addressid='$addressid' and userid='$user_r[userid]'");
  872. if($sql)
  873. {
  874. printerror('EditAddressSuccess','address/ListAddress.php',1);
  875. }
  876. else
  877. {
  878. printerror("DbError","history.go(-1)",1);
  879. }
  880. }
  881. //删除地址
  882. function ShopSys_DelAddress($add){
  883. global $empire,$dbtbpre,$public_r;
  884. //是否登陆
  885. $user_r=islogin();
  886. $addressid=(int)$add['addressid'];
  887. if(!$addressid)
  888. {
  889. printerror("NotAddressid","history.go(-1)",1);
  890. }
  891. $sql=$empire->query("delete from {$dbtbpre}enewsshop_address where addressid='$addressid' and userid='$user_r[userid]'");
  892. if($sql)
  893. {
  894. printerror('DelAddressSuccess','address/ListAddress.php',1);
  895. }
  896. else
  897. {
  898. printerror("DbError","history.go(-1)",1);
  899. }
  900. }
  901. //默认地址
  902. function ShopSys_DefAddress($add){
  903. global $empire,$dbtbpre,$public_r;
  904. //是否登陆
  905. $user_r=islogin();
  906. $addressid=(int)$add['addressid'];
  907. if(!$addressid)
  908. {
  909. printerror("NotAddressid","history.go(-1)",1);
  910. }
  911. $sql1=$empire->query("update {$dbtbpre}enewsshop_address set isdefault=0 where userid='$user_r[userid]'");
  912. $sql=$empire->query("update {$dbtbpre}enewsshop_address set isdefault=1 where addressid='$addressid' and userid='$user_r[userid]'");
  913. if($sql)
  914. {
  915. printerror('DefAddressSuccess','address/ListAddress.php',1);
  916. }
  917. else
  918. {
  919. printerror("DbError","history.go(-1)",1);
  920. }
  921. }
  922. //获取地址
  923. function ShopSys_GetAddress($addressid){
  924. global $empire,$dbtbpre,$public_r;
  925. //是否登陆
  926. $user_r=islogin();
  927. $addressid=(int)$addressid;
  928. if($addressid)
  929. {
  930. $where="addressid='$addressid'";
  931. }
  932. else
  933. {
  934. $where="isdefault=1";
  935. }
  936. $address_r=$empire->fetch1("select * from {$dbtbpre}enewsshop_address where userid='$user_r[userid]' and ".$where." limit 1");
  937. return $address_r;
  938. }
  939. ?>