调拨出入库展示仓库号问题

featFunction
anthonywj 2 years ago
parent b00b20d615
commit 432e6a9e9b

@ -93,6 +93,7 @@
:page-size="query.limit"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:current-page="query.page"
:total="total"
>
</el-pagination>

@ -1035,7 +1035,7 @@ export default {
});
},
findSubStorageMethod() {
findSubStorageMethod(val) {
let cQuery = {
pcode: this.formData.fromCorpId,
filter: 2,
@ -1043,7 +1043,10 @@ export default {
filterSubByInv(cQuery)
.then((response) => {
this.fromSubStorageOptions = response.data || [];
this.formData.fromSubInvCode = this.fromSubStorageOptions[0].code;
if (val == 1) {
} else
this.formData.fromSubInvCode = this.fromSubStorageOptions[0].code;
})
.catch(() => {
});
@ -1231,6 +1234,8 @@ export default {
this.formData.preCheck = this.idQuery.preCheck;
this.actionEnable = true;
this.getCodeList();
this.findSubStorageMethod(1);
} else {
this.corpOrderIdDisabled = false;
if (JSON.stringify(this.$route.query) === '{}') {

Loading…
Cancel
Save