|
|
|
@ -350,7 +350,8 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item prop="count">
|
|
|
|
|
<el-input v-model="detailFormData.count" auto-complete="off" :disabled="true" type="number"></el-input>
|
|
|
|
|
<el-input v-model="detailFormData.count" auto-complete="off" :disabled="true"
|
|
|
|
|
type="number"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="3">
|
|
|
|
@ -937,7 +938,7 @@ export default {
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.storageList = response.data || [];
|
|
|
|
|
if (this.storageList.length > 0) {
|
|
|
|
|
this.invChange();
|
|
|
|
|
this.getSubInvList();
|
|
|
|
|
this.getList();
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
@ -958,6 +959,19 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getSubInvList() {
|
|
|
|
|
let query = {
|
|
|
|
|
pcode: this.query.locStorageCode
|
|
|
|
|
};
|
|
|
|
|
filterSubByInv(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.subInvList = response.data || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
subInvChange() {
|
|
|
|
|
this.getBusType();
|
|
|
|
|
},
|
|
|
|
|