拆托-拆分库存
parent
a267581313
commit
9485d328a0
|
|
@ -201,17 +201,17 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column :show-overflow-tooltip="true" prop="areaName" label="区域">
|
<el-table-column :show-overflow-tooltip="true" prop="areaName" label="区域">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div>{{ scope.row.point.area.name }}</div>
|
<span v-if="scope.row.point != null">{{ scope.row.point.area.name }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column :show-overflow-tooltip="true" prop="pointCode" label="点位号">
|
<el-table-column :show-overflow-tooltip="true" prop="pointCode" label="点位号">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div>{{ scope.row.point.code }}</div>
|
<span v-if="scope.row.point != null">{{ scope.row.point.code }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column :show-overflow-tooltip="true" prop="storageType" label="容器类型">
|
<el-table-column :show-overflow-tooltip="true" prop="storageType" label="容器类型">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div>{{ scope.row.point.storageType }}</div>
|
<span v-if="scope.row.point != null">{{ scope.row.point.storageType }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="quantity" label="数量" />
|
<el-table-column prop="quantity" label="数量" />
|
||||||
|
|
@ -319,7 +319,7 @@ export default {
|
||||||
},
|
},
|
||||||
FromDevanningFlag: false,
|
FromDevanningFlag: false,
|
||||||
devanPropC6: { startPropC6: null, endPropC6: null },
|
devanPropC6: { startPropC6: null, endPropC6: null },
|
||||||
fromDevanning: { ids: [], textPropC6: null, text1PropC6: null, text2PropC6: null, startPointCode: null, endPointCode: null },
|
fromDevanning: { invIds: [], textPropC6: null, text1PropC6: null, text2PropC6: null, startPointCode: null, endPointCode: null },
|
||||||
rules: {}
|
rules: {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -340,11 +340,11 @@ export default {
|
||||||
},
|
},
|
||||||
LoadDevanning() {
|
LoadDevanning() {
|
||||||
this.FromDevanningFlag = true
|
this.FromDevanningFlag = true
|
||||||
this.fromDevanning.ids = []
|
this.fromDevanning.invIds = []
|
||||||
for (let i = 0; i < this.crud.selections.length; i++) {
|
for (let i = 0; i < this.crud.selections.length; i++) {
|
||||||
this.fromDevanning.ids.push(this.crud.selections[i].id)
|
this.fromDevanning.invIds.push(this.crud.selections[i].id)
|
||||||
}
|
}
|
||||||
getItemKey(this.fromDevanning.ids).then(res => {
|
getItemKey(this.fromDevanning.invIds).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
console.log('值:' + res.data)
|
console.log('值:' + res.data)
|
||||||
this.fromDevanning.textPropC6 = res.data
|
this.fromDevanning.textPropC6 = res.data
|
||||||
|
|
@ -380,6 +380,8 @@ export default {
|
||||||
devanning() {
|
devanning() {
|
||||||
devanning(this.fromDevanning).then(res => {
|
devanning(this.fromDevanning).then(res => {
|
||||||
this.crud.notify(res.message, res.status)
|
this.crud.notify(res.message, res.status)
|
||||||
|
this.FromDevanningFlag = false
|
||||||
|
this.crud.toQuery()
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
deleteDataM(id) { // 删除数据的方法
|
deleteDataM(id) { // 删除数据的方法
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue