|
|
|
@ -6,32 +6,6 @@
|
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
|
<el-input v-model="filterQuery.key" placeholder="请输入查询内容" clearable></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
|
<el-select v-model="filterQuery.invStorageCode" placeholder="请选择当前仓库" clearable="true"
|
|
|
|
|
@change="invChange"
|
|
|
|
|
size="mini">
|
|
|
|
|
<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-form-item>
|
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
|
<el-select v-model="filterQuery.invWarehouseCode" placeholder="请选择当前分库" clearable="true"
|
|
|
|
|
:disabled="invWarehouseDisabled"
|
|
|
|
|
size="mini">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in subInvList"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code">
|
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button
|
|
|
|
@ -52,7 +26,7 @@
|
|
|
|
|
<el-table-column label="所属仓库" prop="invStorageName" width="200"
|
|
|
|
|
show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="所属分库" prop="invSubStorageName"
|
|
|
|
|
show-overflow-tooltip width="120"></el-table-column>
|
|
|
|
|
show-overflow-tooltip width="150"></el-table-column>
|
|
|
|
|
<el-table-column label="状态" prop="status"
|
|
|
|
|
show-overflow-tooltip width="150">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
@ -61,6 +35,7 @@
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="备注" prop="remark" width="150"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="150" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
@ -89,9 +64,10 @@
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="formMap[formName]"
|
|
|
|
|
:visible.sync="modifySpaceVisible"
|
|
|
|
|
width="70%"
|
|
|
|
|
width="50%"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
append-to-body
|
|
|
|
|
v-if="modifySpaceVisible"
|
|
|
|
|
>
|
|
|
|
|
<el-form :model="formData" :rules="rules" ref="formData">
|
|
|
|
@ -117,44 +93,6 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="2">
|
|
|
|
|
<span>所属仓库:</span>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="10">
|
|
|
|
|
<el-form-item prop="invStorageCode">
|
|
|
|
|
<el-select v-model="formData.invStorageCode"
|
|
|
|
|
placeholder="请选择"
|
|
|
|
|
@change="changeStorage"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in storageList"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="2">
|
|
|
|
|
<span>所属分库:</span>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="10">
|
|
|
|
|
<el-form-item prop="invWarehouseCode">
|
|
|
|
|
<el-select v-model="formData.invWarehouseCode" :disabled="modifyWarehouseDisable" placeholder="请选择">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in modifySubInvList"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="2">
|
|
|
|
|
<span>备注:</span>
|
|
|
|
@ -196,11 +134,16 @@
|
|
|
|
|
import store from "../../store";
|
|
|
|
|
import {filterUplLocInv} from "@/api/basic/invWarehouse";
|
|
|
|
|
import {filterSubByInv} from "@/api/basic/invSubWarehouse";
|
|
|
|
|
import {userInfo} from "@/api/auth/login";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import {getInvSpaceList, saveSpace, deleteSpace} from "@/api/inventory/invSpace";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "invInfo",
|
|
|
|
|
props: {
|
|
|
|
|
invInfo: {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
filterQuery: {
|
|
|
|
@ -235,8 +178,8 @@ export default {
|
|
|
|
|
id: null,
|
|
|
|
|
code: null,
|
|
|
|
|
name: null,
|
|
|
|
|
invStorageCode: null,
|
|
|
|
|
invWarehouseCode: null,
|
|
|
|
|
invStorageCode: this.invInfo.invStorageCode,
|
|
|
|
|
invWarehouseCode: this.invInfo.invWarehouseCode,
|
|
|
|
|
status: 1,
|
|
|
|
|
remark: null
|
|
|
|
|
},
|
|
|
|
@ -247,12 +190,6 @@ export default {
|
|
|
|
|
name: [
|
|
|
|
|
{required: true, message: "请输入货位名称", trigger: "blur"}
|
|
|
|
|
],
|
|
|
|
|
invStorageCode: [
|
|
|
|
|
{required: true, message: "请选择所属仓库", trigger: "blur"}
|
|
|
|
|
],
|
|
|
|
|
invWarehouseCode: [
|
|
|
|
|
{required: true, message: "请选择所属分库", trigger: "blur"}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
modifySubInvList: []
|
|
|
|
|
};
|
|
|
|
@ -264,8 +201,8 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
this.filterQuery = {
|
|
|
|
|
customerId: null,
|
|
|
|
|
invWarehouseCode: null,
|
|
|
|
|
invStorageCode: null,
|
|
|
|
|
invWarehouseCode: this.invInfo.invWarehouseCode,
|
|
|
|
|
invStorageCode: this.invInfo.invStorageCode,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20,
|
|
|
|
|
};
|
|
|
|
@ -363,8 +300,8 @@ export default {
|
|
|
|
|
id: null,
|
|
|
|
|
code: null,
|
|
|
|
|
name: null,
|
|
|
|
|
invStorageCode: null,
|
|
|
|
|
invWarehouseCode: null,
|
|
|
|
|
invStorageCode: this.invInfo.invStorageCode,
|
|
|
|
|
invWarehouseCode: this.invInfo.invWarehouseCode,
|
|
|
|
|
status: 1,
|
|
|
|
|
remark: null
|
|
|
|
|
}
|
|
|
|
@ -384,44 +321,13 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
changeStorage() {
|
|
|
|
|
this.formData.invWarehouseCode = null;
|
|
|
|
|
this.modifyWarehouseDisable = false;
|
|
|
|
|
let query = {
|
|
|
|
|
pcode: this.formData.invStorageCode
|
|
|
|
|
};
|
|
|
|
|
filterSubByInv(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.modifySubInvList = response.data || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
document.body.ondrop = function (event) {
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getStorage();
|
|
|
|
|
let query = this.$route.query;
|
|
|
|
|
this.filterQuery = Object.assign(this.filterQuery, query);
|
|
|
|
|
this.filterQuery.limit = parseInt(this.filterQuery.limit);
|
|
|
|
|
// 加载表格数据
|
|
|
|
|
//获取用户默认仓库信息
|
|
|
|
|
userInfo().then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
if (!isBlank(res.data.locInvCode)) {
|
|
|
|
|
this.filterQuery.invStorageCode = res.data.locInvCode;
|
|
|
|
|
this.invChange();
|
|
|
|
|
this.filterQuery.invWarehouseCode = res.data.locSubInvCode;
|
|
|
|
|
}
|
|
|
|
|
this.getList();
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
});
|
|
|
|
|
//加载表格数据
|
|
|
|
|
this.filterQuery.invStorageCode = this.invInfo.invStorageCode;
|
|
|
|
|
this.filterQuery.invWarehouseCode = this.invInfo.invWarehouseCode;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|