wpfw_ewei_shopv2/template/web/statistics/order.html
2023-02-14 19:57:32 +08:00

124 lines
5.6 KiB
HTML

{template '_header'}
<div class="page-heading"> <h2>订单统计</h2> <span>按时间查询订单数和订单金额 共计 <span style="color:red; ">{$totalcount}</span> 个订单 , 金额共计 <span style="color:red; ">{$totalmoney}</span></span></div>
<form action="./index.php" method="get" class="form-horizontal" id="form1">
<input type="hidden" name="c" value="site" />
<input type="hidden" name="a" value="entry" />
<input type="hidden" name="m" value="{EWEI_SHOP_V2_MODULE_NAME}" />
<input type="hidden" name="do" value="web" />
<input type="hidden" name="r" value="statistics.order" />
<div class="page-toolbar row m-b-sm m-t-sm">
<div class="col-sm-5">
<div class="btn-group btn-group-sm" style='float:left'>
<button class="btn btn-default btn-sm" type="button" data-toggle='refresh'><i class='fa fa-refresh'></i></button>
</div>
{php echo tpl_daterange('datetime', array('sm'=>true,'placeholder'=>'下单时间'),true);}
</div>
<div class="col-sm-6 pull-right">
<select name='searchfield' class='form-control input-sm select-md' style="width:120px;">
<option value='ordersn' {if $_GPC['searchfield']=='ordersn'}selected{/if}>订单号</option>
<option value='member' {if $_GPC['searchfield']=='member'}selected{/if}>会员信息</option>
<option value='address' {if $_GPC['searchfield']=='address'}selected{/if}>收件人信息</option>
</select>
<div class="input-group">
<input type="text" class="form-control input-sm" name="keyword" value="{$_GPC['keyword']}" placeholder="请输入关键词"/>
<span class="input-group-btn">
<button class="btn btn-sm btn-primary btn-sm" type="submit"> 搜索</button>
{ifp 'statistics.order.export'}
<button type="submit" name="export" value="1" class="btn btn-success btn-sm">导出 Excel</button>
{/if}
</span>
</div>
</div>
</div>
</form>
<table class="table table-hover">
<thead class="navbar-inner">
<tr>
<th style="width:220px">订单号</th>
<th>总金额</th>
<th>付款方式</th>
<th>会员名称</th>
<th>收货人</th>
<th style="width:160px">下单时间</th>
</tr>
</thead>
<tbody>
{loop $list $row}
<tr style="background: #eee">
<td>{$row['ordersn']}</td>
<td
><b>{$row['price']}</b> <a ><i class="fa fa-question-circle" data-toggle='popover' data-placement='bottom' data-html='true' data-trigger='hover'
data-content="<table class='table table-hover'>
<tr><th>总金额</th><td>{$row['price']}</td></tr>
<tr><th>商品小计</th><td>{$row['goodsprice']}</td></tr>
<tr><th>运费</th><td>{$row['dispatchprice']}</td></tr>
<tr><th>会员折扣</th><td>{if $row['discountprice']>0}-{$row['discountprice']}{/if}</td></tr>
<tr><th>积分抵扣</th><td>{if $row['deductprice']>0}-{$row['deductprice']}{/if}</td></tr>
<tr><th>余额抵扣</th><td>{if $row['deductcredit2']>0}-{$row['deductcredit2']}{/if}</td></tr>
<tr><th>满额立减</th><td>{if $row['deductenough']>0}-{$row['deductenough']}{/if}</td></tr>
<tr><th>优惠券优惠</th><td>{if $row['couponprice']>0}-{$row['couponprice']}{/if}</td></tr>
<tr><th>卖家改价</th><td>{if 0<$item['changeprice']}+{else}-{/if}{php echo number_format(abs($item['changeprice']),2)}</td></tr>
<tr><th>卖家改运费</th><td>{if 0<$item['changedipatchpriceprice']}+{else}-{/if}{php echo number_format(abs($item['changedipatchpriceprice']),2)}</td></tr>
</table>"></i></a></td>
<td>{if $row['paytype'] == 1}
<span class="label label-primary">余额支付</span>
{elseif $row['paytype'] == 11}
<span class="label label-default">后台付款</span>
{elseif $row['paytype'] == 2}
<span class="label label-danger">在线支付</span>
{elseif $row['paytype'] == 21}
<span class="label label-success">微信支付</span>
{elseif $row['paytype'] == 22}
<span class="label label-warning">支付宝支付</span>
{elseif $row['paytype'] == 23}
<span class="label label-primary">银联支付</span>
{elseif $row['paytype'] == 3}
<span class="label label-success">货到付款</span>
{/if}
</td>
<td>{$row['realname']}</td>
<td>{$row['addressname']}</td>
<td>{php echo date('Y-m-d H:i',$row['createtime'])}</td>
</tr>
<tr >
<td colspan="6">
{loop $row['goods'] $g}
<table style="width:200px;float:left;margin:10px 10px 0 10px;" title="{$g['title']}">
<tr>
<td style="width:60px;"><img src="{php echo tomedia($g['thumb'])}" style="width: 50px; height: 50px;border:1px solid #ccc;padding:1px;"></td>
<td>
单价: {php echo $g['realprice']/$g['total']}<br/>
数量: {$g['total']}<br/>
总价: <strong>{$g['realprice']}</strong>
</td>
</tr>
</table>
{/loop}
</td></tr>
{/loop}
</table>
{$pager}
{template '_footer'}