5-10 生产企业和生产企业同步页面

dev2.0.1
wangwei 11 months ago
parent e5badbefbb
commit 44151405e5

@ -0,0 +1,37 @@
import axios from "@/utils/request";
export function getCorps(query) {
return axios({
url: "/udiwms/thrsys/getManus",
method: "get",
params: query
});
}
export function delCorps(query) {
return axios({
url: "/udiwms/thrsys/delManus",
method: "post",
data: query
});
}
export function corpsDlAll(query) {
return axios({
url: "/udiwms/thrsys/manu/corpsDlAll",
method: "post",
data: query
});
}
export function getErpManus(query) {
return axios({
url: "/udiwms/manu/filterErp",
method: "get",
params: query
});
}

@ -382,10 +382,6 @@
</el-select>
</el-form-item>
</el-form>
<!-- <el-checkbox v-model="configQuery.dbDiProducts">DI</el-checkbox>
<el-checkbox v-model="configQuery.dbDiProducts"
>医疗器械注册人</el-checkbox
> -->
</el-descriptions-item>
<el-descriptions-item>
<template slot="label"> 设备管理</template>
@ -422,6 +418,23 @@
>医疗器械注册人</el-checkbox
> -->
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">生产企业</template>
<el-form
label-positiom="right"
label-width="200px"
:inline="true"
disabled
>
<el-form-item label="生产企业信息" style="padding-top: 20px">
<el-select v-model="configQuery.produceBusiness">
<el-option :value="0" label="不同步"></el-option>
<el-option :value="1" label="由内向外"></el-option>
<el-option :value="2" label="由外向内"></el-option>
</el-select>
</el-form-item>
</el-form>
</el-descriptions-item>
</el-descriptions>
</el-collapse-item>
@ -909,6 +922,7 @@ export default {
deviceInfo: null,
deviceCheck: null,
deviceRepairApply: null,
produceBusiness:null,
},
checkedBusTypes: [],
checkedToInBusTypes: [],

@ -0,0 +1,318 @@
<template>
<div>
<el-card class="el-card">
<el-form :model="filterQuery" size="mini" label-width="100px" v-if="showSearch">
<el-row>
<el-col :span="6">
<el-form-item label="单位编码:">
<el-input v-model="filterQuery.unitId" placeholder="请输入生产企业编码" style="width: 90%" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="生产企业:">
<el-input v-model="filterQuery.name" placeholder="请输入生产企业" style="width: 90%" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="外部系统:">
<el-select v-model="filterQuery.thirdSys" placeholder="请选择第三方系统" style="width: 90%"
@change="thirdSysChange">
<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="getList"></el-button>
<el-button type="primary" icon="el-icon-download" @click="downloadErp"></el-button>
<el-button type="primary" icon="el-icon-download" @click="downloadAllErp">
</el-button>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table v-loading="loading" :data="list"
style="width: 100%"
@selection-change="handleSelectionChange"
border highlight-current-row>
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="生产企业ID" prop="unitId" width="100" show-overflow-tooltip></el-table-column>
<el-table-column label="生产企业" prop="name" show-overflow-tooltip></el-table-column>
<el-table-column label="拼音简写" prop="spell" width="100" show-overflow-tooltip></el-table-column>
<el-table-column label="地址" prop="addr" show-overflow-tooltip></el-table-column>
<el-table-column label="社会信用号" prop="creditNo" width="140" show-overflow-tooltip></el-table-column>
<el-table-column label="联系人" prop="contact" width="100" show-overflow-tooltip></el-table-column>
<el-table-column label="联系电话" prop="mobile" show-overflow-tooltip></el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="filterQuery.page"
:limit.sync="filterQuery.limit"
@pagination="getList"
/>
</el-card>
</div>
</template>
<script>
import {corpsDlAll} from "@/api/thrsys/thrManus";
import {getBasicThirdSys, filterDetailByKey} from "@/api/basic/basicThirdSys";
import {selectIp} from "@/api/param/systemParamConfig";
import {exportExcel, uploadSmp} from "@/api/thrsys/thrCorpsExport"
import {getErpManus} from "@/api/thrsys/thrManus";
export default {
name: "ThrCorpSelect",
props: {
isDownThrSys: {
type: Object,
required: true,
},
},
data() {
return {
showSearch: true,
filterQuery: {
thrCorpEntities: [],
unitId: null,
name: null,
thirdSys: null,
page: 1,
limit: 20,
isDownThrSys: null,
},
mainThirdSys: '',
total: 0,
list: [],
thirdSys: [],
thirdSysDetail: null,
uploadFileUrl: null,
fileList: [],
uploadData: {
thirdSys: "thirdId",
},
loading: false,
};
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
thrCorpEntities: [],
unitId: null,
name: null,
thirdSys: this.mainThirdSys,
page: 1,
limit: 20,
isDownThrSys: null,
};
this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;
},
getList() {
this.loading = true;
this.filterQuery.isDownThrSys = this.isDownThrSys;
getErpManus(this.filterQuery)
.then((response) => {
this.loading = false;
if (response.code == 20000) {
this.list = response.data.list || [];
this.total = response.data.total || 0;
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
handleSelectionChange(val) {
this.multipleSelection = val;
},
getBasicThirdSys() {
let query = {
enabled: true,
};
getBasicThirdSys(query)
.then((response) => {
this.thirdSys = response.data.list || [];
for (var i = 0; i < this.thirdSys.length; i++) {
if (this.thirdSys[i].mainSys) {
this.filterQuery.thirdSys = this.thirdSys[i].thirdId;
this.mainThirdSys = this.thirdSys[i].thirdId;
}
}
this.uploadData.thirdSys = this.filterQuery.thirdSys;
this.getThirdSysDetail();
this.selectSysParam();
this.getList();
})
.catch(() => {
this.loading = false;
this.list = [];
});
},
handleChange(response, files, fileList) {
console.log(response);
if (response.code != 20000) {
this.$message.error(response.message);
} else {
console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
this.$message.success("文件上传成功,请稍后刷新查看!");
}
},
selectSysParam() {
let query = {
key: "thirdIpUrl",
thirdSysFk: this.filterQuery.thirdSys
};
selectIp(query).then((response) => {
if (response.code == 20000) {
this.uploadFileUrl = response.data.thridUrl + "/udiwms/erp/corp/upload";
}
});
},
thirdSysChange() {
this.uploadData.thirdSys = this.filterQuery.thirdSys;
// this.getThirdSysDetail();
},
getThirdSysDetail() {
let query = {
thirdSysFk: this.filterQuery.thirdSys,
key: "corpUrl",
};
filterDetailByKey(query)
.then((response) => {
this.thirdSysDetail = response.data;
})
.catch(() => {
this.loading = false;
this.list = [];
});
},
downloadErp() {
var selectData = this.multipleSelection;
selectData.forEach((obj) => {
this.filterQuery.thrCorpEntities.push(obj);
});
this.downloadAllErp();
},
downloadAllErp() {
corpsDlAll(this.filterQuery)
.then((response) => {
if (response.code == 20000) {
this.$message.success("提交成功,后台正在下载!")
} else {
this.$message.error(response.message)
}
this.$emit("cancelDialog", true);
})
.catch(() => {
this.$message.error("下载失败!");
});
},
selectExport() {
var selectData = this.multipleSelection;
selectData.forEach((obj) => {
this.filterQuery.thrCorpEntities.push(obj);
});
this.allExport();
},
allExport() {
exportExcel(this.filterQuery)
.then((response) => {
if (response.code == 20000) {
this.$message({
type: "success",
message: "导出成功后台正在生成Json文件请稍后刷新查看",
});
} else {
this.$message({
type: "error",
message: response.message,
});
}
this.$emit("cancelDialog", true);
})
.catch(() => {
this.$message({
type: "error",
message: "上传失败",
});
});
},
selectUpload() {
var selectData = this.multipleSelection;
selectData.forEach((obj) => {
this.filterQuery.thrCorpEntities.push(obj);
});
this.allUpload();
},
allUpload() {
uploadSmp(this.filterQuery)
.then((response) => {
if (response.code == 20000) {
this.$message({
type: "success",
message: "上传成功!!",
});
} else {
this.$message({
type: "error",
message: response.message,
});
}
this.$emit("cancelDialog", true);
})
.catch(() => {
this.$message({
type: "error",
message: "上传失败",
});
});
},
},
components: {},
mounted() {
},
created() {
// this.getList();
this.getBasicThirdSys();
},
};
</script>
<style scoped>
</style>

@ -0,0 +1,311 @@
<template>
<div>
<el-card class="el-card">
<el-form size="mini" :model="filterQuery" label-width="100px" v-if="showSearch">
<el-row>
<el-col :span="6">
<el-form-item label="单位编码:">
<el-input v-model="filterQuery.unitId" placeholder="请输入生产企业编码" style="width: 90%" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="生产企业:">
<el-input v-model="filterQuery.name" placeholder="请输入生产企业" style="width: 90%" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="外部系统:">
<el-select v-model="filterQuery.thirdSys" style="width: 90%" placeholder="请选择第三方系统"
@change="thirdSysChange">
<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="getList"></el-button>
<!-- <el-button type="primary" icon="el-icon-delete-solid" @click="clearAll"-->
<!-- v-if="!this.thirdSysDetail.enabled">清空全部-->
<!-- </el-button>-->
<el-button type="primary" icon="el-icon-download" @click="downloadCorps"
v-if="this.thirdSysDetail.enabled && this.thirdSysDetail.fromType==3">
下载生产企业
</el-button>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row>
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="生产企业ID" prop="id" width="100" show-overflow-tooltip></el-table-column>
<el-table-column label="生产企业" prop="name" show-overflow-tooltip></el-table-column>
<el-table-column label="拼音简写" prop="spell" width="100" show-overflow-tooltip></el-table-column>
<el-table-column label="地址" prop="addr" show-overflow-tooltip></el-table-column>
<el-table-column label="社会信用号" prop="creditNo" width="140" show-overflow-tooltip></el-table-column>
<el-table-column label="联系人" prop="contact" width="100" show-overflow-tooltip></el-table-column>
<el-table-column label="联系电话" prop="mobile" show-overflow-tooltip></el-table-column>
<el-table-column label="操作" v-if="thirdSysDetail.fromType!=0" width="60">
<template slot-scope="scope">
<el-button type="text" @click.native.stop="deleteDialog(scope.row)" :disabled="!delFalg"
>删除
</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"
></pagination>
</el-card>
<el-dialog
title="下载生产企业信息信息"
:visible.sync="thrCorpSelectVisible"
width="80%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="thrCorpSelectVisible"
>
<thrCorpSelect v-on:cancelDialog="cancelDialog" :isDownThrSys="true"
></thrCorpSelect>
</el-dialog>
</div>
</template>
<script>
import {
getCorps, delCorps
} from "@/api/thrsys/thrManus";
import {getBasicThirdSys, filterDetailByKey} from "@/api/basic/basicThirdSys";
import {selectIp} from "@/api/param/systemParamConfig";
import {findConfig} from "@/api/sync/spsSyncStatus";
import thrCorpSelect from "./thrManuSelect";
export default {
data() {
return {
showSearch: true,
filterQuery: {
unitId: null,
name: null,
thirdSys: null,
page: 1,
limit: 20,
},
mainThirdSys: '',
total: 0,
list: [],
thirdSys: [],
thirdSysDetail: null,
delFalg: true,
uploadFileUrl: null,
fileList: [],
uploadData: {
thirdSys: "thirdId",
},
loading: false,
thrCorpSelectVisible: false,
};
},
methods: {
onReset() {
// this.$router.push({
// path: "",
// });
this.filterQuery = {
unitId: null,
name: null,
thirdSys: this.mainThirdSys,
page: 1,
limit: 20,
};
this.getList();
},
getList() {
if (this.filterQuery.thirdSys == null) {
this.$message.warning("请先选择第三方系统!")
return;
}
this.loading = true;
getCorps(this.filterQuery)
.then((response) => {
if (response.code == 20000) {
this.list = response.data.list || [];
this.total = response.data.total || 0;
} else {
this.$message.error(response.message);
}
this.loading = false;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
hideSearch() {
this.showSearch = !this.showSearch;
},
deleteDialog(row) {
this.$confirm("此操作将永久删除该生产企业信息, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
let dQuery = {
id: row.id,
};
delCorps(dQuery)
.then((response) => {
this.loading = false;
if (response.code == 20000) {
this.$message.success("删除成功");
this.getList();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
});
})
.catch(() => {
});
},
getBasicThirdSys() {
let query = {
enabled: true,
};
getBasicThirdSys(query)
.then((response) => {
this.thirdSys = response.data.list || [];
for (var i = 0; i < this.thirdSys.length; i++) {
if (this.thirdSys[i].mainSys) {
this.filterQuery.thirdSys = this.thirdSys[i].thirdId;
this.mainThirdSys = this.thirdSys[i].thirdId;
}
}
this.uploadData.thirdSys = this.filterQuery.thirdSys;
this.getThirdSysDetail();
this.selectSysParam();
this.getList();
})
.catch(() => {
this.loading = false;
this.list = [];
});
},
handleChange(response, files, fileList) {
console.log(response);
if (response.code != 20000) {
this.$message.error(response.message);
} else {
console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
this.$message.success("文件上传成功,请稍后刷新查看!");
}
},
selectSysParam() {
let query = {
key: "thirdIpUrl",
thirdSysFk: this.filterQuery.thirdSys
};
selectIp(query).then((response) => {
if (response.code == 20000) {
this.uploadFileUrl = response.data.thridUrl + "/udiwms/erp/corp/upload";
}
});
},
thirdSysChange() {
this.uploadData.thirdSys = this.filterQuery.thirdSys;
this.getThirdSysDetail();
},
getThirdSysDetail() {
let query = {
thirdSysFk: this.filterQuery.thirdSys,
key: "corpUrl",
};
filterDetailByKey(query)
.then((response) => {
this.thirdSysDetail = response.data;
console.log("disanfang shujv biaodan ",this.thirdSysDetail)
})
.catch(() => {
this.loading = false;
this.list = [];
});
},
getConFig() {
findConfig().then((response) => {
if (response.code == 20000) {
this.delFalg = response.data.basicThirdCorp;
} else {
this.$message.error(response.message);
}
});
},
downloadDatas() {
let query = {
thirdSysFk: this.filterQuery.thirdSys
};
downloadAll(query).then((response) => {
if (response.code == 20000) {
this.$message.success(response.data);
} else {
this.$message.error(response.message);
}
});
},
downloadCorps() {
this.selectType = 3;
this.thrCorpSelectVisible = true;
},
cancelDialog(val) {
this.thrCorpSelectVisible = false;
if (val) {
this.getList();
}
},
},
components: {thrCorpSelect},
mounted() {
},
created() {
this.getConFig();
this.getBasicThirdSys();
},
};
</script>
<style scoped>
</style>
Loading…
Cancel
Save