You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

774 lines
22 KiB

2 years ago
<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="padding: 6px 18px">
2 years ago
<!-- 查询模块 -->
<el-form :inline="true" :model="query">
<el-form-item label="备货状态:">
<el-input v-model="query.stockupStatus" placeholder="请输入备货状态"></el-input>
</el-form-item>
<el-form-item label="备货区:">
<el-input v-model="query.stockupArea" placeholder="请输入备货区"></el-input>
</el-form-item>
<el-form-item label="指派状态;1-未指派、2-已指派:">
<el-input
v-model="query.assignStatus"
placeholder="请输入指派状态;1-未指派、2-已指派"
></el-input>
2 years ago
</el-form-item>
<!-- 查询按钮 -->
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
</el-form-item>
</el-form>
</el-row>
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain
> </el-button
>
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift(row)"
>指派叉车司机</el-button
>
2 years ago
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-search" @click="onLoad">全部</el-button>
<el-button icon="el-icon-refresh" @click="getStockUp('2')">已备货</el-button>
<el-button icon="el-icon-search" @click="getStockUp('1')">待备货</el-button>
2 years ago
<!-- <el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>-->
<!-- <el-button icon="el-icon-search" @click="searchHide" circle></el-button>-->
2 years ago
</div>
</div>
</el-row>
<el-row>
<!-- 列表模块 -->
<tablecmt
:columnList="columnList"
:tableData="data"
:loading="loading"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<el-button type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope)"
>查看</el-button
>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)"
>编辑</el-button
>
2 years ago
</template>
</tablecmt>
2 years ago
</el-row>
<el-row>
<div class="avue-crud__pagination" style="width: 100%">
2 years ago
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
2 years ago
</el-pagination>
</div>
</el-row>
<el-dialog v-model="dialogFormCustomer" title="指派叉车">
<el-form :model="form">
<el-form-item label="叉车司机" :label-width="formLabelWidth">
<el-select v-model="form.forklift" clearable placeholder="请选择叉车司机">
<el-option
v-for="item in forkliftData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
2 years ago
</el-option>
</el-select>
</el-form-item>
<el-form-item label="装卸班组" :label-width="formLabelWidth">
<el-select v-model="form.loader" clearable placeholder="请选择装卸班组">
<el-option
v-for="item in loaderData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
2 years ago
</el-option>
</el-select>
</el-form-item>
<el-form-item label="备货区域" :label-width="formLabelWidth">
<el-select v-model="form.stockupArea" clearable placeholder="请选择备货区编号">
<el-option
v-for="item in goodsAreaIdData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
2 years ago
</el-option>
</el-select>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="dialogFormCustomer = false">取消</el-button>
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>-->
<el-button type="primary" @click="callFordelivery('3')"> 确定 </el-button>
</span>
2 years ago
</template>
</el-dialog>
<!-- 表单模块 -->
<el-dialog
:title="title"
v-model="box"
width="50%"
:before-close="beforeClose"
append-to-body
>
2 years ago
<el-form :disabled="view" ref="form" :model="form" label-width="80px">
<!-- 表单字段 -->
<el-form-item label="备货时间" prop="stockupDate">
<el-date-picker
v-model="form.stockupDate"
type="datetime"
value-format="YYYY-MM-DD HH:mm:ss"
placeholder="请选择备货时间"
></el-date-picker>
2 years ago
</el-form-item>
<el-form-item label="备货人" prop="stockupUser">
<el-input v-model="form.stockupUser" placeholder="请输入备货人" />
2 years ago
</el-form-item>
<el-form-item label="备货状态" prop="stockupStatus">
<el-input v-model="form.stockupStatus" placeholder="请输入备货状态" />
2 years ago
</el-form-item>
<el-form-item label="备货区" prop="stockupArea">
<el-input v-model="form.stockupArea" placeholder="请输入备货区" />
2 years ago
</el-form-item>
<el-form-item label="指派状态;1-未指派、2-已指派" prop="assignStatus">
<el-select
v-model="form.assignStatus"
clearable
placeholder="请选择指派状态;1-未指派、2-已指派"
>
2 years ago
<el-option
v-for="item in assignStatusData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
2 years ago
</el-option>
</el-select>
</el-form-item>
<el-form-item label="备货库位" prop="stockipAllocation">
<el-input v-model="form.stockipAllocation" placeholder="请输入备货库位" />
2 years ago
</el-form-item>
<el-form-item label="备货区编号" prop="goodsAreaId">
<el-select v-model="form.goodsAreaId" clearable placeholder="请选择备货区编号">
<el-option
v-for="item in goodsAreaIdData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
2 years ago
</el-option>
</el-select>
</el-form-item>
<el-form-item label="叉车司机" prop="forklift">
<el-select v-model="form.forklift" clearable placeholder="请选择叉车司机">
<el-option
v-for="item in forkliftData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
2 years ago
</el-option>
</el-select>
</el-form-item>
<el-form-item label="装卸班组" prop="loader">
<el-select v-model="form.loader" clearable placeholder="请选择装卸班组">
<el-option
v-for="item in loaderData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
2 years ago
</el-option>
</el-select>
</el-form-item>
<el-form-item label="确认完成备货时间" prop="fixTime">
<el-date-picker
v-model="form.fixTime"
type="datetime"
value-format="YYYY-MM-DD HH:mm:ss"
placeholder="请选择确认完成备货时间"
></el-date-picker>
2 years ago
</el-form-item>
<el-form-item label="指派时间" prop="assignTime">
<el-date-picker
v-model="form.assignTime"
type="datetime"
value-format="YYYY-MM-DD HH:mm:ss"
placeholder="请选择指派时间"
></el-date-picker>
2 years ago
</el-form-item>
</el-form>
<!-- 表单按钮 -->
<template #footer>
<span v-if="!view" class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit"
> </el-button
>
2 years ago
<el-button icon="el-icon-circle-close" @click="box = false"> </el-button>
</span>
</template>
</el-dialog>
</div>
</basic-container>
<edittablehead
@setcolum="setnewcolum"
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="columnList"
></edittablehead>
2 years ago
</template>
<script>
import {
getList,
getDetail,
add,
update,
remove,
getListUser,
addAssign,
} from '@/api/distribution/distributionStockup';
2 years ago
import { getPostList } from '@/api/system/post';
import { stockUp } from '@/api/basicdata/basicdataGoodsArea';
import { getListOwn, getUser } from '@/api/system/user';
import option from '@/option/distribution/distributionStockup';
import { mapGetters } from 'vuex';
2 years ago
import { getListTeam } from '@/api/basicdata/basicdataTeamGroup';
export default {
data() {
2 years ago
return {
columnList: [
{
prop: '',
label: '序号',
type: 0,
values: '',
width: 55,
checkarr: [],
fixed: true,
},
{
prop: 'stockupDate',
label: '备货时间',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: true,
sortable: true,
head: false,
},
{
prop: 'stockupUser',
label: '备货人',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'stockupStatus',
label: '备货状态',
type: 2,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'stockupArea',
label: '备货区',
type: 2,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'assignStatus',
label: '指派状态',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'stockipAllocation',
label: '备货库位',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'goodsAreaId',
label: '备货区编号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: true,
},
{
prop: 'forklift',
label: '叉车司机',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'loader',
label: '装卸班组',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'fixTime',
label: '确认完成备货时间',
type: 5,
values: '',
width: '220',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'assignTime',
label: '指派时间',
type: 5,
values: '',
width: '220',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: '',
label: '操作',
type: 6,
values: '',
width: '160',
checkarr: [],
fixed: 'right',
hide: true,
},
// 更多列的配置...
],
columnListedit: [],
drawerShow: false,
2 years ago
height: 0,
// 弹框标题
title: '',
// 是否展示弹框
box: false,
// 是否显示查询
search: true,
// 加载中
loading: true,
// 是否为查看模式
view: false,
dialogFormCustomer: false,
formLabelWidth: '120px',
// 查询信息
query: {},
// 分页信息
page: {
currentPage: 1,
pageSize: 10,
total: 40,
2 years ago
},
// 表单数据
form: {},
// 选择行
selectionList: [],
// 表单配置
option: option,
// 表单列表
data: [],
forkliftData: [],
loaderData: [],
goodsAreaIdData: [],
deptId: '',
};
2 years ago
},
mounted() {
2 years ago
this.init();
this.onLoad(this.page);
/**
* 初始化获取本地缓存的编辑隐藏的列表
* 固定搭配不能更改
*/
let newarr = this.$functions.getStorage(window.location.pathname);
if (newarr) {
this.columnList.map(item => {
item.head = false;
});
newarr.map(ite => {
this.columnList.map(item => {
if (ite == item.label) {
item.head = true;
}
});
});
}
2 years ago
},
computed: {
...mapGetters(['permission']),
ids() {
2 years ago
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(',');
},
2 years ago
},
methods: {
showdrawer(value) {
this.drawerShow = value;
},
/**
* 弹窗的勾选回调用于更改头部数组
* 固定搭配只需要更换 columnList
*/
setnewcolum(newarr, headarr) {
// console.log(newarr,'+++++++++++')
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname, headarr);
},
selectionsc(value) {
console.log(value);
},
delectsolt(scope) {
const { row } = scope;
console.log(row);
},
editsolt(scope) {
const { row } = scope;
console.log(row);
},
btnsc(index, row) {
console.log(index, row);
},
selectsc(index, row) {
console.log(index, row);
},
timesc(index, row) {
console.log(index, row);
},
inputsc(index, row) {
console.log(index, row);
},
2 years ago
//查询备货
getStockUp(row) {
console.log('row', row);
2 years ago
let params = {};
switch (row) {
case '1':
params.stockupStatus = '2';
break;
case '2':
params.stockupStatus = '3';
break;
2 years ago
}
getList(this.page.currentPage, this.page.pageSize, params).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
},
//查询叉车人员
async getFork() {
2 years ago
let ides = '';
let ide = {};
await getListUser().then(res => {
2 years ago
// console.log("res>>>",res.data.data);
ides = res.data.data.tenantId;
this.deptId = res.data.data.deptId;
});
await getPostList(ides).then(res => {
2 years ago
// console.log(">>>>",res.data.data);
res.data.data.forEach(i => {
if (i.postName == '叉车') {
2 years ago
ide = i;
}
});
});
2 years ago
// console.log("ied>>>>>",ide);
let params = {
2 years ago
postId: ide.id, //岗位
deptId: this.deptId, //部门
// roleId: '', //角色
};
getListOwn(Object.assign(params, this.query)).then(res => {
2 years ago
// console.log(".............",res.data.data);
let fo = [];
res.data.data.forEach(i => {
let a = {
2 years ago
dictKey: i.id,
dictValue: i.name,
2 years ago
};
fo.push(a);
});
this.forkliftData = fo;
});
await this.getStorageArea();
await this.getTeam();
2 years ago
},
//查询班组
async getTeam() {
let params = {
department: this.deptId,
};
getListTeam(
this.page.currentPage,
this.page.pageSize,
Object.assign(params, this.query)
).then(res => {
2 years ago
// console.log(">><><",res.data.data.records);
let fo = [];
res.data.data.records.forEach(i => {
let a = {
2 years ago
dictKey: i.id,
dictValue: i.name + '-' + i.groupName,
};
2 years ago
fo.push(a);
});
this.loaderData = fo;
});
2 years ago
},
//备货区
async getStorageArea() {
let params = {
department: this.deptId,
};
stockUp(params).then(res => {
2 years ago
// console.log("res>>>",res.data.data);
let fo = [];
res.data.data.forEach(i => {
2 years ago
let v = {
dictKey: i.id,
dictValue: i.name + '-' + i.headline,
};
fo.push(v);
});
2 years ago
this.goodsAreaIdData = fo;
});
2 years ago
},
handleForklift() {
if (this.selectionList.length === 0) {
this.$message.warning('请选择至少一条数据');
return;
}
2 years ago
this.dialogFormCustomer = true;
this.getFork();
this.getTeam();
2 years ago
},
//确定指派
callFordelivery() {
2 years ago
this.form.ids = this.ids;
addAssign(this.form).then(res => {
2 years ago
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
this.onLoad(this.page);
this.dialogFormCustomer = false;
});
2 years ago
},
init() {
2 years ago
this.height = this.setPx(document.body.clientHeight - 340);
},
searchHide() {
2 years ago
this.search = !this.search;
},
searchChange() {
2 years ago
this.onLoad(this.page);
},
searchReset() {
2 years ago
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit() {
2 years ago
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
});
2 years ago
}
},
handleAdd() {
this.title = '新增';
this.form = {};
this.box = true;
2 years ago
},
handleEdit(row) {
this.title = '编辑';
this.box = true;
2 years ago
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView(row) {
this.title = '查看';
2 years ago
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleDelete() {
2 years ago
if (this.selectionList.length === 0) {
this.$message.warning('请选择至少一条数据');
2 years ago
return;
}
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
2 years ago
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
});
},
rowDel(row) {
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
2 years ago
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
});
},
beforeClose(done) {
done();
2 years ago
this.form = {};
this.view = false;
},
selectionChange(list) {
2 years ago
this.selectionList = list;
},
selectionClear() {
2 years ago
this.selectionList = [];
// this.$refs.table.clearSelection();
2 years ago
},
currentChange(currentPage) {
2 years ago
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange(pageSize) {
2 years ago
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad(page, params = {}) {
2 years ago
this.loading = true;
this.query.typeService = 1;
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.data.forEach(async i => {
if (i.forklift != '-1') {
console.log('i==', i);
let a = await getUser(i.forklift);
i.forklift = a.data.data.name;
}
2 years ago
i.loader = i.groupName;
i.stockupArea = i.headline;
if (i.assignStatus == '2') {
i.assignStatus = '已指派';
} else {
i.assignStatus = '未指派';
}
if (i.stockupStatus == '2') {
i.stockupStatus = '待备货';
} else if (i.stockupStatus == '3') {
i.stockupStatus = '已备货';
} else {
i.stockupStatus = '未备货';
}
});
// this.selectionClear();
2 years ago
this.loading = false;
});
},
},
2 years ago
};
</script>