|
@@ -88,11 +88,12 @@
|
|
|
<el-icon v-else />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="checkQty" label="合格数量" align="center" v-if="columns.showColumn('checkQty')" width="80" />
|
|
|
- <el-table-column prop="instoreQty" label="入库数量" align="center" v-if="columns.showColumn('instoreQty')" width="80" />
|
|
|
- <el-table-column prop="outstoreQty" label="出库数量" align="center" v-if="columns.showColumn('outstoreQty')"
|
|
|
+ <el-table-column prop="sumQaQty" label="合格数量" align="center" v-if="columns.showColumn('sumQaQty')" width="80" />
|
|
|
+ <el-table-column prop="sumInstoreQty" label="入库数量" align="center" v-if="columns.showColumn('sumInstoreQty')"
|
|
|
width="80" />
|
|
|
- <el-table-column prop="assQty" label="装配数量" align="center" v-if="columns.showColumn('assQty')" width="80" />
|
|
|
+ <el-table-column prop="sumOutstoreQty" label="出库数量" align="center" v-if="columns.showColumn('sumOutstoreQty')"
|
|
|
+ width="80" />
|
|
|
+ <el-table-column prop="sumAssQty" label="装配数量" align="center" v-if="columns.showColumn('sumAssQty')" width="80" />
|
|
|
<el-table-column label="追溯" align="center" width="400">
|
|
|
<template #default="scope">
|
|
|
<el-button-group>
|
|
@@ -147,10 +148,10 @@ const columns = ref([
|
|
|
{ visible: true, prop: 'materialName', label: '物料名称' },
|
|
|
{ visible: true, prop: 'materialSpec', label: '规格型号 / 图号' },
|
|
|
{ visible: true, prop: 'keyFlag', label: '关键件' },
|
|
|
- { visible: true, prop: 'checkQty', label: '质检数量' },
|
|
|
- { visible: true, prop: 'instoreQty', label: '入库数量' },
|
|
|
- { visible: true, prop: 'outstoreQty', label: '出库数量' },
|
|
|
- { visible: true, prop: 'assQty', label: '装配数量' },
|
|
|
+ { visible: true, prop: 'sumQaQty', label: '质检数量' },
|
|
|
+ { visible: true, prop: 'sumInstoreQty', label: '入库数量' },
|
|
|
+ { visible: true, prop: 'sumOutstoreQty', label: '出库数量' },
|
|
|
+ { visible: true, prop: 'sumAssQty', label: '装配数量' },
|
|
|
])
|
|
|
|
|
|
const total = ref(0)
|
|
@@ -263,7 +264,6 @@ function closeDialog() {
|
|
|
open.value = false
|
|
|
tranceParams.materialCode = undefined
|
|
|
tranceParams.bnSnCode = undefined
|
|
|
- console.log('close')
|
|
|
}
|
|
|
|
|
|
handleQuery()
|