数据同步,代码备份

master
anthonyywj2 3 years ago
parent ff8b7e2db8
commit cf1e83ea56

@ -1,6 +1,6 @@
{ {
"UDI_SYNC_SERVER_IP": "http://127.0.0.1:9995/", "UDI_SYNC_SERVER_IP": "http://192.168.0.109:9995/",
"BASE_URL":"http://127.0.0.1:9991/", "BASE_URL":"http://192.168.0.109:9991/",
"SERVER_IP": "http://127.0.0.1:9991/", "SERVER_IP": "http://192.168.0.109:9991/",
"WEBSOCKET_URL": "ws://127.0.0.1:9991/UDI_WMS_MC/api/websocket/" "WEBSOCKET_URL": "ws://192.168.0.109:9991/UDI_WMS_MC/api/websocket/"
} }

@ -98,6 +98,7 @@
import {filterLog, deleteLog} from "../../api/basic/corpExport"; import {filterLog, deleteLog} from "../../api/basic/corpExport";
import corpSelect from "./CorpSelect"; import corpSelect from "./CorpSelect";
import axios from "axios"; import axios from "axios";
import {formatDate} from "@/utils/date";
export default { export default {
data() { data() {
return { return {
@ -182,15 +183,13 @@
"?genKey=" + row.genKey; "?genKey=" + row.genKey;
console.log("href = " + href); console.log("href = " + href);
let a = document.createElement("a"); let a = document.createElement("a");
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
fetch(href) fetch(href)
.then((res) => res.blob()) .then((res) => res.blob())
.then((blob) => { .then((blob) => {
a.href = URL.createObjectURL(blob); a.href = URL.createObjectURL(blob);
console.log(a.href); console.log(a.href);
a.download = a.download = "BaseCorp_" + timestamp + ".UpperIn";
row.filePath.split("/")[
row.filePath.split("/").length - 1
]; // //
document.body.appendChild(a); document.body.appendChild(a);
a.click(); a.click();
this.getList(); this.getList();

@ -96,200 +96,199 @@
</template> </template>
<script> <script>
import axios from "axios"; import axios from "axios";
import {filterLog, downloadLog, deleteLog} from "../../api/basic/udiInfoExport"; import {filterLog, downloadLog, deleteLog} from "../../api/basic/udiInfoExport";
import udiInfoSelect from "./UdIInfoSelect"; import udiInfoSelect from "./UdIInfoSelect";
import {formatDate} from "@/utils/date";
export default { export default {
data() { data() {
return { return {
filterQuery: { filterQuery: {
type: 3, type: 3,
genKey: null, genKey: null,
status: null, status: null,
fromType: null, fromType: null,
page: 1, page: 1,
limit: 20, limit: 20,
thirdSysFk: null, thirdSysFk: null,
},
selectType: 0,
udiImportDetailVisible: false,
list: [],
detailList: [],
thirdSys: [],
thirdSysDetail: null,
total: 0,
editQuery: null,
fromStatus: {
0: "产品信息",
1: "库存信息",
2: "异常第三方上传"
},
status: {
0: "等待处理",
1: "正在处理",
2: "处理异常",
3: "处理完成"
},
uploadFileUrl: null,
uploadData: {
thirdSys: "thirdId",
},
};
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
type: 1,
fromType: null,
genKey: null,
status: null,
page: 1,
limit: 20,
thirdSysFk: null,
};
this.getList();
}, },
getList() { selectType: 0,
this.loading = true; udiImportDetailVisible: false,
filterLog(this.filterQuery) list: [],
.then((response) => { detailList: [],
this.loading = false; thirdSys: [],
this.list = response.data.list || []; thirdSysDetail: null,
this.total = response.data.total || 0; total: 0,
}) editQuery: null,
.catch(() => { fromStatus: {
this.loading = false; 0: "产品信息",
this.list = []; 1: "库存信息",
this.total = 0; 2: "异常第三方上传"
});
}, },
status: {
exportExcel() { 0: "等待处理",
this.selectType = 0; 1: "正在处理",
this.udiImportDetailVisible = true; 2: "处理异常",
3: "处理完成"
}, },
uploadSmp() { uploadFileUrl: null,
this.selectType = 1; uploadData: {
this.udiImportDetailVisible = true; thirdSys: "thirdId",
}, },
downloadExcel(row) { };
},
axios.get("./config.json").then(res => {
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/products/exportLog/download" + "?genKey=" + row.genKey;
let a = document.createElement("a");
fetch(href)
.then((res) => res.blob())
.then((blob) => {
a.href = URL.createObjectURL(blob);
console.log(a.href);
a.download =
row.filePath.split("/")[
row.filePath.split("/").length - 1
]; // //
document.body.appendChild(a);
a.click();
this.getList();
});
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
type: 1,
fromType: null,
genKey: null,
status: null,
page: 1,
limit: 20,
thirdSysFk: null,
};
this.getList();
},
getList() {
this.loading = true;
filterLog(this.filterQuery)
.then((response) => {
this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
}); });
},
exportExcel() {
this.selectType = 0;
this.udiImportDetailVisible = true;
},
uploadSmp() {
this.selectType = 1;
this.udiImportDetailVisible = true;
},
downloadExcel(row) {
}, axios.get("./config.json").then(res => {
let baseUrl = res.data.BASE_URL;
cancelDialog(val) { let href = baseUrl + "/udiwms/products/exportLog/download" + "?genKey=" + row.genKey;
this.udiImportDetailVisible = false; let a = document.createElement("a");
if (val) { var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
this.getList(); fetch(href)
} .then((res) => res.blob())
}, .then((blob) => {
handleCurrentChange(val) { a.href = URL.createObjectURL(blob);
this.filterQuery.page = val; console.log(a.href);
this.getList(); a.download = "BaseProduct_" + timestamp + ".UpperIn";
}, document.body.appendChild(a);
deleteDialog(rowId) { a.click();
this.$confirm("此操作将删除该产品信息, 是否继续?", "提示", { this.getList();
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
let dQuery = {
id: rowId,
};
deleteLog(dQuery)
.then((response) => {
this.loading = false;
if (response.code == 20000) {
this.$message.success("删除成功");
} else {
this.$message.error(response.message);
}
this.getList();
})
.catch(() => {
this.loading = false;
});
})
.catch(() => {
}); });
},
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.getList();
this.$message.success("文件上传成功,请稍后刷新查看!");
} });
},
statusFilterType(status) {
const statusMap = {
0: "warning",
1: "warning",
2: "danger",
3: "success",
};
return statusMap[status];
},
}, },
mounted() {
cancelDialog(val) {
this.udiImportDetailVisible = false;
if (val) {
this.getList();
}
}, },
components: {udiInfoSelect}, handleCurrentChange(val) {
created() { this.filterQuery.page = val;
// this.getBasicThirdSys();
this.getList(); this.getList();
}, },
}; deleteDialog(rowId) {
this.$confirm("此操作将删除该产品信息, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
let dQuery = {
id: rowId,
};
deleteLog(dQuery)
.then((response) => {
this.loading = false;
if (response.code == 20000) {
this.$message.success("删除成功");
} else {
this.$message.error(response.message);
}
this.getList();
})
.catch(() => {
this.loading = false;
});
})
.catch(() => {
});
},
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.getList();
this.$message.success("文件上传成功,请稍后刷新查看!");
}
},
statusFilterType(status) {
const statusMap = {
0: "warning",
1: "warning",
2: "danger",
3: "success",
};
return statusMap[status];
},
},
mounted() {
},
components: {udiInfoSelect},
created() {
// this.getBasicThirdSys();
this.getList();
},
};
</script> </script>
<style> <style>
.itemTag { .itemTag {
float: left; float: left;
text-align: left; text-align: left;
margin-top: 10px; margin-top: 10px;
width: 100px; width: 100px;
} }
.text { .text {
font-size: 13px; font-size: 13px;
font-family: "Microsoft YaHei"; font-family: "Microsoft YaHei";
} }
.el-row { .el-row {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
} }
.el-col { .el-col {
border-radius: 4px; border-radius: 4px;
flex-wrap: wrap; flex-wrap: wrap;
} }
</style> </style>

@ -937,8 +937,8 @@ export default {
); );
this.loading = false; this.loading = false;
const eleLink = document.createElement('a'); const eleLink = document.createElement('a');
var timestamp = formatDate(new Date(), "yyyy-MM-dd_hh:mm") var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
eleLink.download = "仓库信息导出" + timestamp + ".udi"; eleLink.download = "BaseWarehouse_" + timestamp + ".UpperIn";
eleLink.style.display = 'none'; eleLink.style.display = 'none';
eleLink.href = url; eleLink.href = url;
document.body.appendChild(eleLink) document.body.appendChild(eleLink)

@ -1,293 +1,292 @@
<template> <template>
<div> <div>
<el-form :inline="true" :model="query" class="query-form" size="mini"> <el-form :inline="true" :model="query" class="query-form" size="mini">
<el-row> <el-row>
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-input v-model="filterQuery.genKey" placeholder="记录ID"></el-input> <el-input v-model="filterQuery.genKey" placeholder="记录ID"></el-input>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button-group style="display:flex;"> <el-button-group style="display:flex;">
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="getList"></el-button> <el-button type="primary" icon="search" @click="getList"></el-button>
<el-button type="primary" icon="search" @click="exportExcel"></el-button> <el-button type="primary" icon="search" @click="exportExcel"></el-button>
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-row> </el-row>
</el-form> </el-form>
<el-table <el-table
v-loading="loading" v-loading="loading"
:data="list" :data="list"
style="width: 100%" style="width: 100%"
@selection-change="handleSelectionChange" @selection-change="handleSelectionChange"
> >
<el-table-column label="序号" type="index"></el-table-column> <el-table-column label="序号" type="index"></el-table-column>
<el-table-column <el-table-column
label="记录ID" label="记录ID"
prop="genKey" prop="genKey"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="更新日期" label="更新日期"
prop="updateTime" prop="updateTime"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="状态" label="状态"
prop="status" prop="status"
show-overflow-tooltip show-overflow-tooltip
> >
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag <el-tag
:type="statusFilterType(scope.row.status)" :type="statusFilterType(scope.row.status)"
>{{ status[scope.row.status] }} >{{ status[scope.row.status] }}
</el-tag </el-tag
> >
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="下载次数" label="下载次数"
prop="dlCount" prop="dlCount"
show-overflow-tooltip show-overflow-tooltip
> >
</el-table-column> </el-table-column>
<el-table-column label="操作" fixed="right" width="160"> <el-table-column label="操作" fixed="right" width="160">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
type="text" type="text"
size="small" size="small"
@click.native.stop="downloadExcel(scope.row)" @click.native.stop="downloadExcel(scope.row)"
>下载 >下载
</el-button </el-button
> >
<el-button <el-button
type="text" type="text"
size="small" size="small"
@click.native.stop="deleteDialog(scope.row.id)" @click.native.stop="deleteDialog(scope.row.id)"
>删除 >删除
</el-button </el-button
> >
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-dialog <el-dialog
title="导出往来单位信息" title="导出往来单位信息"
:visible.sync="thrCorpSelectVisible" :visible.sync="thrCorpSelectVisible"
width="85%" width="85%"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
v-if="thrCorpSelectVisible" v-if="thrCorpSelectVisible"
> >
<thrCorpSelect :selectType="selectType" v-on:cancelDialog="cancelDialog" <thrCorpSelect :selectType="selectType" v-on:cancelDialog="cancelDialog"
></thrCorpSelect> ></thrCorpSelect>
</el-dialog> </el-dialog>
<el-pagination <el-pagination
:page-size="filterQuery.limit" :page-size="filterQuery.limit"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
layout="prev, pager, next" layout="prev, pager, next"
:total="total" :total="total"
></el-pagination> ></el-pagination>
</div> </div>
</template> </template>
<script> <script>
import {filterLog, deleteLog} from "../../api/thrsys/thrCorpsExport.js"; import {filterLog, deleteLog} from "../../api/thrsys/thrCorpsExport.js";
import thrCorpSelect from "./ThrCorpSelect"; import thrCorpSelect from "./ThrCorpSelect";
import axios from "axios"; import axios from "axios";
import {formatDate} from "@/utils/date";
export default { export default {
data() { data() {
return { return {
filterQuery: { filterQuery: {
genKey: null, genKey: null,
status: null, status: null,
fromType: null, fromType: null,
page: 1, page: 1,
limit: 20, limit: 20,
thirdSysFk: null, thirdSysFk: null,
}, },
selectType: 0, selectType: 0,
thrCorpSelectVisible: false, thrCorpSelectVisible: false,
list: [], list: [],
detailList: [], detailList: [],
thirdSys: [], thirdSys: [],
thirdSysDetail: null, thirdSysDetail: null,
total: 0, total: 0,
editQuery: null, editQuery: null,
fromStatus: { fromStatus: {
0: "产品信息", 0: "产品信息",
1: "库存信息", 1: "库存信息",
2: "异常第三方上传" 2: "异常第三方上传"
}, },
status: { status: {
0: "等待处理", 0: "等待处理",
1: "正在处理", 1: "正在处理",
2: "处理异常", 2: "处理异常",
3: "处理完成" 3: "处理完成"
}, },
uploadFileUrl: null, uploadFileUrl: null,
uploadData: { uploadData: {
thirdSys: "thirdId", thirdSys: "thirdId",
}, },
}; };
}, },
methods: { methods: {
onReset() { onReset() {
this.$router.push({ this.$router.push({
path: "", path: "",
}); });
this.filterQuery = { this.filterQuery = {
fromType: null, fromType: null,
genKey: null, genKey: null,
status: null, status: null,
page: 1, page: 1,
limit: 20, limit: 20,
thirdSysFk: null, thirdSysFk: null,
}; };
this.getList(); this.getList();
}, },
getList() { getList() {
this.loading = true; this.loading = true;
filterLog(this.filterQuery) filterLog(this.filterQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
if (response.code == 20000) { if (response.code == 20000) {
this.list = response.data.list || []; this.list = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
} else { } else {
this.$message.error(response.message); this.$message.error(response.message);
} }
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
this.list = []; this.list = [];
this.total = 0; this.total = 0;
}); });
}, },
exportExcel() { exportExcel() {
this.selectType = 0; this.selectType = 0;
this.thrCorpSelectVisible = true; this.thrCorpSelectVisible = true;
}, },
uploadSmp() { uploadSmp() {
this.selectType = 1; this.selectType = 1;
this.thrCorpSelectVisible = true; this.thrCorpSelectVisible = true;
}, },
downloadExcel(row) { downloadExcel(row) {
axios.get("./config.json").then(res => { axios.get("./config.json").then(res => {
let baseUrl = res.data.BASE_URL; let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/thrCorp/exportLog/download" + let href = baseUrl + "/udiwms/thrCorp/exportLog/download" +
"?genKey=" + row.genKey; "?genKey=" + row.genKey;
let a = document.createElement("a"); let a = document.createElement("a");
fetch(href) var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
.then((res) => res.blob()) fetch(href)
.then((blob) => { .then((res) => res.blob())
a.href = URL.createObjectURL(blob); .then((blob) => {
console.log(a.href); a.href = URL.createObjectURL(blob);
a.download = console.log(a.href);
row.filePath.split("/")[ a.download = "ThirdCorp_" + timestamp + ".UpperIn";
row.filePath.split("/").length - 1 document.body.appendChild(a);
]; // // a.click();
document.body.appendChild(a); this.getList();
a.click();
this.getList();
});
}); });
}, });
},
cancelDialog(val) { cancelDialog(val) {
if (val) { if (val) {
this.getList(); this.getList();
} }
this.thrCorpSelectVisible = false; this.thrCorpSelectVisible = false;
}, },
handleCurrentChange(val) { handleCurrentChange(val) {
this.filterQuery.page = val; this.filterQuery.page = val;
this.getList(); this.getList();
}, },
deleteDialog(rowId) { deleteDialog(rowId) {
this.$confirm("此操作将删除该往来单位信息, 是否继续?", "提示", { this.$confirm("此操作将删除该往来单位信息, 是否继续?", "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning", type: "warning",
}) })
.then(() => { .then(() => {
let dQuery = { let dQuery = {
id: rowId, id: rowId,
}; };
deleteLog(dQuery) deleteLog(dQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
if (response.code == 20000) { if (response.code == 20000) {
this.$message.success("删除成功"); this.$message.success("删除成功");
} else { } else {
this.$message.error(response.message); this.$message.error(response.message);
} }
this.getList(); this.getList();
})
.catch(() => {
this.loading = false;
});
}) })
.catch(() => { .catch(() => {
this.loading = false;
}); });
}, })
handleChange(response, files, fileList) { .catch(() => {
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("文件上传成功,请稍后刷新查看!");
}
},
statusFilterType(status) {
const statusMap = {
0: "warning",
1: "warning",
2: "danger",
3: "success",
};
return statusMap[status];
},
}, },
mounted() { 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("文件上传成功,请稍后刷新查看!");
}
}, },
components: {thrCorpSelect}, statusFilterType(status) {
created() { const statusMap = {
// this.getBasicThirdSys(); 0: "warning",
this.getList(); 1: "warning",
2: "danger",
3: "success",
};
return statusMap[status];
}, },
},
mounted() {
},
components: {thrCorpSelect},
created() {
// this.getBasicThirdSys();
this.getList();
},
}; };
</script> </script>
<style> <style>
.itemTag { .itemTag {
float: left; float: left;
text-align: left; text-align: left;
margin-top: 10px; margin-top: 10px;
width: 100px; width: 100px;
} }
.text { .text {
font-size: 13px; font-size: 13px;
font-family: "Microsoft YaHei"; font-family: "Microsoft YaHei";
} }
.el-row { .el-row {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
} }
.el-col { .el-col {
border-radius: 4px; border-radius: 4px;
flex-wrap: wrap; flex-wrap: wrap;
} }
</style> </style>

@ -98,6 +98,7 @@
import {filterLog, deleteLog} from "../../api/thrsys/thrOrderExport"; import {filterLog, deleteLog} from "../../api/thrsys/thrOrderExport";
import thrOrderSelect from "./ThrOrderSelect"; import thrOrderSelect from "./ThrOrderSelect";
import axios from "axios"; import axios from "axios";
import {formatDate} from "@/utils/date";
export default { export default {
data() { data() {
@ -185,15 +186,13 @@
let baseUrl = res.data.BASE_URL; let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/thrOrder/exportLog/download" + "?genKey=" + row.genKey; let href = baseUrl + "/udiwms/thrOrder/exportLog/download" + "?genKey=" + row.genKey;
let a = document.createElement("a"); let a = document.createElement("a");
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
fetch(href) fetch(href)
.then((res) => res.blob()) .then((res) => res.blob())
.then((blob) => { .then((blob) => {
a.href = URL.createObjectURL(blob); a.href = URL.createObjectURL(blob);
console.log(a.href); console.log(a.href);
a.download = a.download = "ThirdOrder_" + timestamp + ".UpperIn";
row.filePath.split("/")[
row.filePath.split("/").length - 1
]; // //
document.body.appendChild(a); document.body.appendChild(a);
a.click(); a.click();
this.getList(); this.getList();

@ -98,6 +98,7 @@
import {filterLog, deleteLog} from "../../api/thrsys/thrProductsExport.js"; import {filterLog, deleteLog} from "../../api/thrsys/thrProductsExport.js";
import thrProductsSelect from "./ThrProductsSelect"; import thrProductsSelect from "./ThrProductsSelect";
import axios from "axios"; import axios from "axios";
import {formatDate} from "@/utils/date";
export default { export default {
data() { data() {
return { return {
@ -182,15 +183,13 @@
let baseUrl = res.data.BASE_URL; let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/thrProducts/exportLog/download" + "?genKey=" + row.genKey; let href = baseUrl + "/udiwms/thrProducts/exportLog/download" + "?genKey=" + row.genKey;
let a = document.createElement("a"); let a = document.createElement("a");
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
fetch(href) fetch(href)
.then((res) => res.blob()) .then((res) => res.blob())
.then((blob) => { .then((blob) => {
a.href = URL.createObjectURL(blob); a.href = URL.createObjectURL(blob);
console.log(a.href); console.log(a.href);
a.download = a.download = "ThirdProduct_" + timestamp + ".UpperIn";
row.filePath.split("/")[
row.filePath.split("/").length - 1
];
document.body.appendChild(a); document.body.appendChild(a);
a.click(); a.click();
this.getList(); this.getList();

Loading…
Cancel
Save