84 lines
3.6 KiB
HTML
84 lines
3.6 KiB
HTML
{template '_header'}
|
|
|
|
<div class="page-header"> 当前位置:<span class="text-primary">商品销售明细</span> </div>
|
|
<div class="alert alert-primary">
|
|
<p><b>数据说明</b></p>
|
|
<p> 数量:已付款订单数<br>
|
|
价格:商品卖价<br>
|
|
</p>
|
|
</div>
|
|
<div class="page-content">
|
|
<form action="./index.php" method="get" class="form-horizontal">
|
|
<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.goods" />
|
|
<div class="page-toolbar m-b-sm m-t-sm">
|
|
<div class="col-sm-5">
|
|
{php echo tpl_daterange('datetime', array('sm'=>true,'placeholder'=>'下单时间'),true);}
|
|
</div>
|
|
<div class="col-sm-6 pull-right">
|
|
<div class="input-group">
|
|
<div class="input-group-select">
|
|
<select name='orderby' class='form-control ' style="width:120px;" >
|
|
<option value='' {if $_GPC['orderby']==''}selected{/if}>排序</option>
|
|
<option value='0' {if $_GPC['orderby']=='0'}selected{/if}>按销售额</option>
|
|
<option value='1' {if $_GPC['orderby']=='1'}selected{/if}>按销售量</option>
|
|
</select>
|
|
</div>
|
|
<input type="text" class="form-control" name="title" value="{$_GPC['title']}" placeholder="商品名称"/>
|
|
<span class="input-group-btn">
|
|
<button class="btn btn-primary" type="submit"> 搜索</button>
|
|
{ifp 'statistics.goods.export'}
|
|
<button type="submit" name="export" value="1" class="btn btn-success">导出</button>
|
|
{/if}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
{if empty($list)}
|
|
<div class="panel panel-default">
|
|
<div class="panel-body empty-data">未查询到相关数据</div>
|
|
</div>
|
|
{else}
|
|
<table class="table table-hover">
|
|
<thead class="navbar-inner">
|
|
<tr>
|
|
<th style="width:190px;">订单号</th>
|
|
<th>商品名称</th>
|
|
<th>商品编号</th>
|
|
<th style="width: 80px">数量</th>
|
|
<th>价格</th>
|
|
<th style="width: 100px;">成交时间</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{loop $list $item}
|
|
<tr>
|
|
<td>{$item['ordersn']}</td>
|
|
<td><img src="{php echo tomedia($item['thumb'])}" style="width: 30px; height: 30px;border:1px solid #ccc;padding:1px;" onerror="this.src='../addons/{EWEI_SHOP_V2_MODULE_NAME}/static/images/nopic.png'" >
|
|
{$item['title']}
|
|
</td>
|
|
<td>{$item['goodssn']}</td>
|
|
<td>{$item['total']}</td>
|
|
<td>{$item['price']}</td>
|
|
<td>{php echo date('Y-m-d',$item['createtime'])}<br/>{php echo date('H:i:s',$item['createtime'])}</td>
|
|
</tr>
|
|
{/loop}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="6" style="text-align: right">
|
|
{$pager}
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
{/if}
|
|
</div>
|
|
|
|
{template '_footer'}
|