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

fencang
anthonywj 3 years ago
parent 012c107f4f
commit 9f22e85e9e

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

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

Loading…
Cancel
Save