|
|
|
@ -156,7 +156,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-select v-model="formData.fromSubInvCode" placeholder="请选择分库" clearable="true"
|
|
|
|
|
:disabled="corpOrderIdDisabled">
|
|
|
|
|
:disabled="corpOrderIdDisabled"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in fromSubStorageOptions"
|
|
|
|
|
:key="item.code"
|
|
|
|
@ -188,7 +189,7 @@
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item prop="invWarehouseCode">
|
|
|
|
|
<el-select v-model="formData.invWarehouseCode" placeholder="当前分库信息"
|
|
|
|
|
:disabled="corpOrderIdDisabled">
|
|
|
|
|
:disabled="corpOrderIdDisabled" @change="subStorageChange">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in subInvList"
|
|
|
|
|
:key="item.name"
|
|
|
|
@ -865,6 +866,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
getBusType() {
|
|
|
|
|
let query = {
|
|
|
|
|
code: this.formData.invWarehouseCode,
|
|
|
|
|
enabled: true,
|
|
|
|
|
};
|
|
|
|
|
getLocalJoinByUser(query)
|
|
|
|
@ -875,6 +877,9 @@ export default {
|
|
|
|
|
if (this.curAction != null) {
|
|
|
|
|
this.formData.vailInv = this.curAction.vailInv;
|
|
|
|
|
this.formData.codeFillCheck = this.curAction.codeFillCheck;
|
|
|
|
|
} else {
|
|
|
|
|
this.curAction = {corpType:0,genUnit: false,changeEnable:false,};
|
|
|
|
|
this.formData.action = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
@ -899,6 +904,10 @@ export default {
|
|
|
|
|
this.findStorageMethod();
|
|
|
|
|
this.findSubInvByInv(this.formData.locStorageCode);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
subStorageChange() {
|
|
|
|
|
this.getBusType();
|
|
|
|
|
},
|
|
|
|
|
findMethod(query) {
|
|
|
|
|
this.fromOptions = [];
|
|
|
|
|
let cQuery = {
|
|
|
|
@ -975,6 +984,7 @@ export default {
|
|
|
|
|
this.subInvList = response.data || [];
|
|
|
|
|
if (this.subInvList != null && this.subInvList.length == 1) {
|
|
|
|
|
this.formData.invWarehouseCode = this.subInvList[0].code;
|
|
|
|
|
this.getBusType();
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
@ -1128,7 +1138,6 @@ export default {
|
|
|
|
|
this.formData.code = '';
|
|
|
|
|
this.formData.actDate = new Date();
|
|
|
|
|
this.codeArray = [];
|
|
|
|
|
this.getBusType();
|
|
|
|
|
this.getStorage(this.formData.action);
|
|
|
|
|
this.findSubInvByInv();
|
|
|
|
|
this.findSubStorageMethod();
|
|
|
|
@ -1167,6 +1176,8 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.getBusType();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|