ListDd.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. ?>
  7. <?php
  8. $public_diyr['pagetitle']='订单列表';
  9. $url="<a href=../../../>首页</a>&nbsp;>&nbsp;<a href=../../member/cp/>会员中心</a>&nbsp;>&nbsp;订单列表";
  10. require(ECMS_PATH.'e/template/incfile/header.php');
  11. ?>
  12. <script type="text/javascript" src="../../data/js/jstime/WdatePicker.js"></script>
  13. <form name="form1" method="get" action="index.php">
  14. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  15. <tr>
  16. <td>订单号为:
  17. <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
  18. 时间从
  19. <input name="starttime" type="text" id="starttime2" value="<?=$starttime?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  20. <input name="endtime" type="text" id="endtime2" value="<?=$endtime?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  21. 止的订单
  22. <input type="submit" name="Submit6" value="搜索"> <input name="sear" type="hidden" id="sear2" value="1">
  23. </td>
  24. </tr>
  25. </table>
  26. </form>
  27. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class=tableborder>
  28. <tr class=header>
  29. <td width="5%" height="23"> <div align="center">序号</div></td>
  30. <td width="17%"><div align="center">编号(点击查看)</div></td>
  31. <td width="17%"><div align="center">订购时间</div></td>
  32. <td width="12%"><div align="center">总金额</div></td>
  33. <td width="14%"><div align="center">支付方式</div></td>
  34. <td width="28%"><div align="center">状态</div></td>
  35. <td width="7%"><div align="center">操作</div></td>
  36. </tr>
  37. <?
  38. $todaytime=time();
  39. $j=0;
  40. while($r=$empire->fetch($sql))
  41. {
  42. $j++;
  43. //点数购买
  44. $total=0;
  45. if($r[payby]==1)
  46. {
  47. $total=$r[alltotalfen]+$r[pstotal];
  48. $mytotal="<a href='#ecms' title='商品额(".$r[alltotalfen].")+运费(".$r[pstotal].")'>".$total." 点</a>";
  49. }
  50. else
  51. {
  52. //发票
  53. $fpa='';
  54. $pre='';
  55. if($r[fp])
  56. {
  57. $fpa="+发票费(".$r[fptotal].")";
  58. }
  59. //优惠
  60. if($r['pretotal'])
  61. {
  62. $pre="-优惠(".$r[pretotal].")";
  63. }
  64. $total=$r[alltotal]+$r[pstotal]+$r[fptotal]-$r[pretotal];
  65. $mytotal="<a href='#ecms' title='商品额(".$r[alltotal].")+运费(".$r[pstotal].")".$fpa.$pre."'>".$total." 元</a>";
  66. }
  67. //支付方式
  68. if($r[payby]==1)
  69. {
  70. $payfsname=$r[payfsname]."<br>(点数购买)";
  71. }
  72. elseif($r[payby]==2)
  73. {
  74. $payfsname=$r[payfsname]."<br>(余额购买)";
  75. }
  76. else
  77. {
  78. $payfsname=$r[payfsname];
  79. }
  80. //状态
  81. if($r['checked']==1)
  82. {
  83. $ch="已确认";
  84. }
  85. elseif($r['checked']==2)
  86. {
  87. $ch="取消";
  88. }
  89. elseif($r['checked']==3)
  90. {
  91. $ch="退货";
  92. }
  93. else
  94. {
  95. $ch="<font color=red>未确认</font>";
  96. }
  97. if($r['outproduct']==1)
  98. {
  99. $ou="已发货";
  100. }
  101. elseif($r['outproduct']==2)
  102. {
  103. $ou="备货中";
  104. }
  105. else
  106. {
  107. $ou="<font color=red>未发货</font>";
  108. }
  109. if($r['haveprice']==1)
  110. {
  111. $ha="已付款";
  112. }
  113. else
  114. {
  115. $ha="<font color=red>未付款</font>";
  116. }
  117. //操作
  118. $doing='<a href="../doaction.php?enews=DelDd&ddid='.$r[ddid].'" onclick="return confirm(\'确认要取消?\');">取消</a>';
  119. if($r['checked']||$r['outproduct']||$r['haveprice'])
  120. {
  121. $doing='--';
  122. }
  123. $dddeltime=$shoppr['dddeltime']*60;
  124. if($todaytime-$dddeltime>to_time($r['ddtime']))
  125. {
  126. $doing='--';
  127. }
  128. ?>
  129. <tr bgcolor="#FFFFFF">
  130. <td height="25"> <div align="center">
  131. <?=$j?>
  132. </div></td>
  133. <td> <div align="center"><a href="#ecms" onclick="window.open('../ShowDd/?ddid=<?=$r[ddid]?>','','width=700,height=600,scrollbars=yes,resizable=yes');">
  134. <?=$r[ddno]?>
  135. </a></div></td>
  136. <td> <div align="center">
  137. <?=$r[ddtime]?>
  138. </div></td>
  139. <td> <div align="center">
  140. <?=$mytotal?>
  141. </div></td>
  142. <td><div align="center">
  143. <?=$payfsname?>
  144. </div></td>
  145. <td> <div align="center"><strong>
  146. <?=$ha?>
  147. </strong>/<strong>
  148. <?=$ou?>
  149. </strong>/<strong>
  150. <?=$ch?>
  151. </strong></div></td>
  152. <td><div align="center"><?=$doing?></div></td>
  153. </tr>
  154. <?
  155. }
  156. ?>
  157. <tr bgcolor="#FFFFFF">
  158. <td> <div align="center"></div></td>
  159. <td colspan="6"> <div align="left">&nbsp;
  160. <?=$returnpage?>
  161. </div></td>
  162. </tr>
  163. </table>
  164. <?php
  165. require(ECMS_PATH.'e/template/incfile/footer.php');
  166. ?>