Commit abbf591c by 朱继来

Merge branch 'zjl_adjust_20180911' into development

parents 31b99803 4b319b50
Showing with 6 additions and 2 deletions
......@@ -340,7 +340,8 @@
</table>
@endif
@if (!empty($order_shipping_info))
<!-- 订单或发票物流 -->
@if (!empty($order_shipping_info) || !empty($order_invoice_shipping_info))
<table class="table table-bordered table-hover">
<tr class="caption">
<th colspan="8" style="text-align: center; background: #f9f9f9;">
......@@ -348,6 +349,7 @@
</th>
</tr>
@if (!empty($order_shipping_info))
<tr>
<th width="5%">订单物流</th>
<th width="5%">快递公司:</th>
......@@ -369,6 +371,7 @@
<a class="btn btn-xs btn-success view-shipping" data-type="1">查看物流轨迹</a>
</td>
</tr>
@endif
@if (!empty($order_invoice_shipping_info))
<tr>
......@@ -622,7 +625,8 @@
<a class="btn btn-default self_express" href="javascript:;" data-id="{{$order_info['order_id']}}" class="btn btn-default">填写快递单</a>
@endif
@if ($order_info['status'] >= 4 && in_array('self_order_invoice_express', $userPerms))
<!-- 订单状态大于4,且处于开票状态,且存在权限 -->
@if ($order_info['status'] >= 4 && $order_invoice_info['inv_type'] > 1 && in_array('self_order_invoice_express', $userPerms))
<a class="btn btn-default self_invoice_express" data-id="{{$order_info['order_id']}}" href="javascript:;" class="btn btn-default">填写发票快递</a>
@endif
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment