<p style="padding-left: 5px;">推送业务员</p> <div class="tabs-box"> <div class="order-change-main"> @if ($order_info['sale_id']) <p class="error">订单已推送!</p> @endif <form id="sendSalesForm" class="form-horizontal table-responsive"> <input type="hidden" name="order_id" value="{{$order_info['order_id']}}"> <table class="table table-bordered table-hover check-table" style="min-height:150px;"> @if (!empty($joint_in_charge)) <tr> <td class="check-table-title">联营客服:</td> <td> <ul> <table class="table table-bordered table-hover"> <tr> <td width="10%">主管:</td> <td> <ul> @foreach ($joint_in_charge as $vo) @if ($vo->userId == $order_info['sale_id']) <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}" checked /><span>{{$vo->name}}</span></label></li> @else <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}"/><span>{{$vo->name}}</span></label></li> @endif @endforeach </ul> </td> </tr> <tr> <td>线销一组:</td> <td> <ul> @foreach ($joint_kefu_1 as $vo) @if ($vo->userId == $order_info['sale_id']) <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}" checked /><span>{{$vo->name}}</span></label></li> @else <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}"/><span>{{$vo->name}}</span></label></li> @endif @endforeach </ul> </td> </tr> <tr> <td>线销二组:</td> <td> <ul> @foreach ($joint_kefu_2 as $vo) @if ($vo->userId == $order_info['sale_id']) <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}" checked /><span>{{$vo->name}}</span></label></li> @else <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}"/><span>{{$vo->name}}</span></label></li> @endif @endforeach </ul> </td> </tr> <tr> <td>线销三组:</td> <td> <ul> @foreach ($joint_kefu_3 as $vo) @if ($vo->userId == $order_info['sale_id']) <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}" checked /><span>{{$vo->name}}</span></label></li> @else <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}"/><span>{{$vo->name}}</span></label></li> @endif @endforeach </ul> </td> </tr> </table> </ul> </td> </tr> @endif @if (!empty($sale_list)) <tr> <td class="check-table-title">交易员:</td> <td> <ul> @foreach ($sale_list as $vo) @if ($vo->userId == $order_info['sale_id']) <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}" checked /><span>{{$vo->name}}</span></label></li> @else <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}"/><span>{{$vo->name}}</span></label></li> @endif @endforeach </ul> </td> </tr> @endif @if (!empty($self_manager)) <tr> <td class="check-table-title" width="10%">自营客服主管:</td> <td> <ul> @foreach ($self_manager as $v) @if ($v->userId == $order_info['sale_id']) <li><label><input type="radio" name="sale_id" value="{{$v->userId}}" checked /><span>{{$v->name}}</span></label></li> @else <li><label><input type="radio" name="sale_id" value="{{$v->userId}}"/><span>{{$v->name}}</span></label></li> @endif @endforeach </ul> </td> </tr> @endif @if (!empty($self_kefu)) <tr> <td class="check-table-title">自营客服:</td> <td> <ul> @foreach ($self_kefu as $vo) @if ($vo->userId == $order_info['sale_id']) <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}" checked /><span>{{$vo->name}}</span></label></li> @else <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}"/><span>{{$vo->name}}</span></label></li> @endif @endforeach </ul> </td> </tr> @endif @if (!empty($test)) <tr> <td class="check-table-title">测试:</td> <td> <ul> @foreach ($test as $vo) @if ($vo->userId == $order_info['sale_id']) <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}" checked /><span>{{$vo->name}}</span></label></li> @else <li><label><input type="radio" name="sale_id" value="{{$vo->userId}}"/><span>{{$vo->name}}</span></label></li> @endif @endforeach </ul> </td> </tr> @endif <!-- 查看权限:当前推送人 或 管理员、经理、测试、运营助理 或 自营客服主管 --> @if ($sale_id == $order_info['sale_id'] || in_array($role, [1, 2, 5, 8, 10, 11, 14, 16, 18])) <tr> <td class="check-table-title">备注信息:</td> <td> <textarea name="send_remark" id="send_remark" class="form-control">{{$order_temp_info['send_remark']}}</textarea> </td> </tr> @endif </table> <a class="btn btn-primary send_sales">提交</a> </form> </div> </div>