|
|
|
@ -234,7 +234,7 @@
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<div style="margin-top: 8px ; color: #F71616;">
|
|
|
|
|
<span>提示:进入系统必须选择您当前所在仓库与分库 </span>
|
|
|
|
|
<span>提示:进入系统请选择您当前所在仓库与分库 </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;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|