|
|
@@ -120,22 +120,22 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</template>
|
|
|
- <template v-slot:stockCount="{ row }">
|
|
|
+ <template v-slot:inventoryQuantity="{ row }">
|
|
|
<el-link
|
|
|
type="primary"
|
|
|
:underline="false"
|
|
|
@click="stockDetail(row)"
|
|
|
>
|
|
|
- {{ row.stockCount }}
|
|
|
+ {{ row.inventoryQuantity }}
|
|
|
</el-link>
|
|
|
</template>
|
|
|
- <template v-slot:currentCount="{ row }">
|
|
|
+ <template v-slot:inTransitNum="{ row }">
|
|
|
<el-link
|
|
|
type="primary"
|
|
|
:underline="false"
|
|
|
@click="currentDetail(row)"
|
|
|
>
|
|
|
- {{ row.currentCount }}
|
|
|
+ {{ row.inTransitNum }}
|
|
|
</el-link>
|
|
|
</template>
|
|
|
<template v-slot:inventoryStatusText="{ row }">
|
|
|
@@ -425,10 +425,10 @@
|
|
|
// });
|
|
|
// },
|
|
|
stockDetail(row) {
|
|
|
- this.$refs.stockDetailDialog.open(row);
|
|
|
+ this.$refs.stockDetailDialog.open({ bomCode: row.code });
|
|
|
},
|
|
|
currentDetail(row) {
|
|
|
- this.$refs.currentDetailDialog.open(row);
|
|
|
+ this.$refs.currentDetailDialog.open({ bomCode: row.code });
|
|
|
},
|
|
|
// 选择BOM类型
|
|
|
async bomTypeChange(e) {
|