扫码单据类型补单默认仓库与分库

fencang
anthonywj 3 years ago
parent fe291d6eaa
commit 06c55ffca2

@ -211,6 +211,7 @@ export default {
scanPreIn: null,
vailInv: null,
codeFillCheck: null,
defaultInv:null,
defaultSubInv: null,
},
enableMap: {
@ -357,7 +358,8 @@ export default {
vailInv: row.vailInv,
codeFillCheck: row.codeFillCheck,
changeEnable: row.changeEnable,
defaultSubInv: row.defaultSubInv
defaultSubInv: row.defaultSubInv,
defaultInv:row.defaultInv,
};
this.modifyDialogVisible = true;

@ -153,9 +153,22 @@
<el-col :span="10" class="el-col">
<div class="text item">
<div class="itemTag">
<span>补单默认:&nbsp;</span>
<span>补单默认:&nbsp;</span>
</div>
<el-select v-model="inputQuery.defaultSubInv" placeholder="请选择默认分库" clearable="true"
<el-select v-model="inputQuery.defaultInv" placeholder="默认仓库" clearable="true"
@change="invChange"
style="width: 30%"
size="small">
<el-option
v-for="item in storageList"
:key="item.name"
:label="item.name"
:value="item.code">
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
<el-select v-model="inputQuery.defaultSubInv" placeholder="默认分库" clearable="true"
style="width: 30%"
size="small">
<el-option
v-for="item in subInvList"
@ -419,10 +432,17 @@ export default {
filterAll()
.then((response) => {
this.storageList = response.data || [];
this.findDefaultSubInv();
})
.catch(() => {
});
},
invChange() {
if (this.$isNotBlank(this.inputQuery.defaultSubInv))
this.inputQuery.defaultSubInv = null;
this.findDefaultSubInv();
},
findSpecialMethod() {
let query = {
corpType: 4,
@ -473,7 +493,7 @@ export default {
findDefaultSubInv() {
this.subInvList = [];
let query = {
pcode: "1000"
pcode: this.inputQuery.defaultInv
};
filterSubByInv(query)
.then((response) => {
@ -507,7 +527,6 @@ export default {
this.getList();
this.getStorage();
this.findSpecialMethod();
this.findDefaultSubInv();
},
};

@ -408,7 +408,7 @@ export default {
locCHange() {
if(this.$isNotBlank(this.userInfo.locSubInvCode)){
if (this.$isNotBlank(this.userInfo.locSubInvCode)) {
this.userInfo.locSubInvCode = "";
}
this.findSubInvByInv();
@ -484,11 +484,9 @@ export default {
this.$message.error("当前仓库不能为空!");
return;
}
if (this.userInfo.customerId == 110) {
if (this.$isBlank(this.userInfo.locSubInvCode)) {
this.$message.error("当前分库不能为空!");
return;
}
if (this.$isBlank(this.userInfo.locSubInvCode)) {
this.$message.error("当前分库不能为空!");
return;
}
updateInv(this.userInfo).then((res) => {
if (res.code == 20000) {

Loading…
Cancel
Save