73 lines
4.3 KiB
HTML
73 lines
4.3 KiB
HTML
<include file="Inc:header"/>
|
|
<div class="container-fluid">
|
|
<div class="main_head">
|
|
<div class="main_tab" style="width:30%; margin-top:10px;">
|
|
<a href="{:U('invoice_delivery',array('is_delivery'=>0))}" class="btn {$_GET[is_delivery]==0?'on':''}">待发货(<span>{$readyDeliveryCount}</span>)</a>
|
|
<a href="{:U('invoice_delivery',array('is_delivery'=>1))}" class="btn {$_GET[is_delivery]==1?'on':''}">已发货(<span>{$hasDeliveryCount}</span>)</a>
|
|
</div>
|
|
<div class="main_add" style="width:70%;">
|
|
<form action="__ACTION__" method="get">
|
|
<input type="hidden" name="is_delivery" value="{$_GET[is_delivery]}">
|
|
<label>订单号:<input name="order_num" value="{:I('get.order_num')}" class="span2"></label>
|
|
<button class="btn btn-inverse">搜索</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div style="text-align:right; float:right"></div>
|
|
|
|
<div class="row-fluid">
|
|
<div class="span12">
|
|
<div class="widget-box">
|
|
<div class="widget-content nopadding">
|
|
<form method="post" action="__SELF__" onsubmit="return save_form2(this);" class="modelIndex">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th width="10%">订单编号</th>
|
|
<th width="10%">收货人</th>
|
|
<th width="10%">电话</th>
|
|
<th width="30%" style='text-align: left;'>地址</th>
|
|
<th width="10%" style='text-align: left;'>物流编号</th>
|
|
<th width="10%">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<foreach name="data" item="v" >
|
|
<tr>
|
|
<td class="center tab-title"><a href="{:U('detail',array('order_id'=>$v['order_id']))}" class="iframe" width="70%" height="80%">{$v.order_num}</a></td>
|
|
<td class="center tab-title">{$v[shop_order_invoice_address][username]}</td>
|
|
<td class="center">{$v[shop_order_invoice_address][mobile]}</td>
|
|
<td>{$v[shop_order_invoice_address][province]}{$v[shop_order_invoice_address][city]}{$v[shop_order_invoice_address][area]}{$v[shop_order_invoice_address][detail]}</td>
|
|
<td class="tab-title">
|
|
<?php
|
|
if($v['shop_order_invoice_address'][express_company_num]){
|
|
$com=$v['shop_order_invoice_address'][express_company_code];
|
|
$num=$v['shop_order_invoice_address'][express_company_num];
|
|
?>
|
|
<a href="{:U('kuaidi',array('com'=>$com,'num'=>$num))}" class="iframe" target="_blank">{$v['shop_order_invoice_address'][express_company_num]}({$v['shop_order_invoice_address'][express_company_code]})</a>
|
|
<?php
|
|
}else{
|
|
?>
|
|
-
|
|
<?php
|
|
}
|
|
?>
|
|
</td>
|
|
<td class="center">
|
|
<a href="{:U('invoice_delivery_add',array('order_id'=>$v['order_id']))}" onclick="" class="btn btn-primary btn-mini iframe" >{$v[shop_order_invoice_address][express_company_code]?'修改单号':'录入单号'}</a>
|
|
</td>
|
|
</tr>
|
|
</foreach>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="pagination alternate">
|
|
<ul>{$listpage}</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<include file="Inc/footer"/> |