默认分库问题修改

fencang
anthonywj 3 years ago
parent 0db79ad504
commit d72f5d1cdb

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

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

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

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

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

Loading…
Cancel
Save