123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <?php
- if(!defined('InEmpireCMS'))
- {
- exit();
- }
- ?>
- <?php
- $public_diyr['pagetitle']='订单列表';
- $url="<a href=../../../>首页</a> > <a href=../../member/cp/>会员中心</a> > 订单列表";
- require(ECMS_PATH.'e/template/incfile/header.php');
- ?>
- <script type="text/javascript" src="../../data/js/jstime/WdatePicker.js"></script>
- <form name="form1" method="get" action="index.php">
- <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
- <tr>
- <td>订单号为:
- <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
- 时间从
- <input name="starttime" type="text" id="starttime2" value="<?=$starttime?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
- 到
- <input name="endtime" type="text" id="endtime2" value="<?=$endtime?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
- 止的订单
- <input type="submit" name="Submit6" value="搜索"> <input name="sear" type="hidden" id="sear2" value="1">
- </td>
- </tr>
- </table>
- </form>
- <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class=tableborder>
- <tr class=header>
- <td width="5%" height="23"> <div align="center">序号</div></td>
- <td width="17%"><div align="center">编号(点击查看)</div></td>
- <td width="17%"><div align="center">订购时间</div></td>
- <td width="12%"><div align="center">总金额</div></td>
- <td width="14%"><div align="center">支付方式</div></td>
- <td width="28%"><div align="center">状态</div></td>
- <td width="7%"><div align="center">操作</div></td>
- </tr>
- <?
- $todaytime=time();
- $j=0;
- while($r=$empire->fetch($sql))
- {
- $j++;
- //点数购买
- $total=0;
- if($r[payby]==1)
- {
- $total=$r[alltotalfen]+$r[pstotal];
- $mytotal="<a href='#ecms' title='商品额(".$r[alltotalfen].")+运费(".$r[pstotal].")'>".$total." 点</a>";
- }
- else
- {
- //发票
- $fpa='';
- $pre='';
- if($r[fp])
- {
- $fpa="+发票费(".$r[fptotal].")";
- }
- //优惠
- if($r['pretotal'])
- {
- $pre="-优惠(".$r[pretotal].")";
- }
- $total=$r[alltotal]+$r[pstotal]+$r[fptotal]-$r[pretotal];
- $mytotal="<a href='#ecms' title='商品额(".$r[alltotal].")+运费(".$r[pstotal].")".$fpa.$pre."'>".$total." 元</a>";
- }
- //支付方式
- if($r[payby]==1)
- {
- $payfsname=$r[payfsname]."<br>(点数购买)";
- }
- elseif($r[payby]==2)
- {
- $payfsname=$r[payfsname]."<br>(余额购买)";
- }
- else
- {
- $payfsname=$r[payfsname];
- }
- //状态
- if($r['checked']==1)
- {
- $ch="已确认";
- }
- elseif($r['checked']==2)
- {
- $ch="取消";
- }
- elseif($r['checked']==3)
- {
- $ch="退货";
- }
- else
- {
- $ch="<font color=red>未确认</font>";
- }
- if($r['outproduct']==1)
- {
- $ou="已发货";
- }
- elseif($r['outproduct']==2)
- {
- $ou="备货中";
- }
- else
- {
- $ou="<font color=red>未发货</font>";
- }
- if($r['haveprice']==1)
- {
- $ha="已付款";
- }
- else
- {
- $ha="<font color=red>未付款</font>";
- }
- //操作
- $doing='<a href="../doaction.php?enews=DelDd&ddid='.$r[ddid].'" onclick="return confirm(\'确认要取消?\');">取消</a>';
- if($r['checked']||$r['outproduct']||$r['haveprice'])
- {
- $doing='--';
- }
- $dddeltime=$shoppr['dddeltime']*60;
- if($todaytime-$dddeltime>to_time($r['ddtime']))
- {
- $doing='--';
- }
- ?>
- <tr bgcolor="#FFFFFF">
- <td height="25"> <div align="center">
- <?=$j?>
- </div></td>
- <td> <div align="center"><a href="#ecms" onclick="window.open('../ShowDd/?ddid=<?=$r[ddid]?>','','width=700,height=600,scrollbars=yes,resizable=yes');">
- <?=$r[ddno]?>
- </a></div></td>
- <td> <div align="center">
- <?=$r[ddtime]?>
- </div></td>
- <td> <div align="center">
- <?=$mytotal?>
- </div></td>
- <td><div align="center">
- <?=$payfsname?>
- </div></td>
- <td> <div align="center"><strong>
- <?=$ha?>
- </strong>/<strong>
- <?=$ou?>
- </strong>/<strong>
- <?=$ch?>
- </strong></div></td>
- <td><div align="center"><?=$doing?></div></td>
- </tr>
- <?
- }
- ?>
- <tr bgcolor="#FFFFFF">
- <td> <div align="center"></div></td>
- <td colspan="6"> <div align="left">
- <?=$returnpage?>
- </div></td>
- </tr>
- </table>
- <?php
- require(ECMS_PATH.'e/template/incfile/footer.php');
- ?>
|