物料出库

This commit is contained in:
chenjianan
2019-06-03 14:58:28 +08:00
parent 8091c16cf3
commit 93f93e6df2
3 changed files with 35 additions and 27 deletions

View File

@@ -282,6 +282,11 @@
{{ scope.row.备件数量 }}
</template>
</el-table-column>
<el-table-column label="已领数量" align="center" min-width="70">
<template slot-scope="scope">
{{ scope.row.出库数量 }}
</template>
</el-table-column>
<el-table-column v-if="true" label="操作" align="center" width="100">
<template slot-scope="scope">
<el-button :disabled="!!scope.row.是否出库" size="mini" type="danger" icon="el-icon-delete" @click="dropListDetail(scope.row)">删除</el-button>
@@ -612,7 +617,7 @@ export default {
this.$message.success('删除成功')
this.clickList()
} else {
this.$message.error('已确认领回,不可删除')
this.$message.error('已领取,不可删除')
}
})
}).catch(() => {