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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user