|
@@ -1,6 +1,6 @@
|
|
|
<div class="modal fade " id="intercept-modal" tabindex="-1" role="dialog" aria-labelledby="checkModalLabel"
|
|
<div class="modal fade " id="intercept-modal" tabindex="-1" role="dialog" aria-labelledby="checkModalLabel"
|
|
|
aria-hidden="true">
|
|
aria-hidden="true">
|
|
|
- <div class="modal-dialog modal-xl modal-dialog-centered">
|
|
|
|
|
|
|
+ <div class="modal-dialog modal-xl modal-dialog-centered ">
|
|
|
<div class="modal-content">
|
|
<div class="modal-content">
|
|
|
<div class="modal-header">
|
|
<div class="modal-header">
|
|
|
<h5 class="modal-title" id="checkModalLabel">创建工单</h5>
|
|
<h5 class="modal-title" id="checkModalLabel">创建工单</h5>
|
|
@@ -8,7 +8,7 @@
|
|
|
<span aria-hidden="true">×</span>
|
|
<span aria-hidden="true">×</span>
|
|
|
</button>
|
|
</button>
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="modal-body">
|
|
|
|
|
|
|
+ <div class="modal-body pd-0">
|
|
|
{{--工单类型--}}
|
|
{{--工单类型--}}
|
|
|
<div class="form-group row">
|
|
<div class="form-group row">
|
|
|
<label for="order_issue_type" class="col-sm-2 col-form-label text-right">工单类型</label>
|
|
<label for="order_issue_type" class="col-sm-2 col-form-label text-right">工单类型</label>
|
|
@@ -139,7 +139,7 @@
|
|
|
<td class="text-center" v-if="['破损',].includes(workOrder.orderIssueType)">异常类型</td>
|
|
<td class="text-center" v-if="['破损',].includes(workOrder.orderIssueType)">异常类型</td>
|
|
|
<td class="text-center">商品名称</td>
|
|
<td class="text-center">商品名称</td>
|
|
|
<td class="text-center">订单数量</td>
|
|
<td class="text-center">订单数量</td>
|
|
|
- <td class="text-center">异常数量</td>
|
|
|
|
|
|
|
+ <td class="text-center"><span v-text="workOrder.orderIssueType === '错漏发' ? '客户实收数量' : '异常数量'" ></span></td>
|
|
|
<td></td>
|
|
<td></td>
|
|
|
</tr>
|
|
</tr>
|
|
|
</thead>
|
|
</thead>
|
|
@@ -150,8 +150,6 @@
|
|
|
<td v-if="['破损',].includes(workOrder.orderIssueType)">
|
|
<td v-if="['破损',].includes(workOrder.orderIssueType)">
|
|
|
<span v-if="workOrder.orderIssueType === '破损'"
|
|
<span v-if="workOrder.orderIssueType === '破损'"
|
|
|
:data="commodity.abnormal_type = '破损'" >破损</span>
|
|
:data="commodity.abnormal_type = '破损'" >破损</span>
|
|
|
-{{-- <span v-if="workOrder.orderIssueType === '错漏发'"--}}
|
|
|
|
|
-{{-- :data="commodity.abnormal_type = '错漏发'" >错漏发</span>--}}
|
|
|
|
|
</td>
|
|
</td>
|
|
|
<td><span v-text="commodity.name"></span></td>
|
|
<td><span v-text="commodity.name"></span></td>
|
|
|
<td><span v-text="commodity.amount"></span></td>
|
|
<td><span v-text="commodity.amount"></span></td>
|
|
@@ -166,6 +164,32 @@
|
|
|
</tr>
|
|
</tr>
|
|
|
</tbody>
|
|
</tbody>
|
|
|
</table>
|
|
</table>
|
|
|
|
|
+ <div v-if="workOrder.orderIssueType === '错漏发'" >
|
|
|
|
|
+ <table class="table table-sm table-grid-row table-hover mb-0">
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td>
|
|
|
|
|
+ <input type="text" class="form-control" id="add-commodity-logistic-number" ref="add-commodity-logistic-number" placeholder="快递单号">
|
|
|
|
|
+ </td>
|
|
|
|
|
+ <td>
|
|
|
|
|
+ <input type="text" class="form-control" id="add-commodity-sku" ref="add-commodity-sku" placeholder="商品条码">
|
|
|
|
|
+ </td>
|
|
|
|
|
+ <td>
|
|
|
|
|
+
|
|
|
|
|
+ </td>
|
|
|
|
|
+ <td>
|
|
|
|
|
+
|
|
|
|
|
+ </td>
|
|
|
|
|
+ <td>
|
|
|
|
|
+ <input type="number" class="form-control" id="add-commodity-number" ref="add-commodity-number" placeholder="客户实收数量">
|
|
|
|
|
+ </td>
|
|
|
|
|
+ <td>
|
|
|
|
|
+ <button type="button" class="btn btn-sm btn-outline-success" @click="addWorkOrderCommodity">
|
|
|
|
|
+ 添加
|
|
|
|
|
+ </button>
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ </table>
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|