单据复制,登录选择默认仓库修改

fencang
anthonywj 3 years ago
parent 012c107f4f
commit 9f22e85e9e

@ -234,7 +234,7 @@
</el-row>
<div style="margin-top: 8px ; color: #F71616;">
<span>提示进入系统必须选择您当前所在仓库与分库&nbsp;</span>
<span>提示进入系统选择您当前所在仓库与分库&nbsp;</span>
</div>
<div style='text-align: center; margin-bottom: 10px;margin-top: 18px ;'>
<el-button type="primary" @click="submitInv"></el-button>
@ -407,6 +407,10 @@ export default {
},
locCHange() {
if(this.$isNotBlank(this.userInfo.locSubInvCode)){
this.userInfo.locSubInvCode = "";
}
this.findSubInvByInv();
},
@ -473,6 +477,17 @@ export default {
},
submitInv() {
if (this.$isBlank(this.userInfo.locInvCode)) {
this.$message.error("当前仓库不能为空!");
return;
}
if (this.userInfo.customerId == 110) {
if (this.$isBlank(this.userInfo.locSubInvCode)) {
this.$message.error("当前分库不能为空!");
return;
}
}
updateInv(this.userInfo).then((res) => {
if (res.code == 20000) {
this.$message.success("设置成功!");
@ -529,7 +544,7 @@ export default {
}
});
},
changeInv(){
changeInv() {
this.selInvVisible = true;
},
},

@ -251,6 +251,8 @@ export default {
actDate: new Date(),
action: null,
locStorageCode: null,
fromSubInvCode: null,
invWarehouseCode: null,
mainAction: null
},
fromStorageOptions: [],
@ -328,6 +330,10 @@ export default {
locCHange() {
if (this.$isNotBlank(this.formData.invWarehouseCode)) {
this.formData.invWarehouseCode = "";
}
this.findStorageMethod();
this.findSubInvByInv(this.formData.locStorageCode);
},

Loading…
Cancel
Save