新增生产企业字典维护
parent
346d257e66
commit
4d1eb8e33f
@ -0,0 +1,61 @@
|
|||||||
|
import axios from "@/utils/request";
|
||||||
|
|
||||||
|
export function getBasicManuMaintains(query) {
|
||||||
|
return axios({
|
||||||
|
url: "/udiwms/basic/manu/maintain/filter",
|
||||||
|
method: "get",
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export function basicUnitMaintainSave(data, formName, method = "post") {
|
||||||
|
let url =
|
||||||
|
formName === "add" ? "/udiwms/basic/manu/maintain/save" : "/udiwms/basic/manu/maintain/update";
|
||||||
|
return axios({
|
||||||
|
url: url,
|
||||||
|
method: method,
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export function deleteBasicUnitMaintain(query) {
|
||||||
|
return axios({
|
||||||
|
url: "/udiwms/basic/manu/maintain/delete",
|
||||||
|
method: "post",
|
||||||
|
data: query
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function combine(query) {
|
||||||
|
return axios({
|
||||||
|
url: "/udiwms/basic/manu/maintain/combine",
|
||||||
|
method: "post",
|
||||||
|
data: query
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function combineAll(query) {
|
||||||
|
return axios({
|
||||||
|
url: "/udiwms/basic/manu/maintain/combineAll",
|
||||||
|
method: "get",
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function combineSingle(query) {
|
||||||
|
return axios({
|
||||||
|
url: "/udiwms/basic/manu/maintain/combineSingle",
|
||||||
|
method: "post",
|
||||||
|
data: query
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getThrsysUnit(query) {
|
||||||
|
return axios({
|
||||||
|
url: "/udiwms/manutMaintain/thirdSys/detail",
|
||||||
|
method: "get",
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
}
|
@ -0,0 +1,227 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<el-card class="el-card">
|
||||||
|
<el-form :model="unitQuery" size="mini" label-width="100px" v-if="showSearch">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="往来单位编码:">
|
||||||
|
<el-input v-model="unitQuery.unitId" style="width: 90%" placeholder="请输入往来单位编码" clearable></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="请设置主系统:">
|
||||||
|
<el-select v-model="thirdSysFk" style="width: 90%" placeholder="请设置主系统" disabled>
|
||||||
|
<el-option
|
||||||
|
v-for="item in thirdSys"
|
||||||
|
:key="item.value"
|
||||||
|
:label="item.thirdName"
|
||||||
|
:value="item.thirdId">
|
||||||
|
<span style="float: left">{{ item.thirdName }}</span>
|
||||||
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.thirdId }}</span>
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<div class="top-right-btn">
|
||||||
|
<el-button-group style="display:flex;">
|
||||||
|
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||||
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
||||||
|
<el-button type="primary" icon="el-icon-search" @click="search">查询</el-button>
|
||||||
|
<el-button type="primary" size="mini" icon="el-icon-bottom-right" @click="combine">选入</el-button>
|
||||||
|
<el-button type="primary" size="mini" icon="el-icon-bottom-right" @click="combineAll">结果全部选入</el-button>
|
||||||
|
</el-button-group>
|
||||||
|
</div>
|
||||||
|
<el-divider style="margin: 15px"></el-divider>
|
||||||
|
<el-table :data="unitlList" style="width: 100%" @selection-change="handleSelectionUdiChange" border
|
||||||
|
highlight-current-row>
|
||||||
|
<el-table-column type="selection" width="55" :selectable="checkSelectable"></el-table-column>
|
||||||
|
<el-table-column label="序号" type="index"></el-table-column>
|
||||||
|
<el-table-column label="往来单位编码" prop="unitId"></el-table-column>
|
||||||
|
<el-table-column label="往来单位名称" prop="name" show-overflow-tooltip></el-table-column>
|
||||||
|
<el-table-column label="往来单位简写" show-overflow-tooltip prop="spell"></el-table-column>
|
||||||
|
<el-table-column label="地址" prop="addr" show-overflow-tooltip></el-table-column>
|
||||||
|
</el-table>
|
||||||
|
</el-card>
|
||||||
|
<pagination
|
||||||
|
v-show="total>0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="unitQuery.page"
|
||||||
|
:limit.sync="unitQuery.limit"
|
||||||
|
@pagination="handlepageChange"
|
||||||
|
|
||||||
|
></pagination>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {getBasicThirdSys} from "@/api/basic/basicThirdSys";
|
||||||
|
import {getCorps} from "@/api/thrsys/thrManus";
|
||||||
|
import {combine, combineAll} from "@/api/basic/basicManuMaintain";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
showSearch: true,
|
||||||
|
unitQuery: {
|
||||||
|
page: 1,
|
||||||
|
limit: 10,
|
||||||
|
key: "",
|
||||||
|
thirdSys: null,
|
||||||
|
},
|
||||||
|
combineQuery: {
|
||||||
|
thirdSys: "",
|
||||||
|
keys: [],
|
||||||
|
custmandocResponses: [],
|
||||||
|
},
|
||||||
|
total: 0,
|
||||||
|
erpTotal: 0,
|
||||||
|
checked: false,
|
||||||
|
unitlList: [],
|
||||||
|
erpList: [],
|
||||||
|
currentRow: null,
|
||||||
|
multipleUdiSelection: [],
|
||||||
|
thirdSys: [],
|
||||||
|
thirdSysFk: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
onReset() {
|
||||||
|
this.$router.push({
|
||||||
|
path: "",
|
||||||
|
});
|
||||||
|
this.unitQuery = {
|
||||||
|
key: "",
|
||||||
|
page: 1,
|
||||||
|
limit: 10,
|
||||||
|
thirdSys: null,
|
||||||
|
};
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
hideSearch() {
|
||||||
|
this.showSearch = !this.showSearch;
|
||||||
|
},
|
||||||
|
handlepageChange(val) {
|
||||||
|
this.unitQuery.page = val.page;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
handleErppageChange(val) {
|
||||||
|
this.erpQuery.page = val;
|
||||||
|
this.getErpList();
|
||||||
|
},
|
||||||
|
checkSelectable(row) {
|
||||||
|
return !row.checked;
|
||||||
|
},
|
||||||
|
search() {
|
||||||
|
this.unitQuery.page = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
this.unitQuery.thirdSys = this.thirdSysFk;
|
||||||
|
getCorps(this.unitQuery)
|
||||||
|
.then((response) => {
|
||||||
|
this.loading = false;
|
||||||
|
|
||||||
|
if (response.code == 20000) {
|
||||||
|
this.unitlList = response.data.list || [];
|
||||||
|
this.total = response.data.total || 0;
|
||||||
|
} else {
|
||||||
|
this.$message.error(response.message);
|
||||||
|
this.unitlList = [];
|
||||||
|
this.total = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
this.loading = false;
|
||||||
|
this.unitlList = [];
|
||||||
|
this.total = 0;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
intentBack() {
|
||||||
|
this.$router.go(-1);
|
||||||
|
},
|
||||||
|
getBasicThirdSys() {
|
||||||
|
let query = {
|
||||||
|
enabled: true,
|
||||||
|
mainSys: true,
|
||||||
|
};
|
||||||
|
getBasicThirdSys(query)
|
||||||
|
.then((response) => {
|
||||||
|
this.thirdSys = response.data.list || [];
|
||||||
|
this.thirdSysFk = this.thirdSys[0].thirdId;
|
||||||
|
this.getList();
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
this.loading = false;
|
||||||
|
this.list = [];
|
||||||
|
});
|
||||||
|
},
|
||||||
|
combine() {
|
||||||
|
let selectData = this.multipleUdiSelection;
|
||||||
|
var ids = [];
|
||||||
|
selectData.forEach((obj) => {
|
||||||
|
ids.push(obj);
|
||||||
|
});
|
||||||
|
if (ids.length == 0) {
|
||||||
|
this.$message.warning("请选择往来单位信息!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.combineQuery.thirdSys = this.thirdSysFk;
|
||||||
|
this.combineQuery.custmandocResponses = ids;
|
||||||
|
combine(this.combineQuery)
|
||||||
|
.then((response) => {
|
||||||
|
if (response.code == 20000) {
|
||||||
|
this.$emit("closeMain", true);
|
||||||
|
} else {
|
||||||
|
this.$emit("closeMain", false);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
this.$emit("closeMain", false);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
combineAll() {
|
||||||
|
|
||||||
|
this.$confirm("此操作将在后台自动选入所有查询结果, 是否继续?", "提示", {
|
||||||
|
confirmButtonText: "确定",
|
||||||
|
cancelButtonText: "取消",
|
||||||
|
type: "warning",
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
this.unitQuery.thirdSys = this.thirdSysFk;
|
||||||
|
combineAll(this.unitQuery)
|
||||||
|
.then((response) => {
|
||||||
|
if (response.code == 20000) {
|
||||||
|
this.$emit("closeMain", true);
|
||||||
|
} else {
|
||||||
|
this.$emit("closeMain", false);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
this.$emit("closeMain", false);
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
},
|
||||||
|
handleCurrentChange(val) {
|
||||||
|
this.currentRow = val;
|
||||||
|
this.unitQuery.key = this.currentRow.name;
|
||||||
|
},
|
||||||
|
|
||||||
|
handleSelectionUdiChange(val) {
|
||||||
|
this.multipleUdiSelection = val;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getBasicThirdSys();
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,239 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<el-card class="el-card">
|
||||||
|
<el-form :model="unitQuery" label-width="100px" v-if="showSearch" size="mini">
|
||||||
|
<el-row>
|
||||||
|
<el-col span="6">
|
||||||
|
<el-form-item label="生产企业编码:">
|
||||||
|
<el-input v-model="unitQuery.unitId" style="width: 90%" placeholder="生产企业编码" clearable></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col span="6">
|
||||||
|
<el-form-item label="生产企业:">
|
||||||
|
<el-input v-model="unitQuery.name" style="width: 90%" placeholder="生产企业" clearable></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col span="6">
|
||||||
|
<el-form-item label="外部系统:">
|
||||||
|
<el-select v-model="thirdSysFk" style="width: 90%" placeholder="请选择第三方系统" disabled="true">
|
||||||
|
<el-option
|
||||||
|
v-for="item in thirdSys"
|
||||||
|
:key="item.value"
|
||||||
|
:label="item.thirdName"
|
||||||
|
:value="item.thirdId">
|
||||||
|
<span style="float: left">{{ item.thirdName }}</span>
|
||||||
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.thirdId }}</span>
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<div class="top-right-btn">
|
||||||
|
<el-button-group style="display:flex;">
|
||||||
|
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||||
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
||||||
|
<el-button type="primary" icon="el-icon-search" @click="searchList">查询</el-button>
|
||||||
|
<el-button type="primary" size="mini" icon="el-icon-bottom-right" @click="combine" :loading="combineLoading">
|
||||||
|
选入
|
||||||
|
</el-button>
|
||||||
|
</el-button-group>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<el-divider style="margin: 15px"></el-divider>
|
||||||
|
<el-table border highlight-current-row @current-change="handleCurrentChange" :data="unitlList"
|
||||||
|
:row-class-name="tableRowClassName" style="width: 100%">
|
||||||
|
<el-table-column label="序号" type="index"></el-table-column>
|
||||||
|
<el-table-column label="生产企业编码" prop="unitId"></el-table-column>
|
||||||
|
<el-table-column label="生产企业名称" prop="name" show-overflow-tooltip></el-table-column>
|
||||||
|
<el-table-column label="生产企业简写" show-overflow-tooltip prop="spell"></el-table-column>
|
||||||
|
<el-table-column label="地址" prop="addr"></el-table-column>
|
||||||
|
</el-table>
|
||||||
|
</el-card>
|
||||||
|
<pagination
|
||||||
|
v-show="total>0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="unitQuery.page"
|
||||||
|
:limit.sync="unitQuery.limit"
|
||||||
|
@pagination="handlepageChange"
|
||||||
|
|
||||||
|
></pagination>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {getBasicThirdSys} from "@/api/basic/basicThirdSys";
|
||||||
|
import {getCorps} from "@/api/thrsys/thrManus";
|
||||||
|
import {combine, combineAll, combineSingle} from "@/api/basic/basicManuMaintain";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "combinType",
|
||||||
|
props: {
|
||||||
|
corpData: {
|
||||||
|
type: Object,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
defaultSys: {
|
||||||
|
type: Object,
|
||||||
|
required: true,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
showSearch: true,
|
||||||
|
unitQuery: {
|
||||||
|
page: 1,
|
||||||
|
limit: 10,
|
||||||
|
key: "",
|
||||||
|
thirdSys: null,
|
||||||
|
},
|
||||||
|
combineQuery: {
|
||||||
|
thirdSys: "",
|
||||||
|
key: null,
|
||||||
|
basicErpUnitsResponse: [],
|
||||||
|
},
|
||||||
|
total: 0,
|
||||||
|
erpTotal: 0,
|
||||||
|
checked: false,
|
||||||
|
unitlList: [],
|
||||||
|
erpList: [],
|
||||||
|
currentRow: null,
|
||||||
|
multipleUdiSelection: [],
|
||||||
|
thirdSys: [],
|
||||||
|
thirdSysFk: null,
|
||||||
|
combineLoading: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handlepageChange(val) {
|
||||||
|
this.unitQuery.page = val.page;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
handleErppageChange(val) {
|
||||||
|
this.erpQuery.page = val;
|
||||||
|
this.getErpList();
|
||||||
|
},
|
||||||
|
searchList() {
|
||||||
|
this.unitQuery.page = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
hideSearch() {
|
||||||
|
this.showSearch = !this.showSearch;
|
||||||
|
},
|
||||||
|
onReset() {
|
||||||
|
this.unitQuery = {
|
||||||
|
page: 1,
|
||||||
|
limit: 10,
|
||||||
|
key: "",
|
||||||
|
thirdSys: null,
|
||||||
|
}
|
||||||
|
this.total = 0;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
this.unitQuery.thirdSys = this.thirdSysFk;
|
||||||
|
getCorps(this.unitQuery)
|
||||||
|
.then((response) => {
|
||||||
|
console.log(response);
|
||||||
|
this.loading = false;
|
||||||
|
|
||||||
|
if (response.code == 20000) {
|
||||||
|
this.unitlList = response.data.list || [];
|
||||||
|
this.total = response.data.total || 0;
|
||||||
|
} else {
|
||||||
|
this.$message.error(response.message);
|
||||||
|
this.unitlList = [];
|
||||||
|
this.total = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
this.loading = false;
|
||||||
|
this.unitlList = [];
|
||||||
|
this.total = 0;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
intentBack() {
|
||||||
|
this.$router.go(-1);
|
||||||
|
},
|
||||||
|
getBasicThirdSys() {
|
||||||
|
let query = {
|
||||||
|
enabled: true,
|
||||||
|
};
|
||||||
|
getBasicThirdSys(query)
|
||||||
|
.then((response) => {
|
||||||
|
this.thirdSys = response.data.list || [];
|
||||||
|
this.thirdSysFk = this.thirdSys[0].thirdId;
|
||||||
|
if (this.defaultSys != null) {
|
||||||
|
this.thirdSysFk = this.defaultSys;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
this.loading = false;
|
||||||
|
this.list = [];
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleCurrentChange(val) {
|
||||||
|
console.log(val);
|
||||||
|
this.combineQuery.thirdSys = this.thirdSysFk;
|
||||||
|
this.combineQuery.key = this.corpData.id;
|
||||||
|
this.combineQuery.basicErpUnitsResponse = val;
|
||||||
|
},
|
||||||
|
combine() {
|
||||||
|
|
||||||
|
if (this.combineQuery.key == null) {
|
||||||
|
this.$message.warning("未选择生产企业!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (this.combineQuery.basicErpUnitsResponse.checked == true) {
|
||||||
|
this.$message.warning("该生产企业已被关联,不能重复选入!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.combineLoading = true;
|
||||||
|
combineSingle(this.combineQuery)
|
||||||
|
.then((response) => {
|
||||||
|
this.combineLoading = false;
|
||||||
|
this.$emit("cancelDialog", true);
|
||||||
|
if (response.code == 20000) {
|
||||||
|
this.$message.success("关联成功!");
|
||||||
|
} else {
|
||||||
|
this.$message.error(response.message);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
this.combineLoading = false;
|
||||||
|
this.$emit("cancelDialog", false);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
tableRowClassName({row}) {
|
||||||
|
if (row.checked) return "warning-row";
|
||||||
|
return "";
|
||||||
|
},
|
||||||
|
handleSelectionUdiChange(val) {
|
||||||
|
console.log("----" + val[0].id);
|
||||||
|
this.multipleUdiSelection = val;
|
||||||
|
},
|
||||||
|
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getBasicThirdSys();
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
div /deep/ .el-table .warning-row {
|
||||||
|
background: #bebebe;
|
||||||
|
}
|
||||||
|
|
||||||
|
div /deep/ .el-table .success-row {
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue