Commit a55ffb55 by 朱继来

自营列表添加ERP订单号

parent e0e60fca
Showing with 3 additions and 0 deletions
...@@ -216,6 +216,7 @@ ...@@ -216,6 +216,7 @@
<th class="pl30">会员账号</th> <th class="pl30">会员账号</th>
<th class="pl30">公司</th> <th class="pl30">公司</th>
<th class="pl30">订单编号</th> <th class="pl30">订单编号</th>
<th class="pl30">ERP单号</th>
<th class="pl30">应付金额</th> <th class="pl30">应付金额</th>
<th class="pl30">订单状态</th> <th class="pl30">订单状态</th>
<th class="pl30">付款类型</th> <th class="pl30">付款类型</th>
...@@ -249,6 +250,8 @@ ...@@ -249,6 +250,8 @@
@endif @endif
</td> </td>
<td class="show-list">{{$v['order_sn']}}</td> <td class="show-list">{{$v['order_sn']}}</td>
<?php $order_extend = App\Http\Controllers\getOrderExtend($v['order_id']); ?>
<td class="show-list">{{ $order_extend ? $order_extend->erp_sn : '' }}</td>
<td class="show-list"> <td class="show-list">
<?php <?php
$currencySign = $v['currency'] == 1 ? '¥' : '$'; $currencySign = $v['currency'] == 1 ? '¥' : '$';
......
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