111
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user