You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
320 lines
9.8 KiB
Vue
320 lines
9.8 KiB
Vue
2 years ago
|
<template>
|
||
|
<div>
|
||
|
<el-card class="el-card">
|
||
|
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
|
||
|
<el-row>
|
||
|
<el-form-item class="query-form-item" label="仓库:">
|
||
|
<el-select v-model="filterQuery.invCode" placeholder="请选择所属仓库" clearable="true"
|
||
|
@change="invChange"
|
||
|
style="width: 90%"
|
||
|
>
|
||
|
<el-option
|
||
|
v-for="item in invList"
|
||
|
: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" label="货位:">
|
||
|
<el-select v-model="filterQuery.invSpaceCode" placeholder="请选择货位" clearable="true"
|
||
|
@change="invSpaceChange"
|
||
|
>
|
||
|
<el-option
|
||
|
v-for="item in spaceList"
|
||
|
: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" label="产品名称:">
|
||
|
<el-input v-model="filterQuery.productName" placeholder="" clearable></el-input>
|
||
|
</el-form-item>
|
||
|
<el-form-item>
|
||
|
<el-button-group>
|
||
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
||
|
<el-button type="primary" @click.native="search" icon="el-icon-search">搜索</el-button>
|
||
|
<el-button type="primary" @click.native="addSet" icon="el-icon-plus">新增库存预警设置</el-button>
|
||
|
</el-button-group>
|
||
|
</el-form-item>
|
||
|
</el-row>
|
||
|
</el-form>
|
||
|
<el-table v-loading="loading" :data="list" style="width: 120%" border>
|
||
|
<el-table-column type="index" label="序号" width="50"></el-table-column>
|
||
|
<el-table-column label="产品名称" prop="productName" width="300" show-overflow-tooltip></el-table-column>
|
||
|
<el-table-column label="仓库名称" prop="invName" width="200"></el-table-column>
|
||
|
<el-table-column label="货位名称" prop="invSpaceName" width="200"></el-table-column>
|
||
|
<el-table-column label="低库存预警" prop="lowStock" width="120">
|
||
|
<template slot-scope="scope">
|
||
|
<el-tag>{{ enableMap[scope.row.lowStock] }}</el-tag>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="低库存预警数量" prop="lowStockNum" width="150"></el-table-column>
|
||
|
<el-table-column label="负库存预警" prop="lackStock" width="120">
|
||
|
<template slot-scope="scope">
|
||
|
<el-tag>{{ enableMap[scope.row.lackStock] }}</el-tag>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="积压预警" prop="overStock" width="120">
|
||
|
<template slot-scope="scope">
|
||
|
<el-tag>{{ enableMap[scope.row.overStock] }}</el-tag>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="积压预警数量" prop="overStockNum" width="150"></el-table-column>
|
||
|
<el-table-column label="过期提醒" prop="invSpaceName" width="120">
|
||
|
<template slot-scope="scope">
|
||
|
<el-tag>{{ enableMap[scope.row.expireDate] }}</el-tag>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="近效期提醒" prop="recentDate" width="120">
|
||
|
<template slot-scope="scope">
|
||
|
<el-tag>{{ enableMap[scope.row.recentDate] }}</el-tag>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="近效期预警天数" prop="recentDateDay" width="150"></el-table-column>
|
||
|
<el-table-column label="备注" prop="remark" show-overflow-tooltip></el-table-column>
|
||
|
<el-table-column label="操作" width="120">
|
||
|
<template slot-scope="scope">
|
||
|
<el-button
|
||
|
type="text"
|
||
|
size="small"
|
||
|
@click.native="handleForm(scope.$index, scope.row)"
|
||
|
>编辑
|
||
|
</el-button>
|
||
|
<el-button
|
||
|
type="text"
|
||
|
size="small"
|
||
|
@click.native="deleteSet(scope.row.id)"
|
||
|
>删除
|
||
|
</el-button>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
</el-table>
|
||
|
<pagination
|
||
|
v-show="total>0"
|
||
|
:total="total"
|
||
|
:page.sync="filterQuery.page"
|
||
|
:limit.sync="filterQuery.limit"
|
||
|
@pagination="getList"
|
||
|
/>
|
||
|
|
||
|
<!--表单-->
|
||
|
<el-dialog
|
||
|
:title="formMap[formName]"
|
||
|
:visible.sync="formVisible"
|
||
|
:close-on-click-modal="false"
|
||
|
:close-on-press-escape="false"
|
||
|
:before-close="hideForm"
|
||
|
width="45%"
|
||
|
top="5vh"
|
||
|
>
|
||
|
<el-form :model="formData" ref="dataForm">
|
||
|
</el-form>
|
||
|
<div slot="footer" class="dialog-footer">
|
||
|
<el-button @click.native="hideForm">取消</el-button>
|
||
|
<el-button type="primary" @click.native="formSubmit()" :loading="formLoading"
|
||
|
>提交
|
||
|
</el-button>
|
||
|
</div>
|
||
|
</el-dialog>
|
||
|
</el-card>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import {
|
||
|
getInvRemindSetList,
|
||
|
deleteInvRemindSet,
|
||
|
saveInvRemindSet
|
||
|
} from "@/api/system/invRemindSet";
|
||
|
import {getInvListByUser} from "@/api/system/invWarehouse";
|
||
|
import {getInvSpaceList} from "@/api/inventory/invSpace";
|
||
|
import {filterProductNames} from "@/api/inventory/invPorduct";
|
||
|
|
||
|
|
||
|
const formJson = {
|
||
|
id: "",
|
||
|
name: "",
|
||
|
key: "",
|
||
|
value: "",
|
||
|
type: null,
|
||
|
remark: "",
|
||
|
};
|
||
|
export default {
|
||
|
name: "invRemindSet",
|
||
|
data() {
|
||
|
return {
|
||
|
filterQuery: {
|
||
|
cpmctymc: null,
|
||
|
relId: null,
|
||
|
invCode: this.$store.getters.locInvCode,
|
||
|
invSpaceCode: null,
|
||
|
page: 1,
|
||
|
limit: 20,
|
||
|
},
|
||
|
list: [],
|
||
|
total: 0,
|
||
|
loading: true,
|
||
|
index: null,
|
||
|
formName: null,
|
||
|
formMap: {
|
||
|
add: "新增提醒设置",
|
||
|
edit: "提醒设置-编辑",
|
||
|
},
|
||
|
formLoading: false,
|
||
|
formVisible: false,
|
||
|
formData: null,
|
||
|
enableMap: {
|
||
|
true: "开启",
|
||
|
false: "关闭"
|
||
|
},
|
||
|
deleteLoading: false,
|
||
|
invList: [],
|
||
|
spaceList: [],
|
||
|
productList: []
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
onReset() {
|
||
|
this.$router.push({
|
||
|
path: "",
|
||
|
});
|
||
|
this.filterQuery = {
|
||
|
relId: null,
|
||
|
invCode: this.$store.getters.locInvCode,
|
||
|
invSpaceCode: null,
|
||
|
page: 1,
|
||
|
limit: 20,
|
||
|
};
|
||
|
this.getList();
|
||
|
},
|
||
|
search() {
|
||
|
this.filterQuery.page = 1;
|
||
|
this.getList();
|
||
|
},
|
||
|
getList() {
|
||
|
this.loading = true;
|
||
|
getInvRemindSetList(this.filterQuery)
|
||
|
.then((response) => {
|
||
|
this.loading = false;
|
||
|
if (response.code === 20000) {
|
||
|
this.list = response.data.list || [];
|
||
|
this.total = response.data.total || 0;
|
||
|
} else {
|
||
|
this.list = [];
|
||
|
this.total = 0;
|
||
|
}
|
||
|
})
|
||
|
.catch(() => {
|
||
|
this.loading = false;
|
||
|
this.list = [];
|
||
|
this.total = 0;
|
||
|
});
|
||
|
},
|
||
|
// 刷新表单
|
||
|
resetForm() {
|
||
|
if (this.$refs["dataForm"]) {
|
||
|
// 清空验证信息表单
|
||
|
this.$refs["dataForm"].clearValidate();
|
||
|
// 刷新表单
|
||
|
this.$refs["dataForm"].resetFields();
|
||
|
this.getList();
|
||
|
}
|
||
|
},
|
||
|
addSet() {
|
||
|
this.formData = {};
|
||
|
this.formName = "add";
|
||
|
this.formVisible = true;
|
||
|
},
|
||
|
// 隐藏表单
|
||
|
hideForm() {
|
||
|
// 更改值
|
||
|
this.formVisible = !this.formVisible;
|
||
|
return true;
|
||
|
},
|
||
|
// 显示表单
|
||
|
handleForm(index, row) {
|
||
|
this.formData = row;
|
||
|
this.formName = "edit";
|
||
|
this.formVisible = true;
|
||
|
},
|
||
|
formSubmit() {
|
||
|
this.formLoading = true;
|
||
|
let data = Object.assign({}, this.formData);
|
||
|
data.paramValue = data.paramValue.trim();
|
||
|
saveInvRemindSet(data, this.formName)
|
||
|
.then((response) => {
|
||
|
this.formLoading = false;
|
||
|
if (response.code != 20000) {
|
||
|
this.$message.error(response.message);
|
||
|
return false;
|
||
|
}
|
||
|
this.$message.success("操作成功");
|
||
|
this.formVisible = false;
|
||
|
this.resetForm();
|
||
|
})
|
||
|
.catch(() => {
|
||
|
this.formLoading = false;
|
||
|
});
|
||
|
},
|
||
|
deleteSet(id) {
|
||
|
this.$confirm('是否确认删除此库存预警设置, 是否继续?', '提示', {
|
||
|
confirmButtonText: '确定',
|
||
|
cancelButtonText: '取消',
|
||
|
type: 'warning'
|
||
|
}).then(() => {
|
||
|
let params = {id: id};
|
||
|
deleteInvRemindSet(params).then((res) => {
|
||
|
if (res.code === 20000) {
|
||
|
this.$message.success("删除成功");
|
||
|
this.getList();
|
||
|
}
|
||
|
}).catch((error) => {
|
||
|
this.$message.error(error.message);
|
||
|
})
|
||
|
}).catch(() => {
|
||
|
});
|
||
|
},
|
||
|
invChange() {
|
||
|
this.spaceList = [];
|
||
|
this.filterQuery.invSpaceCode = null;
|
||
|
this.getSpaceList();
|
||
|
this.getList();
|
||
|
},
|
||
|
getInvList() {
|
||
|
getInvListByUser()
|
||
|
.then((response) => {
|
||
|
this.invList = response.data || [];
|
||
|
this.getSpaceList();
|
||
|
this.getList();
|
||
|
})
|
||
|
.catch(() => {
|
||
|
});
|
||
|
},
|
||
|
getSpaceList() {
|
||
|
let params = {invWarehouseCode: this.filterQuery.invCode, status: 1};
|
||
|
getInvSpaceList(params).then((res) => {
|
||
|
this.spaceList = res.data.list || [];
|
||
|
})
|
||
|
},
|
||
|
invSpaceChange() {
|
||
|
let params = {
|
||
|
cpmctymc: this.filterQuery.cpmctymc,
|
||
|
invCode: this.filterQuery.invCode,
|
||
|
invSpaceCode: this.filterQuery.invSpaceCode
|
||
|
};
|
||
|
filterProductNames(params).then((res) => {
|
||
|
this.productList = res.data.list || [];
|
||
|
})
|
||
|
},
|
||
|
},
|
||
|
created() {
|
||
|
this.getInvList();
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|