order.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. ?>
  7. <?php
  8. //显示配送方式
  9. function ShowPs(){
  10. global $empire,$dbtbpre;
  11. $sql=$empire->query("select pid,pname,price,psay,isdefault from {$dbtbpre}enewsshopps where isclose=0 order by pid");
  12. $str='';
  13. while($r=$empire->fetch($sql))
  14. {
  15. $checked=$r[isdefault]==1?' checked':'';
  16. $str.="<table width='100%' border=0 align=center cellpadding=3 cellspacing=1>
  17. <tr>
  18. <td width='69%' height=23>
  19. <input type=radio name=psid value='".$r[pid]."'".$checked."><strong>".$r[pname]."</strong>
  20. </td>
  21. <td width='31%'><strong>费用:¥".$r[price]."</strong></td>
  22. </tr>
  23. <tr>
  24. <td colspan=2><table width='98%' border=0 align=right cellpadding=3 cellspacing=1><tr><td>".$r[psay]."</td></tr></table></td>
  25. </tr>
  26. </table>";
  27. }
  28. return $str;
  29. }
  30. //显示支付方式
  31. function ShowPayfs($pr,$user){
  32. global $empire,$dbtbpre;
  33. $str='';
  34. $sql=$empire->query("select payid,payname,payurl,paysay,userpay,userfen,isdefault from {$dbtbpre}enewsshoppayfs where isclose=0 order by payid");
  35. while($r=$empire->fetch($sql))
  36. {
  37. $checked=$r[isdefault]==1?' checked':'';
  38. $dis="";
  39. $words="";
  40. //扣点数
  41. if($r[userfen])
  42. {
  43. if($pr['buytype'])
  44. {
  45. $dis=" disabled";
  46. $words="&nbsp;<font color='#666666'>(您选择的商品至少有一个不支持点数购买)</font>";
  47. }
  48. else
  49. {
  50. if(getcvar('mluserid'))
  51. {
  52. if($user[userfen]<$pr['totalfen'])
  53. {
  54. $dis=" disabled";
  55. $words="&nbsp;<font color='#666666'>(您的帐号点数不足,不能使用此支付方式)</font>";
  56. }
  57. }
  58. else
  59. {
  60. $dis=" disabled";
  61. $words="&nbsp;<font color='#666666'>(您未登录,不能使用此支付方式)</font>";
  62. }
  63. }
  64. }
  65. //余额扣除
  66. elseif($r[userpay])
  67. {
  68. if(getcvar('mluserid'))
  69. {
  70. if($user[money]<$pr['totalmoney'])
  71. {
  72. $dis=" disabled";
  73. $words="&nbsp;<font color='#666666'>(您的帐号余额不足,不能使用此支付方式)</font>";
  74. }
  75. }
  76. else
  77. {
  78. $dis=" disabled";
  79. $words="&nbsp;<font color='#666666'>(您未登录,不能使用此支付方式)</font>";
  80. }
  81. }
  82. //网上支付
  83. elseif($r[payurl])
  84. {
  85. $words="";
  86. }
  87. else
  88. {}
  89. $str.="<tr><td><b><input type=radio name=payfsid value='".$r[payid]."'".$checked."".$dis.">".$r[payname]."</b>".$words."</td></tr><tr><td><table width='98%' border=0 align=right cellpadding=3 cellspacing=1><tr><td>".$r[paysay]."</td></tr></table></td></tr>";
  90. }
  91. if($str)
  92. {
  93. $str="<table width='100%' border=0 align=center cellpadding=3 cellspacing=1>".$str."</table>";
  94. }
  95. return $str;
  96. }
  97. //提交地址
  98. if($shoppr['buystep']==0)
  99. {
  100. $formaction='../SubmitOrder/index.php';
  101. $formconfirm='';
  102. $formsubmit='<input type="submit" name="Submit" value=" 下一步 ">';
  103. $enewshidden='';
  104. $ddno='';
  105. }
  106. else
  107. {
  108. $formaction='../doaction.php';
  109. $formconfirm=' onsubmit="return confirm(\'确认提交?\');"';
  110. $formsubmit='<input type="submit" name="Submit" value=" 提交订单 ">';
  111. $enewshidden='<input type=hidden name=enews value=AddDd>';
  112. $ddno=ShopSys_ReturnDdNo();//订单ID
  113. }
  114. ?>
  115. <!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN>
  116. <html>
  117. <head>
  118. <meta http-equiv=Content-Type content=text/html; charset=utf-8>
  119. <title>填写订单</title>
  120. <link href=../../data/images/qcss.css rel=stylesheet type=text/css>
  121. </head>
  122. <body>
  123. <form action="<?=$formaction?>" method="post" name="myorder" id="myorder"<?=$formconfirm?>>
  124. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  125. <?php
  126. if($ddno)
  127. {
  128. ?>
  129. <tr>
  130. <td height="27" bgcolor="#FFFFFF"><strong>订单号:
  131. <?=$ddno?>
  132. <input name="ddno" type="hidden" id="ddno" value="<?=$ddno?>">
  133. </strong></td>
  134. </tr>
  135. <?php
  136. }
  137. ?>
  138. <tr>
  139. <td height="23" bgcolor="#EFEFEF"><strong>选择的商品</strong> <?=$shoppr['buystep']!=2?'[<a href="../buycar/">修改购物车</a>]':''?></td>
  140. </tr>
  141. <tr>
  142. <td>
  143. <?php
  144. include('buycar/buycar_order.php');
  145. $pr=array();
  146. $pr['totalmoney']=$totalmoney;
  147. $pr['buytype']=$buytype;
  148. $pr['totalfen']=$totalfen;
  149. ?>
  150. </td>
  151. </tr>
  152. <tr>
  153. <td height="23" bgcolor="#EFEFEF"><table width="100%" border="0" cellspacing="0" cellpadding="0">
  154. <tr>
  155. <td width="50%"><strong>收货人信息</strong></td>
  156. <td><div align="right">
  157. <?php
  158. if($user['userid'])
  159. {
  160. $addresssql=$empire->query("select addressid,addressname from {$dbtbpre}enewsshop_address where userid='$user[userid]'");
  161. ?>
  162. <select name="addressid" id="addressid" onchange="window.location='index.php?addressid='+this.options[this.selectedIndex].value">
  163. <option value="0">选择预增加的配送地址</option>
  164. <?php
  165. while($chaddressr=$empire->fetch($addresssql))
  166. {
  167. ?>
  168. <option value="<?=$chaddressr['addressid']?>"<?=$chaddressr['addressid']==$addressid?' selected':''?>><?=$chaddressr['addressname']?></option>
  169. <?php
  170. }
  171. ?>
  172. </select>
  173. <?php
  174. }
  175. ?>
  176. </div></td>
  177. </tr>
  178. </table></td>
  179. </tr>
  180. <tr>
  181. <td><table width="100%%" border="0" cellspacing="1" cellpadding="3">
  182. <tr>
  183. <td width="20%" height="25">真实姓名:</td>
  184. <td width="80%"><input name="truename" type="text" id="truename" value="<?=stripSlashes($useraddr[truename])?>" size="65">
  185. <?=stristr($shoppr['ddmust'],',truename,')?'*':''?></td>
  186. </tr>
  187. <tr>
  188. <td height="25">固定电话:</td>
  189. <td><input name="mycall" type="text" id="mycall" value="<?=stripSlashes($useraddr[mycall])?>" size="65">
  190. <?=stristr($shoppr['ddmust'],',mycall,')?'*':''?></td>
  191. </tr>
  192. <tr>
  193. <td height="25">手机:</td>
  194. <td><input name="phone" type="text" id="phone" value="<?=stripSlashes($useraddr[phone])?>" size="65">
  195. <?=stristr($shoppr['ddmust'],',phone,')?'*':''?></td>
  196. </tr>
  197. <tr>
  198. <td height="25">联系邮箱:</td>
  199. <td><input name="email" type="text" id="email" value="<?=stripSlashes($email)?>" size="65">
  200. <?=stristr($shoppr['ddmust'],',email,')?'*':''?></td>
  201. </tr>
  202. <tr>
  203. <td height="25">OICQ:</td>
  204. <td><input name="oicq" type="text" id="oicq" value="<?=stripSlashes($useraddr[oicq])?>" size="65">
  205. <?=stristr($shoppr['ddmust'],',oicq,')?'*':''?></td>
  206. </tr>
  207. <tr>
  208. <td height="25">MSN:</td>
  209. <td><input name="msn" type="text" id="msn" value="<?=stripSlashes($useraddr[msn])?>" size="65">
  210. <?=stristr($shoppr['ddmust'],',msn,')?'*':''?></td>
  211. </tr>
  212. <tr>
  213. <td height="25">联系地址:</td>
  214. <td><input name="address" type="text" id="address" value="<?=stripSlashes($useraddr[address])?>" size="65">
  215. <?=stristr($shoppr['ddmust'],',address,')?'*':''?></td>
  216. </tr>
  217. <tr>
  218. <td height="25">邮编:</td>
  219. <td><input name="zip" type="text" id="zip" value="<?=stripSlashes($useraddr[zip])?>" size="65">
  220. <?=stristr($shoppr['ddmust'],',zip,')?'*':''?></td>
  221. </tr>
  222. <tr>
  223. <td height="25">周边标志建筑:</td>
  224. <td><input name="signbuild" type="text" id="signbuild" value="<?=stripSlashes($useraddr[signbuild])?>" size="65">
  225. <?=stristr($shoppr['ddmust'],',signbuild,')?'*':''?></td>
  226. </tr>
  227. <tr>
  228. <td height="25">最佳送货时间:</td>
  229. <td><input name="besttime" type="text" id="besttime" value="<?=stripSlashes($useraddr[besttime])?>" size="65">
  230. <?=stristr($shoppr['ddmust'],',besttime,')?'*':''?></td>
  231. </tr>
  232. <tr>
  233. <td height="25">备注:</td>
  234. <td><textarea name="bz" cols="65" rows="6" id="bz"></textarea>
  235. <?=stristr($shoppr['ddmust'],',bz,')?'*':''?></td>
  236. </tr>
  237. </table></td>
  238. </tr>
  239. <?php
  240. if($shoppr['shoppsmust'])
  241. {
  242. $showps=ShowPs();
  243. if($showps)
  244. {
  245. ?>
  246. <tr>
  247. <td height="23" bgcolor="#EFEFEF"><strong>选择配送方式</strong></td>
  248. </tr>
  249. <tr>
  250. <td>
  251. <?=$showps?> </td>
  252. </tr>
  253. <?php
  254. }
  255. }
  256. ?>
  257. <?php
  258. if($shoppr['shoppayfsmust'])
  259. {
  260. $showpayfs=ShowPayfs($pr,$user);
  261. if($showpayfs)
  262. {
  263. ?>
  264. <tr>
  265. <td height="23" bgcolor="#EFEFEF"><strong>选择支付方式</strong></td>
  266. </tr>
  267. <tr>
  268. <td>
  269. <?=$showpayfs?> </td>
  270. </tr>
  271. <?php
  272. }
  273. }
  274. ?>
  275. <?
  276. //提供发票
  277. if($shoppr[havefp])
  278. {
  279. ?>
  280. <tr>
  281. <td height="23" bgcolor="#EFEFEF">是否需要发票:
  282. <input name="fp" type="checkbox" id="fp" value="1">
  283. 是(需增加 <?=$shoppr[fpnum]?>% 的费用)</td>
  284. </tr>
  285. <tr>
  286. <td height="23" bgcolor="#FFFFFF"><table width="100%" border="0" cellspacing="1" cellpadding="3">
  287. <tr>
  288. <td>发票抬头:
  289. <input name="fptt" type="text" id="fptt" size="38"></td>
  290. </tr>
  291. <tr>
  292. <td>发票名称:
  293. <select name="fpname" id="fpname">
  294. <?php
  295. $fpnamer=explode("\r\n",$shoppr['fpname']);
  296. $fncount=count($fpnamer);
  297. for($i=0;$i<$fncount;$i++)
  298. {
  299. ?>
  300. <option value="<?=$fpnamer[$i]?>"><?=$fpnamer[$i]?></option>
  301. <?php
  302. }
  303. ?>
  304. </select> </td>
  305. </tr>
  306. </table></td>
  307. </tr>
  308. <?
  309. }
  310. ?>
  311. <tr>
  312. <td height="23" bgcolor="#EFEFEF">使用优惠码</td>
  313. </tr>
  314. <tr>
  315. <td><table width="100%" border="0" cellspacing="1" cellpadding="3">
  316. <tr>
  317. <td width="20%">优惠码:</td>
  318. <td width="80%"><input name="precode" type="text" id="precode" size="65"></td>
  319. </tr>
  320. </table></td>
  321. </tr>
  322. <tr>
  323. <td height="25">
  324. <div align="center">
  325. <?php
  326. if($shoppr['buystep']!=2)
  327. {
  328. ?>
  329. <input type="button" name="Submit3" value=" 上一步 " onclick="history.go(-1)">
  330. &nbsp;&nbsp; &nbsp;&nbsp;
  331. <?php
  332. }
  333. ?>
  334. <?=$formsubmit?>
  335. <?=$enewshidden?>
  336. <input name="alltotal" type="hidden" id="alltotal" value="<?=$pr['totalmoney']?>">
  337. <input name="alltotalfen" type="hidden" id="alltotalfen" value="<?=$pr['totalfen']?>">
  338. </div></td>
  339. </tr>
  340. <tr>
  341. <td>&nbsp;</td>
  342. </tr>
  343. </table>
  344. </form>
  345. </body>
  346. </html>