Commit ac25508b by 朱继来

添加按钮

parent 7786f324
Showing with 6 additions and 0 deletions
......@@ -404,6 +404,12 @@
@if ($username == 'vpadmin@ichunt.com')
<a class="btn btn-info edit_erp_sn" data-oid="{{$v['order_id']}}" data-erp_sn="{{ $order_extend ? $order_extend->erp_sn : '' }}">编辑ERP单号</a>
@endif
<!-- 解锁审单 -->
<?php $is_lock_check = App\Http\Controllers\isLockCheck($v['order_id']); ?>
@if (in_array($role, [1, 2]) && $is_lock_check && in_array($v['status'], [1, 2]) && $order_extend->is_manager_audit != 3)
<a class="btn btn-danger unlock_check" data-oid="{{$v['order_id']}}">解锁审单</a>
@endif
</div>
</td>
</tr>
......
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