委托验收补单问题,单独分库默认第一个

fencang
anthonywj 3 years ago
parent 516c4382b4
commit 0db79ad504

@ -194,7 +194,7 @@ export default {
},
storageList: [],
subInvList: [],
entrustSubInvList:[],
entrustSubInvList: [],
entrustStorageList: [],
orderTypeList: [],
fromSpecialOptions: [],
@ -270,7 +270,8 @@ export default {
findEntrustSubInvByInv() {
this.entrustSubInvList = [];
let query = {
pcode: this.inputQuery.entrustInv
pcode: this.inputQuery.entrustInv,
filter: 2,
};
filterSubByInv(query)
.then((response) => {
@ -312,7 +313,7 @@ export default {
this.getEntrustStorage();
},
subInvChange(){
subInvChange() {
this.getOrderType();
},
@ -323,7 +324,7 @@ export default {
},
entrustSubInvChange(){
entrustSubInvChange() {
let query = {
code: this.inputQuery.entrustSubInv,

@ -422,7 +422,9 @@ export default {
filterSubByInv(query)
.then((response) => {
this.subInvList = response.data || [];
if (this.subInvList != null && this.subInvList.length == 1) {
this.userInfo.locSubInvCode = this.subInvList[0];
}
})
.catch(() => {
});

@ -965,6 +965,9 @@ export default {
filterSubByInv(query)
.then((response) => {
this.subInvList = response.data || [];
if (this.subInvList != null && this.subInvList.length == 1) {
this.formData.invWarehouseCode = this.subInvList[0];
}
})
.catch(() => {
});

@ -365,7 +365,7 @@ export default {
fromCorp: "医院",
fromType: null,
locStorageCode: null,
invWarehouseCode:null,
invWarehouseCode: null,
actDate: new Date(),
billType: null,
preCheck: false,
@ -455,6 +455,10 @@ export default {
this.$message.error('当前仓库不能为空');
return;
}
if (this.formData.invWarehouseCode == null || this.formData.invWarehouseCode == '') {
this.$message.error('当前分库不能为空');
return;
}
let tQuery = Object.assign(JSON.parse(JSON.stringify(this.formData)));
tQuery.orderId = this.idQuery.id;
tQuery.actDate = parseTime(this.formData.actDate, '{y}-{m}-{d} {h}:{i}:{s}');
@ -580,6 +584,10 @@ export default {
this.$message.error('当前仓库不能为空');
return;
}
if (this.formData.invWarehouseCode == null || this.formData.invWarehouseCode == '') {
this.$message.error('当前分库不能为空');
return;
}
this.formData.corpOrderId = this.formData.corpOrderId.trim();
if (this.$isBlank(this.formData.corpOrderId)) {
let date = new Date();
@ -764,6 +772,9 @@ export default {
filterSubByInv(query)
.then((response) => {
this.subInvList = response.data || [];
if (this.subInvList != null && this.subInvList.length == 1) {
this.formData.invWarehouseCode = this.subInvList[0];
}
})
.catch(() => {
});

@ -1193,6 +1193,9 @@ export default {
filterSubByInv(query)
.then((response) => {
this.subInvList = response.data || [];
if(this.subInvList!=null && this.subInvList.length==1){
this.formData.invWarehouseCode = this.subInvList[0];
}
})
.catch(() => {
});

@ -130,8 +130,8 @@
</el-col>
<el-col :span="7">
<el-form-item prop="locStorageCode">
<el-select v-model="formData.invWarehouseCode" placeholder="当前库信息"
<el-form-item prop="invWarehouseCode">
<el-select v-model="formData.invWarehouseCode" placeholder="当前库信息"
clearable>
<el-option
v-for="item in subInvList"
@ -494,6 +494,9 @@ export default {
locStorageCode: [
{required: true, message: "请选择当前仓库", trigger: "blur"}
],
invWarehouseCode: [
{required: true, message: "请选择当前分库", trigger: "blur"}
],
// type: [
// {required: true, message: "", trigger: "blur"}
// ],
@ -1128,6 +1131,9 @@ export default {
filterSubByInv(query)
.then((response) => {
this.subInvList = response.data || [];
if(this.subInvList!=null && this.subInvList.length==1){
this.formData.invWarehouseCode = this.subInvList[0];
}
})
.catch(() => {
});

Loading…
Cancel
Save