1.修改库存查询分库选择,主库和分库实现联动,当主库未选择时,禁用分库选择按钮

fencang
x_z 3 years ago
parent 57b89e9565
commit 5f87de6953

@ -63,6 +63,7 @@
</el-form-item> </el-form-item>
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-select v-model="filterQuery.invWarehouseCode" placeholder="请选择当前分库" clearable="true" <el-select v-model="filterQuery.invWarehouseCode" placeholder="请选择当前分库" clearable="true"
:disabled="invWarehouseDisabled"
size="mini"> size="mini">
<el-option <el-option
v-for="item in subInvList" v-for="item in subInvList"
@ -159,15 +160,13 @@
<script> <script>
import { import {
filterProducts, filterProducts,
filterDetailProducts,
deleteProducts, deleteProducts,
} from "../../api/inventory/InvProducts"; } from "../../api/inventory/InvProducts";
import draggable from "vuedraggable"; import draggable from "vuedraggable";
import codeDetail from "./InvProductsDetail"; import codeDetail from "./InvProductsDetail";
import store from "../../store"; import store from "../../store";
import {getBussinessType} from "../../api/basic/bussinessType"; import {getBussinessType} from "../../api/basic/bussinessType";
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain"; import {filterUplLocInv} from "@/api/basic/invWarehouse";
import {filterAllByUser, filterUplLocInv} from "@/api/basic/invWarehouse";
import {filterCustomers} from "@/api/auth/customer"; import {filterCustomers} from "@/api/auth/customer";
import {filterSubByInv} from "@/api/basic/invSubWarehouse"; import {filterSubByInv} from "@/api/basic/invSubWarehouse";
@ -202,6 +201,7 @@ export default {
loading: true, loading: true,
index: null, index: null,
dialogTableVisible: false, dialogTableVisible: false,
invWarehouseDisabled: true,
formLoading: false, formLoading: false,
dialogVisible: false, dialogVisible: false,
deleteLoading: false, deleteLoading: false,
@ -228,9 +228,12 @@ export default {
customerId: null, customerId: null,
unitFk: null, unitFk: null,
supId: null, supId: null,
invWarehouseCode: null,
invStorageCode: null,
page: 1, page: 1,
limit: 20, limit: 20,
}; };
this.invChange();
this.getList(); this.getList();
}, },
onSubmit() { onSubmit() {
@ -261,7 +264,6 @@ export default {
this.filterQuery.customerId = store.getters.customerId; this.filterQuery.customerId = store.getters.customerId;
filterProducts(this.filterQuery) filterProducts(this.filterQuery)
.then((response) => { .then((response) => {
console.log(response)
this.showSup = response.data.showSup; this.showSup = response.data.showSup;
this.loading = false; this.loading = false;
this.list = response.data.list || []; this.list = response.data.list || [];
@ -309,7 +311,6 @@ export default {
}); });
}, },
findMethod(query) { findMethod(query) {
console.log(query);
this.fromOptions = []; this.fromOptions = [];
let cQuery = { let cQuery = {
key: query, key: query,
@ -344,18 +345,22 @@ export default {
invChange() { invChange() {
// this.$set(this.filterQuery, "entrustUser", "");
this.filterQuery.invWarehouseCode = ""; this.filterQuery.invWarehouseCode = "";
this.subInvList = []; this.subInvList = [];
let query = { if (this.filterQuery.invStorageCode != null) {
pcode: this.filterQuery.invStorageCode this.invWarehouseDisabled = false;
}; let query = {
filterSubByInv(query) pcode: this.filterQuery.invStorageCode
.then((response) => { };
this.subInvList = response.data || []; filterSubByInv(query)
}) .then((response) => {
.catch(() => { this.subInvList = response.data || [];
}); })
.catch(() => {
});
} else {
this.invWarehouseDisabled = true;
}
}, },
intentDetail(row) { intentDetail(row) {

@ -90,7 +90,6 @@
<script> <script>
import { import {
filterProducts, filterProducts,
filterDetailProducts,
deleteProducts, deleteProducts,
} from "../../api/inventory/InvProducts"; } from "../../api/inventory/InvProducts";
import draggable from "vuedraggable"; import draggable from "vuedraggable";
@ -183,7 +182,6 @@ export default {
this.filterQuery.customerId = store.getters.customerId; this.filterQuery.customerId = store.getters.customerId;
filterProducts(this.filterQuery) filterProducts(this.filterQuery)
.then((response) => { .then((response) => {
console.log(response)
this.showSup = response.data.showSup; this.showSup = response.data.showSup;
this.loading = false; this.loading = false;
this.list = response.data.list || []; this.list = response.data.list || [];
@ -231,7 +229,6 @@ export default {
}); });
}, },
findMethod(query) { findMethod(query) {
console.log(query);
this.fromOptions = []; this.fromOptions = [];
let cQuery = { let cQuery = {
key: query, key: query,

Loading…
Cancel
Save