半成品拼盘

This commit is contained in:
2023-07-04 16:49:29 +08:00
parent 13f4d5bc78
commit b96cfba730

View File

@@ -74,6 +74,7 @@
<th>移出货位2</th>
<th>移出载具2</th>
<th>移出重量2</th>
<th>执行状态</th>
<th>创建时间</th>
<th>创建人</th>
</tr>
@@ -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>