buycar_order.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. ?>
  7. <?php
  8. $buycar=getcvar('mybuycar');
  9. if(empty($buycar))
  10. {
  11. printerror('你的购物车没有商品','',1,0,1);
  12. }
  13. $record="!";
  14. $field="|";
  15. $totalmoney=0; //商品总金额
  16. $buytype=0; //支付类型:1为金额,0为点数
  17. $totalfen=0; //商品总积分
  18. $classids=''; //栏目集合
  19. $cdh='';
  20. $buycarr=explode($record,$buycar);
  21. $bcount=count($buycarr);
  22. ?>
  23. <table width="100%" border=0 align=center cellpadding=3 cellspacing=1>
  24. <tr class="header">
  25. <td width="41%" height=23><div align="center">商品名称</div></td>
  26. <td width="15%"><div align="center">市场价格</div></td>
  27. <td width="15%"><div align="center">优惠价格</div></td>
  28. <td width="8%"><div align="center">数量</div></td>
  29. <td width="21%"><div align="center">小计</div></td>
  30. </tr>
  31. <?php
  32. for($i=0;$i<$bcount-1;$i++)
  33. {
  34. $pr=explode($field,$buycarr[$i]);
  35. $productid=$pr[1];
  36. $fr=explode(",",$pr[1]);
  37. //ID
  38. $classid=(int)$fr[0];
  39. $id=(int)$fr[1];
  40. if(empty($class_r[$classid][tbname]))
  41. {
  42. continue;
  43. }
  44. //属性
  45. $addatt='';
  46. if($pr[2])
  47. {
  48. $addatt=$pr[2];
  49. }
  50. //数量
  51. $pnum=(int)$pr[3];
  52. if($pnum<1)
  53. {
  54. $pnum=1;
  55. }
  56. //取得产品信息
  57. $productr=$empire->fetch1("select title,tprice,price,isurl,titleurl,classid,id,titlepic,buyfen from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where id='$id' limit 1");
  58. if(!$productr['id']||$productr['classid']!=$classid)
  59. {
  60. continue;
  61. }
  62. //是否全部点数
  63. if(!$productr[buyfen])
  64. {
  65. $buytype=1;
  66. }
  67. $thistotalfen=$productr[buyfen]*$pnum;
  68. $totalfen+=$thistotalfen;
  69. //产品图片
  70. if(empty($productr[titlepic]))
  71. {
  72. $productr[titlepic]="../../data/images/notimg.gif";
  73. }
  74. //返回链接
  75. $titleurl=sys_ReturnBqTitleLink($productr);
  76. $thistotal=$productr[price]*$pnum;
  77. $totalmoney+=$thistotal;
  78. //栏目集合
  79. $classids.=$cdh.$productr['classid'];
  80. $cdh=',';
  81. ?>
  82. <tr>
  83. <td align="center" height=23><a href="<?=$titleurl?>" target="_blank"><?=$productr[title]?></a><?=$addatt?' - '.$addatt:''?></td>
  84. <td align="right">¥<?=$productr[tprice]?></td>
  85. <td align="right"><b>¥<?=$productr[price]?></b></td>
  86. <td align="right"><?=$pnum?></td>
  87. <td align="right">¥<?=$thistotal?></td>
  88. </tr>
  89. <?php
  90. }
  91. ?>
  92. <?php
  93. if(!$buytype)//点数付费
  94. {
  95. ?>
  96. <tr height="25">
  97. <td colspan="5"><div align="right">合计点数:<strong><?=$totalfen?></strong></div></td>
  98. </tr>
  99. <?php
  100. }
  101. else
  102. {
  103. ?>
  104. <tr height="27">
  105. <td colspan="5"><div align="right">合计:<strong>¥<?=$totalmoney?></strong></div></td>
  106. </tr>
  107. <?php
  108. }
  109. ?>
  110. </table>