This commit is contained in:
2023-07-04 17:47:32 +08:00

View File

@@ -74,6 +74,7 @@
<th>移出货位2</th>
<th>移出载具2</th>
<th>移出重量2</th>
<th>执行状态</th>
<th>创建时间</th>
<th>创建人</th>
</tr>
@@ -82,11 +83,11 @@
<tr v-for="(e, i) in dataList" :key="e.bill_code" :class="{'selected_icon': pkId === e.bill_code}" @click="toRadio(e)">
<td>{{ i+1 }}</td>
<td>{{ e.bill_code }}</td>
<td v-if="bill_status === '10'">生成</td>
<td v-if="bill_status === '20'">提交</td>
<td v-if="bill_status === '30'">执行中</td>
<td v-if="bill_status === '60'">确认</td>
<td v-if="bill_status === '99'">完成</td>
<td v-if="e.bill_status === '10'">生成</td>
<td v-if="e.bill_status === '20'">提交</td>
<td v-if="e.bill_status === '30'">执行中</td>
<td v-if="e.bill_status === '60'">确认</td>
<td v-if="e.bill_status === '99'">完成</td>
<td>普通拼盘</td>
<td>{{ e.material_code }}</td>
<td>{{ e.material_spec }}</td>
@@ -96,6 +97,12 @@
<td>{{ e.turnin_struct_code }}</td>
<td>{{ e.storagevehicle_code_in }}</td>
<td>{{ e.qty }}</td>
<td v-if="e.work_status === '00'">未生成</td>
<td v-if="e.work_status === '10'">生成</td>
<td v-if="e.work_status === '20'">移出中</td>
<td v-if="e.work_status === '30'">移出确认</td>
<td v-if="e.work_status === '40'">移回中</td>
<td v-if="e.work_status === '99'">完成</td>
<td>{{ e.create_time }}</td>
<td>{{ e.create_name }}</td>
</tr>