Merge remote-tracking branch 'origin/fencang' into fencang

fencang
x_z 3 years ago
commit 02e98841c4

@ -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(() => {

@ -960,7 +960,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