...
|
...
|
@@ -21,9 +21,7 @@ |
|
|
<select class="form-control" name="receiver" style="width: 140px;">
|
|
|
<option value=''>全部</option>
|
|
|
<foreach name="$receiver_data" item="r">
|
|
|
<notempty name="$status">
|
|
|
<php>$str = "$r[receiver_province]|$r[receiver_city]|$r[receiver_county]";</php>
|
|
|
</notempty>
|
|
|
<option value="{$r.receiver_province}|{$r.receiver_city}|{$r.receiver_county}" <if condition="$receiver eq $str">selected</if>>{$r.receiver_province}|{$r.receiver_city}|{$r.receiver_county}</option>
|
|
|
</foreach>
|
|
|
</select>
|
...
|
...
|
@@ -91,7 +89,9 @@ |
|
|
data-action="{:url('Order/delete')}" data-subcheck="true" data-msg="你确定删除吗?">
|
|
|
{:lang('DELETE')}
|
|
|
</button>
|
|
|
<notempty name="$status">
|
|
|
<php>$status = implode('*',$status)</php>
|
|
|
</notempty>
|
|
|
<a class="btn btn-info btn-sm" href="{:url('Order/excel',array('status'=>$status,'receiver'=>$receiver,'logistics_id'=>$logistics_id,'keyword'=>$keyword,'start_time'=>$start_time,'end_time'=>$end_time,'start_time1'=>$start_time1,'end_time1'=>$end_time1,'start_total_weight'=>$start_total_weight,'end_total_weight'=>$end_total_weight,'start_total_volume'=>$start_total_volume,'end_total_volume'=>$end_total_volume,'start_package_service_price'=>$start_package_service_price,'end_package_service_price'=>$end_package_service_price,'start_transport_price'=>$start_transport_price,'end_transport_price'=>$end_transport_price))}">
|
|
|
导出Excel
|
|
|
</a>
|
...
|
...
|
|