This commit is contained in:
qianhao.xu
2024-04-09 17:57:25 +08:00
parent 2b0480dd31
commit 6c72faadb9
2 changed files with 12 additions and 10 deletions

View File

@@ -63,35 +63,36 @@
<table title="出库计划" align="center">
<thead>
<tr>
<th>批次号</th>
<th>物料号</th>
<th>所属仓库</th>
<th>批次号</th>
<th>需求零件数</th>
<!-- <th>批次箱数</th>
<th>批次零件数</th> -->
<th>库存箱数</th>
<th>库存零件数</th>
<th>需求零件数</th>
<!-- <th>批次时间</th>
<th>出库顺序</th> -->
</tr>
</thead>
<tbody>
<tr v-if="item.package_code_client != null" v-for="(item, index) in printData.planlList" :key="index">
<td>{{ item.patchcode }}</td>
<tr v-for="(item, index) in printData.planlList" :key="index">
<td>{{ item.materialCode }}</td>
<td>{{ item.warehouseCode }}</td>
<td>{{ item.patchcode }}</td>
<td>{{ item.partnumberNum }}</td>
<!-- <td>{{ item.requireNum }}</td> -->
<!-- <td>{{ item.packageNum }}</td>
<td>{{ item.partnumberNum }}</td> -->
<td>{{ item.inventory_pack_num }}</td>
<td>{{ item.inventory_num }}</td>
<td>{{ item.requireNum }}</td>
<!-- <td>{{ item.patchtime }}</td>
<td>{{ item.outorder }}</td> -->
</tr>
<tr v-else>
<td :colspan="8"><div class="line"></div></td>
</tr>
</tbody>
</table>
</div>