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.
udiwms-vue-frame/src/views/system/dept/invWarehouse.vue

954 lines
29 KiB
Vue

<template>
<div>
<el-card>
<el-form :inline="true" :model="query" class="query-form" size="mini">
<el-form-item class="query-form-item" label="仓库名称:">
<el-input
v-model="query.name"
clearable
placeholder="仓库名称"
></el-input>
</el-form-item>
<el-form-item label="仓库类型" prop="advanceType" class="query-form-item">
<el-select v-model="subDataType.advanceType" placeholder="请选择仓库类型" style="width: 80%">
<el-option label="入账库" :value="1"/>
<el-option label="预验收库" :value="2"/>
<el-option label="寄售库" :value="3"/>
</el-select>
</el-form-item>
<el-form-item>
<el-button-group style="margin-left: 10px;display:flex;">
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit">查询</el-button>
<el-button type="primary" icon="el-icon-plus" @click="handleSubForm( null, 'add')">新增</el-button>
</el-button-group>
</el-form-item>
</el-form>
<el-table
:data="list"
style="width: 100%"
border
highlight-current-row
@current-change="handSubInvCurrentChange"
row-key="id"
:default-expand-all="isExpandAll"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
<el-table-column label="序号" type="index" ref="dataForm"></el-table-column>
<el-table-column
prop="code"
width="140"
label="仓库编码"
>
</el-table-column>
<el-table-column
width="160"
prop="name"
label="仓库名称"
>
</el-table-column>
<el-table-column
prop="parentName"
width="180"
label="所属部门"
>
</el-table-column>
<el-table-column width="160"
prop="parentInvName"
label="上级仓库"
>
</el-table-column>
<el-table-column
width="140"
prop="advanceType"
label="仓库类型"
>
<template slot-scope="scope">
<span>{{ advanceTypeTypeMap[scope.row.advanceType] }}</span>
</template>
</el-table-column>
<el-table-column label="允许供应商使用" prop="spUse" width="140">
<template slot-scope="scope">
<el-tag :type="scope.row.spUse | spUerFilterType">{{
scope.row.spUse | spUerFilterName
}}
</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" width="220">
<template slot-scope="scope">
<el-button
type="text"
:disabled="!configParms.basicInv || scope.row.advanceType =='2' || scope.row.advanceType =='3'"
@click.native.stop="handleSubForm( scope.row, 'add')"
>新增
</el-button
>
<el-button
type="text"
:disabled="!configParms.basicInv "
@click.native.stop="handleSubForm( scope.row, 'edit')"
>编辑
</el-button
>
<!-- <el-button-->
<!-- type="text"-->
<!-- :disabled="!configParms.basicInv"-->
<!-- @click.native.stop="popInvRelUser( scope.row)"-->
<!-- >用户管理-->
<!-- </el-button-->
<!-- >-->
<el-button
type="text"
:disabled="!configParms.basicInv"
@click.native.stop="popInvRelBustype(scope.row)"
>仓库可用单据
</el-button
>
<el-button
type="text"
:disabled="!configParms.basicInv || scope.row.advanceType =='2' || scope.row.advanceType =='3' "
@click.native.stop="handleDelInv(scope.row)"
>删除
</el-button
>
</template>
</el-table-column>
</el-table>
<!--<pagination-->
<!-- v-show="total>0"-->
<!-- :total="total"-->
<!-- :page.sync="query.page"-->
<!-- :limit.sync="query.limit"-->
<!-- @pagination="getList"-->
<!--/>-->
<!--仓库编辑对话框-->
<el-dialog
:title="formMap[formName]"
:close-on-click-modal="false"
:close-on-press-escape="false"
:visible.sync="subFormVisible"
:before-close="hideForm"
width="60%"
top="5vh"
>
<el-form :model="subData" ref="dataForm" :rules="formRules" label-width="130px">
<el-row :gutter="20" class="el-row">
<el-col :span="12" class="el-col">
<el-form-item label="所属部门" prop="parentId">
<el-select v-model="subData.parentId" placeholder="顶级" style="width: 80%">
<el-option
v-for="item in fromDeptOptions"
:key="item.code"
:label="item.name"
:value="item.code"
>
<span style="float: left"
><span v-html="item.html"></span>{{ item.name }}</span
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="12" class="el-col">
<el-form-item label="上级仓库" prop="parentCode">
<treeselect v-model="subData.parentCode" :options="invOptions" :normalizer="normalizer"
:disabled="isShow"
style="width: 80%"
placeholder="选择上级仓库">
</treeselect>
</el-form-item>
</el-col>
<el-col :span="12" class="el-col">
<el-form-item label="仓库编码" prop="code" class="query-form-item">
<el-input
disabled
v-model="subData.code" style="width: 80%"
auto-complete="off"
></el-input>
</el-form-item>
</el-col>
<el-col :span="12" class="el-col">
<el-form-item label="仓库名称" prop="name" class="query-form-item">
<el-input
v-model="subData.name" style="width: 80%"
placeholder="请输入仓库名称"
auto-complete="off"
></el-input>
</el-form-item>
</el-col>
<el-col :span="12" class="el-col">
<el-form-item label="仓库类型" prop="advanceType">
<el-select v-model="subData.advanceType" :disabled="invWouse != null" placeholder="请选择仓库类型"
style="width: 80%">
<el-option label="入账库" value="1"/>
<el-option label="预验收库" value="2"/>
<el-option label="寄售库" value="3"/>
</el-select>
</el-form-item>
<!--<el-form-item label="寄售仓库" prop="advanceType" class="query-form-item">-->
<!-- <el-radio-group :disabled="isAdvanceTypeShow" v-model="subData.advanceType">-->
<!-- <el-radio :label="false">非寄售</el-radio>-->
<!-- <el-radio :label="true">寄售</el-radio>-->
<!-- </el-radio-group>-->
<!--</el-form-item>-->
</el-col>
<el-col :span="12" class="el-col">
<el-form-item label="是否能被供应商使用" prop="spUse" class="query-form-item">
<el-radio-group v-model="subData.spUse">
<el-radio :label="true">是</el-radio>
<el-radio :label="false">否</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="12" class="el-col">
<el-form-item label="是否领用仓库" prop="lyInvType" class="query-form-item">
<el-radio-group v-model="subData.lyInvType">
<el-radio :label="true">是</el-radio>
<el-radio :label="false">否</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col class="el-col" :span="24">
<el-form-item label="备注" prop="remark" class="query-form-item">
<el-input
v-model="subData.remark"
type="textarea"
style="width: 90%"
auto-complete="off"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-table :data="sysSubList" style="width: 100%; margin-bottom: 30px;" border v-show="this.formName=='edit'">
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="外部系统名称"
prop="sysName"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="外部仓库编码"
prop="thirdId"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="外部仓库名称"
prop="thirdName"
show-overflow-tooltip
></el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<el-button
type="text"
:disabled="!configParms.basicInv"
@click="intentSubSelect(scope.row)"
>关联
</el-button
>
<el-button type="text" @click.native.stop="unbindSubThrWarehouse(scope.row)"
:disabled="scope.row.thirdId=='' ||scope.row.thirdId==null ||!configParms.basicInv"
>解绑
</el-button>
</template>
</el-table-column>
</el-table>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button
type="primary"
@click.native="forInvSubmit()"
>提交
</el-button
>
<el-button @click.native="hideForm">取消</el-button>
</div>
</el-dialog>
<!-- 仓库关联第三方分库对话框-->
<el-dialog title="仓库信息-关联第三方仓库" :visible.sync="thrSubWareHouseVisible">
<el-form :inline="true" :model="thirdSubQuery" class="query-form" size="mini">
<el-form-item class="query-form-item">
<el-input
v-model="thirdSubQuery.name"
clearable
placeholder="仓库名称"
style="width: 400px"
></el-input>
</el-form-item>
<el-form-item>
<el-button-group>
<el-button type="primary" icon="search" @click="intentSubSelect">查询</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onResetintent">重置</el-button>
</el-button-group>
</el-form-item>
</el-form>
<el-table
:data="thrSubWarehouseData"
style="width: 100%;margin-top: 10px;"
row-key="id"
border
highlight-current-row
@current-change="changeSubThrWarehouse"
>
<el-table-column
type="index"
label="序号"
>
</el-table-column>
<el-table-column
prop="code"
label="仓库编码"
>
</el-table-column>
<el-table-column
prop="name"
label="仓库名称"
>
</el-table-column>
</el-table>
<pagination
v-show="subTotal>0"
:total="subTotal"
:page.sync="thirdSubQuery.page"
:limit.sync="thirdSubQuery.limit"
@pagination="intentSubSelect"
/>
<div slot="footer" class="dialog-footer">
<el-button @click.native="hideThrWarehouseTable()">取消</el-button>
<el-button
type="primary"
@click.native="bindSubThrWarehouse()"
>提交
</el-button>
</div>
</el-dialog>
<!-- 仓库关联用户对话框-->
<el-dialog
title="仓库-用户管理"
:visible.sync="relUserVisible"
width="60%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="relUserVisible"
>
<inv-rel-users :inputQuery="currentRow"
:configParms="configParms"
:closeDialog="cancelRelUser"
></inv-rel-users>
</el-dialog>
<!-- 仓库关联单据类型对话框-->
<el-dialog
title="仓库-单据类型"
:visible.sync="relBusTypeVisible"
width="45%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="relBusTypeVisible"
>
<inv-rel-bus-type :inputQuery="currentRow"
:configParms="configParms"
:closeDialog="cancelRelBustype"
></inv-rel-bus-type>
</el-dialog>
</el-card>
<el-tabs type="border-card" style="margin: 15px">
<el-tab-pane>
<span slot="label">{{ currentRow.name }}-用户列表</span>
<inv-rel-users :inputQuery="currentRow"
:configParms="configParms"
></inv-rel-users>
</el-tab-pane>
<!-- <el-tab-pane>-->
<!-- <span slot="label">{{ currentRow.name }}-单据类型</span>-->
<!-- </el-tab-pane>-->
<el-tab-pane>
<span slot="label">{{ currentRow.name }}-货位信息</span>
<invSpaceManage :invInfo="currentInvInfo"></invSpaceManage>
</el-tab-pane>
</el-tabs>
</div>
</template>
<script>
import {
filterSubAll, saveSubWarehouse, deleteSubWarehouse,
getSubThrsysDetail, bindThrSubWarehouse, unbindSubThrWarehouse,
} from "@/api/system/invSubWarehouse";
import {getJoinBussinessType} from "@/api/basic/bussinessType";
import {findConfig} from "@/api/sync/spsSyncStatus";
import {selectSysParamByKey} from "@/api/system/param/systemParamConfig";
import invSpaceManage from "@/views/inventory/InvSpaceManage";
import {
filterList,
filterThridSubByInv,
} from "@/api/system/invWarehouse";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
import Treeselect from "@riophae/vue-treeselect";
import InvRelBusType from "@/views/system/dept/invRelBusType";
import InvRelUsers from "@/views/system/dept/invRelUsers";
import {isBlank} from "@/utils/strUtil";
export default {
data() {
return {
//---------------仓库相关-------------------
query: {
name: null,
code: null,
status: "1",
// page: 1,
// limit: 10,
},
isAdvanceTypeShow: false,
isShow: false,
loading: true,
list: [],
isExpandAll: true,
total: 0,
advanceTypeTypeMap: {
1: "入账库",
3: "寄售库",
2: "预验收库",
},
formMap: {
add: "仓库信息-新增",
edit: "仓库信息-编辑"
},
invWouse: {},
formName: null,
configParms: {},
currentCode: null,
currentRow: {name: "仓库"},
mutiInvMode: true,
subFormVisible: false,
formRules: {
parentId: [
{required: true, message: "请选择所属部门", trigger: "blur"}
],
name: [
{required: true, message: "请输入仓库名称", trigger: "blur"}
],
advanceType: [
{required: true, message: "请选择是否寄售", trigger: "blur"}
]
},
subData: {},
subDataType: {},
fromDeptOptions: [],
invOptions: [],
thirdSubQuery: {
parentId: null,
name: null,
page: 1,
limit: 10,
thirdSysFk: "thirdId",
},
thrSubWareHouseVisible: false,
thrSubWarehouseData: [],
checkSubThrWarehouseRow: null,
subTotal: 0,
relBusTypeVisible: false,
relUserVisible: false,
//管理货位
currentInvInfo: {
invStorageCode: null,
invWarehouseCode: null,
invName: null
},
sysList: [],
sysSubList: [],
advanceTypese: [],
};
},
methods: {
//----------------仓库相关-----------------
onReset() { //重置
this.$router.push({
path: "",
});
this.query = {
name: "",
status: "",
};
this.subDataType.advanceType = null;
this.getList();
//置空用户列表和货位信息列表的参数
this.currentRow = {name: "仓库"};
this.currentInvInfo = {
invStorageCode: null,
invWarehouseCode: null,
invName: null
};
},
onResetintent() {
this.$router.push({
path: "",
});
this.thirdSubQuery = {
thirdSysFk: this.thirdSubQuery.thirdSysFk,
page: 1,
limit: 10
}
filterThridSubByInv(this.thirdSubQuery).then((res) => {
if (res.code == 20000) {
this.thrSubWarehouseData = res.data.list;
this.subTotal = res.data.total || 0;
} else {
this.$message.error(res.message);
}
}).catch((error) => {
this.thrWarehouseData = [];
this.subTotal = 0;
this.$message.error("第三方分库库数据加载失败");
});
},
onSubmit() { //提交查询
this.query.advanceType = this.subDataType.advanceType;
this.getList();
},
getList() { //获取仓库信息
this.loading = true;
this.list = [];
filterSubAll(this.query)
.then((response) => {
this.loading = false;
let invlist = response.data || [];
this.list = this.handleTree(invlist, "code", "parentCode");
console.log(this.list);
})
.catch(() => {
this.loading = false;
this.total = 0;
this.list = [];
});
},
//顶部新增按钮
handleSubForm(data, formName) { //新增,编辑
if (data != null) {
this.invWouse = data;
}
this.formName = formName;
if (formName === "edit") {
this.subData = JSON.parse(JSON.stringify(data));
this.subData.advanceType = this.subData.advanceType.toString();
if (this.subData.parentCode != null && this.subData.parentCode != "") {
this.isAdvanceTypeShow = true;
this.isShow = false;
} else {
this.isAdvanceTypeShow = false;
this.isShow = true
this.subData.parentCode = null;
}
} else if (formName === "add") {
this.isShow = true
if (data == null) {
this.isAdvanceTypeShow = false;
this.subData = {advanceType: '1', spUse: false, parentCode: null};
} else {
this.isAdvanceTypeShow = true;
this.subData = {advanceType: data.advanceType.toString(), spUse: false, parentCode: data.code};
}
}
this.subFormVisible = true;
this.getSubThrsysDetailData();
if (this.subData.parentCode != null && this.subData.parentCode != "") {
filterSubAll(this.query)
.then((response) => {
let invList = response.data || [];
this.invOptions = this.handleTree(invList, "code", "parentCode");
})
.catch(() => {
});
}
filterSubAll(this.query)
.then((response) => {
let invList = response.data || [];
//上级仓库中去除当前仓库节点
if (invList.length > 0) {
for (let i = 0; i < invList.length; i++) {
if (invList[i].code === this.subData.code) {
invList.splice(i, 1);
break;
}
}
}
this.invOptions = this.handleTree(invList, "code", "parentCode");
})
.catch(() => {
});
this.sysSubList = null;
},
hideForm() { // 新增,编辑---取消
this.query.advanceType = null;
this.formVisible = false;
this.subFormVisible = false;
this.resetForm();
return true;
},
// 刷新表单
resetForm() {
if (this.$refs["dataForm"]) {
// 清空验证信息表单
this.$refs["dataForm"].clearValidate();
// 刷新表单
this.$refs["dataForm"].resetFields();
this.getList();
}
},
forInvSubmit() { // 新增,编辑---提交
this.$refs["dataForm"].validate(valid => {
if (valid) {
saveSubWarehouse(this.subData, this.formName).then((response) => {
this.subFormVisible = false;
if (response.code == 20000) {
this.getList();
} else {
this.$message.error(response.message);
}
}).catch(() => {
this.subFormVisible = false;
});
}
});
},
findDeptMethod() { //新增,编辑---获取部门信息
let query = {
status: 1,
};
filterList(query)
.then((response) => {
this.loading = false;
this.fromDeptOptions = response.data.list || [];
})
.catch(() => {
this.loading = false;
this.fromDeptOptions = [];
});
},
//过滤协和医院平潭分院这条数据
// findDeptMethod() { //新增,编辑---获取部门信息
// let query = {
// status: 1,
// };
// filterList(query)
// .then((response) => {
// this.loading = false;
// let fromDeptOptions = response.data.list || [];
// // 过滤掉值为 "协和医院平潭分院" 的数据
// fromDeptOptions = fromDeptOptions.filter((item) => {
// return item.name !== "协和医院平潭分院";
// });
// this.fromDeptOptions = fromDeptOptions;
// })
// .catch(() => {
// this.loading = false;
// this.fromDeptOptions = [];
// });
// },
normalizer(node) {
if (node.children && !node.children.length) {
delete node.children;
}
return {
id: node.code,
label: node.name,
children: node.children
};
},
getSyncConfig() {//获取配置信息
findConfig()
.then((response) => {
if (response.code == 20000) {
this.configParms = response.data;
}
})
.catch(() => {
});
let query = {
paramKey: "muti_inv_mode",
};
selectSysParamByKey(query).then((response) => {
if (response.code == 20000) {
if (response.data.paramValue == "1") {
this.mutiInvMode = true;
} else {
this.mutiInvMode = false;
}
}
});
},
handSubInvCurrentChange(row) { //列表选中
this.currentCode = row.code;
this.currentRow = row;
this.curSeleUser = null;
//加载货位信息
this.invSpaceManage(row);
//加载单据类型
this.selsectBussinessType(row);
},
//关联第三方仓库信息
intentSubSelect(row) {
if (row != null) {
if (row.sysId != null && row.sysId != undefined) {
this.thirdSubQuery.thirdSysFk = row.sysId;
}
}
this.thrSubWarehouseData = [];
this.thrSubWareHouseVisible = true;
filterThridSubByInv(this.thirdSubQuery).then((res) => {
if (res.code == 20000) {
this.thrSubWarehouseData = res.data.list;
this.subTotal = res.data.total || 0;
} else {
this.$message.error(res.message);
}
}).catch((error) => {
this.thrWarehouseData = [];
this.subTotal = 0;
this.$message.error("第三方分库库数据加载失败");
});
},
changeSubThrWarehouse(row) {
this.checkSubThrWarehouseRow = row;
},
hideThrWarehouseTable() {
this.thrWareHouseVisible = false;
this.thrSubWareHouseVisible = false;
//刷新表单
this.thirdSubQuery.name = "";
this.checkSubThrWarehouseRow.code = null;
this.checkSubThrWarehouseRow.thirdSysFk = null;
},
//绑定第三方分库
bindSubThrWarehouse() {
let params = {
id: this.subData.id,
thridWarehouseId: this.checkSubThrWarehouseRow.code,
sysId: this.checkSubThrWarehouseRow.thirdSysFk
}
bindThrSubWarehouse(params).then((res) => {
if (res.code == 20000) {
this.$message.success("绑定成功")
this.getSubThrsysDetailData();
}
this.thrSubWareHouseVisible = false;
}).catch((error) => {
this.$message.error("绑定失败");
this.thrSubWareHouseVisible = false;
})
},
//解绑第三方分库
unbindSubThrWarehouse(row) {
this.$confirm("确定解绑已关联第三方仓库信息?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
let params = {
id: this.subData.id,
sysId: row.sysId
};
unbindSubThrWarehouse(params).then((res) => {
this.$message.success("解绑成功");
this.getSubThrsysDetailData();
}).catch((error) => {
this.$message.error("解绑失败");
})
})
.catch(() => {
});
},
popInvRelBustype(row) {
this.relBusTypeVisible = true;
this.currentRow = row;
},
cancelRelBustype() {
this.relBusTypeVisible = false;
},
popInvRelUser(row) {
this.relUserVisible = true;
this.currentRow = row;
},
cancelRelUser() {
this.relUserVisible = false;
},
getBussinessType(val, obj) {
if (val != null) {
this.bussinessTypeQuery.page = val;
}
if (obj != undefined) {
var action = obj.toString();
this.bussinessTypeQuery.ids = action;
}
this.bussinessTypeQuery.code = this.busQuery.code;
getJoinBussinessType(this.bussinessTypeQuery).then((res) => {
this.selectBussinessTypeList = [];
this.bussinessTypeList = res.data.list;
this.bussinessTypeTotal = res.data.total;
var that = this;
that.$nextTick(() => {
if (that.$refs.typeList) {
that.$refs.typeList.clearSelection();
}
that.bussinessTypeList.forEach(row => {
if (row.checkSelect == true) {
that.$refs.typeList.toggleRowSelection(row, true);
}
});
});
}).catch((error) => {
});
},
invSpaceManage(row) {
this.currentInvInfo = {
invStorageCode: row.parentId,
invWarehouseCode: row.code,
invName: row.name,
flag: row.id,
page: 1
};
},
getSubThrsysDetailData() {
if (!isBlank(this.subData.code)) {
let params = {
id: this.subData.code,
};
getSubThrsysDetail(params)
.then((response) => {
this.loading = false;
this.sysSubList = response.data.list || [];
})
.catch(() => {
this.loading = false;
this.sysSubList = [];
});
}
},
handleDelInv(row) {
if (row.id) {
this.$confirm("确认删除该仓库吗?", "提示", {
type: "warning",
})
.then(() => {
this.deleteLoading = true;
let para = {id: row.id};
deleteSubWarehouse(para)
.then((response) => {
this.deleteLoading = false;
if (response.code !== 20000) {
this.$message.error(response.message);
return false;
}
this.getList();
this.$message.success("删除成功");
})
.catch(() => {
this.deleteLoading = false;
});
})
.catch(() => {
this.$message.info("取消删除");
});
}
},
},
filters: {
spUerFilterType(status) {
const upUerMap = {
true: "success",
false: "danger",
};
return upUerMap[status];
},
spUerFilterName(status) {
const upUerMap = {
true: "允许",
false: "不允许",
};
return upUerMap[status];
},
},
mounted() {
},
components: {
InvRelUsers,
InvRelBusType,
invSpaceManage, Treeselect
},
created() {
this.getList();
this.getSyncConfig();
this.findDeptMethod();
}
};
</script>
<style scoped>
.vue-treeselect >>> .vue-treeselect__placeholder {
font-size: 12px;
}
.vue-treeselect >>> .vue-treeselect__value-container {
font-size: 12px;
height: 30px;
}
.vue-treeselect >>> .vue-treeselect__control {
height: 20px;
}
</style>