|
@@ -123,6 +123,7 @@
|
|
|
@can('订单管理-工单处理-宝时编辑')
|
|
@can('订单管理-工单处理-宝时编辑')
|
|
|
<th style="min-width: 120px">问题件处理结果</th>
|
|
<th style="min-width: 120px">问题件处理结果</th>
|
|
|
@endcan
|
|
@endcan
|
|
|
|
|
+ <th style="min-width: 120px">仓库</th>
|
|
|
@can('订单管理-工单处理-宝时编辑')
|
|
@can('订单管理-工单处理-宝时编辑')
|
|
|
<th style="min-width: 120px">承运商赔偿金额</th>
|
|
<th style="min-width: 120px">承运商赔偿金额</th>
|
|
|
<th style="min-width: 120px">承运商快递减免</th>
|
|
<th style="min-width: 120px">承运商快递减免</th>
|
|
@@ -433,6 +434,9 @@
|
|
|
@include('order.workOrder._issue_logs')
|
|
@include('order.workOrder._issue_logs')
|
|
|
</td>
|
|
</td>
|
|
|
@endcan
|
|
@endcan
|
|
|
|
|
+ <td>
|
|
|
|
|
+ <span v-text="item.order.warehouse ? item.order.warehouse.name : ''"></span>
|
|
|
|
|
+ </td>
|
|
|
@can('订单管理-工单处理-宝时编辑')
|
|
@can('订单管理-工单处理-宝时编辑')
|
|
|
<td>
|
|
<td>
|
|
|
<input type="number" class="form-control form-control-sm"
|
|
<input type="number" class="form-control form-control-sm"
|
|
@@ -680,6 +684,10 @@
|
|
|
},
|
|
},
|
|
|
@endforeach
|
|
@endforeach
|
|
|
],
|
|
],
|
|
|
|
|
+ warehouses:[@foreach($warehouses as $warehouse)
|
|
|
|
|
+ {
|
|
|
|
|
+ name: '{{$warehouse->id}}', value: '{{$warehouse->name}}'
|
|
|
|
|
+ },@endforeach],
|
|
|
userWorkgroup: [
|
|
userWorkgroup: [
|
|
|
@foreach($userWorkgroup as $item)
|
|
@foreach($userWorkgroup as $item)
|
|
|
{
|
|
{
|
|
@@ -980,6 +988,13 @@
|
|
|
},
|
|
},
|
|
|
// 项目责任方
|
|
// 项目责任方
|
|
|
{name: 'user_owner_group_id', type: 'select', placeholder: '项目责任方', data: this.userOwnerGroup},
|
|
{name: 'user_owner_group_id', type: 'select', placeholder: '项目责任方', data: this.userOwnerGroup},
|
|
|
|
|
+ {
|
|
|
|
|
+ name: 'warehouse',
|
|
|
|
|
+ type: 'select_multiple_select',
|
|
|
|
|
+ tip: ['输入关键词快速定位下拉列表,回车确定', '选择要显示的仓库'],
|
|
|
|
|
+ placeholder: ['仓库', '定位或多选仓库'],
|
|
|
|
|
+ data: this.warehouses
|
|
|
|
|
+ },
|
|
|
],
|
|
],
|
|
|
[
|
|
[
|
|
|
// 退回标记
|
|
// 退回标记
|