|
@@ -104,19 +104,19 @@
|
|
|
|
|
|
<el-table-column label="未调拨" prop="plateNumber">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.total - scope.row.handle - scope.row.out_storage - scope.row.transfer }}
|
|
|
+ {{ scope.row.not_transfer }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="可调拨" prop="deptId">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.in_storage }}
|
|
|
+ {{ scope.row.transfer_able }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="不可调拨" prop="vin">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.transfer + scope.row.out_storage + scope.row.handle }}
|
|
|
+ {{ scope.row.total - transfer_able }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
@@ -193,7 +193,7 @@ export default {
|
|
|
this.addBatchVisible = true
|
|
|
let numbers = []
|
|
|
this.multipleSelection.forEach(item => {
|
|
|
- numbers.push(item.batch_num)
|
|
|
+ numbers.push(item.operate_id)
|
|
|
})
|
|
|
this.$nextTick(() => {
|
|
|
this.$refs.addBatch.init()
|