add:外协发货详情添加物料参数

This commit is contained in:
zhangzhiqiang
2023-02-06 17:43:24 +08:00
parent 077393cd37
commit 37ccceed6b
4 changed files with 19 additions and 6 deletions

View File

@@ -72,9 +72,7 @@ export default {
type: Boolean,
default: false
},
openParam: {
type: String
}
openParam: {}
},
data() {
return {
@@ -86,7 +84,8 @@ export default {
dialogShow: {
handler(newValue, oldValue) {
this.dialogVisible = newValue
this.crud.query.storagevehicle_code = this.openParam
this.crud.query.storagevehicle_code = this.openParam.storagevehicle_code
this.crud.query.material_code = this.openParam.material_code
}
}
},

View File

@@ -217,7 +217,7 @@ export default {
currentRow: {},
Depts: [],
resultPutDialog: false,
openParam: null,
openParam: {},
query_flag: true,
passList: [
{ 'label': '未出库', 'value': '0' },
@@ -264,7 +264,8 @@ export default {
})
},
openBucket(row) {
this.openParam = row.storagevehicle_code
this.openParam.storagevehicle_code = row.storagevehicle_code
this.openParam.material_code = row.material_code
this.bucketDialog = true
},
orgFormat(row) {