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>

View File

@@ -16,7 +16,7 @@
<el-row type="flex" justify="start" align="top" :gutter="10">
<el-form-item label="" prop="search">
<el-button type="primary" icon="el-icon-search" size="medium" @click="getList">搜索</el-button>
<el-button type="success" icon="el-icon-plus" size="medium" :disabled="dataList.length === 0" @click="handelConfirm">添加物料</el-button>
</el-form-item>
</el-row>
<el-row>
@@ -49,6 +49,7 @@
</el-form>
<div slot="footer">
<el-button @click="close">取消</el-button>
<el-button type="success" icon="el-icon-plus" size="medium" :disabled="dataList.length === 0" @click="handelConfirm">添加物料</el-button>
</div>
</el-dialog>
</div>