fix:出库调整;todu:出库分配明细单据完成,出库记录

This commit is contained in:
zhangzq
2025-07-24 21:22:18 +08:00
parent 7a7db00ea4
commit 607c50151c
12 changed files with 167 additions and 248 deletions

View File

@@ -321,7 +321,7 @@ export default {
},
methods: {
open() {
crudSectattr.getSect({ 'stor_id': this.storId }).then(res => {
crudSectattr.getSectCode({ 'stor_id': this.storId }).then(res => {
this.sects = res.content
})
crudRegion.getRegionList(this.mstrow).then(res => {
@@ -355,16 +355,16 @@ export default {
},
sectQueryChange(val) {
if (val.length === 1) {
this.mstrow.stor_id = val[0]
this.mstrow.sect_id = ''
this.mstrow.stor_code = val[0]
this.mstrow.sect_code = ''
}
if (val.length === 0) {
this.mstrow.sect_id = ''
this.mstrow.stor_id = ''
this.mstrow.sect_code = ''
this.mstrow.stor_code = ''
}
if (val.length === 2) {
this.mstrow.stor_id = val[0]
this.mstrow.sect_id = val[1]
this.mstrow.stor_code = val[0]
this.mstrow.sect_code = val[1]
}
},
tabledisabled(row) {