库存,单据 ,根据当前用户,当前库存区分等
parent
fd900330c8
commit
ba84a1f86e
@ -0,0 +1,9 @@
|
|||||||
|
import axios from "@/utils/axios";
|
||||||
|
|
||||||
|
export function inserThrOrderWeb(query) {
|
||||||
|
return axios({
|
||||||
|
url: "/udiwms/thrsys/order/insertWeb",
|
||||||
|
method: "post",
|
||||||
|
data: query
|
||||||
|
});
|
||||||
|
}
|
@ -1,304 +1,303 @@
|
|||||||
<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 type="primary" icon="search" @click="uploadSmp">同步至UDI管理系统</el-button>
|
<el-button type="primary" icon="search" @click="uploadSmp">同步至UDI管理系统</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 label="类型" prop="enabled">
|
<el-table-column label="类型" prop="enabled">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{ typeMap[scope.row.type] }}</span>
|
<span>{{ typeMap[scope.row.type] }}</span>
|
||||||
</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
|
||||||
v-if="scope.row.type==1"
|
v-if="scope.row.type==1"
|
||||||
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="导出往来单位信息"
|
||||||
:close-on-click-modal="false"
|
:close-on-click-modal="false"
|
||||||
:close-on-press-escape="false"
|
:close-on-press-escape="false"
|
||||||
:visible.sync="corpImportDetailVisible"
|
:visible.sync="corpImportDetailVisible"
|
||||||
width="85%"
|
width="85%"
|
||||||
v-if="corpImportDetailVisible"
|
v-if="corpImportDetailVisible"
|
||||||
>
|
>
|
||||||
<corpSelect :selectType="selectType" v-on:cancelDialog="cancelDialog"
|
<corpSelect :selectType="selectType" v-on:cancelDialog="cancelDialog"
|
||||||
></corpSelect>
|
></corpSelect>
|
||||||
</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/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 axios from "../../utils/axios";
|
import {formatDate} from "@/utils/date";
|
||||||
export default {
|
// import axios from "../../utils/axios";
|
||||||
data() {
|
export default {
|
||||||
return {
|
data() {
|
||||||
filterQuery: {
|
return {
|
||||||
genKey: null,
|
filterQuery: {
|
||||||
status: null,
|
genKey: null,
|
||||||
fromType: null,
|
status: null,
|
||||||
page: 1,
|
fromType: null,
|
||||||
limit: 20,
|
page: 1,
|
||||||
// type: 1,
|
limit: 20,
|
||||||
thirdSysFk: null,
|
// type: 1,
|
||||||
},
|
thirdSysFk: null,
|
||||||
selectType: 0,
|
},
|
||||||
corpImportDetailVisible: false,
|
selectType: 0,
|
||||||
list: [],
|
corpImportDetailVisible: false,
|
||||||
detailList: [],
|
list: [],
|
||||||
thirdSys: [],
|
detailList: [],
|
||||||
thirdSysDetail: null,
|
thirdSys: [],
|
||||||
total: 0,
|
thirdSysDetail: null,
|
||||||
editQuery: null,
|
total: 0,
|
||||||
fromStatus: {
|
editQuery: null,
|
||||||
0: "产品信息",
|
fromStatus: {
|
||||||
1: "库存信息",
|
0: "产品信息",
|
||||||
2: "异常第三方上传"
|
1: "库存信息",
|
||||||
},
|
2: "异常第三方上传"
|
||||||
status: {
|
},
|
||||||
0: "等待处理",
|
status: {
|
||||||
1: "正在处理",
|
0: "等待处理",
|
||||||
2: "处理异常",
|
1: "正在处理",
|
||||||
3: "处理完成"
|
2: "处理异常",
|
||||||
},
|
3: "处理完成"
|
||||||
typeMap: {
|
},
|
||||||
1: '文件导出',
|
typeMap: {
|
||||||
2: '网络同步',
|
1: '文件导出',
|
||||||
|
2: '网络同步',
|
||||||
|
|
||||||
},
|
},
|
||||||
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,
|
||||||
// type: 1,
|
// type: 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;
|
||||||
this.list = response.data.list || [];
|
this.list = response.data.list || [];
|
||||||
this.total = response.data.total || 0;
|
this.total = response.data.total || 0;
|
||||||
})
|
})
|
||||||
.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.corpImportDetailVisible = true;
|
this.corpImportDetailVisible = true;
|
||||||
},
|
},
|
||||||
uploadSmp() {
|
uploadSmp() {
|
||||||
this.selectType = 1;
|
this.selectType = 1;
|
||||||
this.corpImportDetailVisible = true;
|
this.corpImportDetailVisible = 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/corps/exportLog/download" +
|
let href = baseUrl + "/udiwms/corps/exportLog/download" +
|
||||||
"?genKey=" + row.genKey;
|
"?genKey=" + row.genKey;
|
||||||
console.log("href = " + href);
|
console.log("href = " + href);
|
||||||
let a = document.createElement("a");
|
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss");
|
||||||
fetch(href)
|
let a = document.createElement("a");
|
||||||
.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 = "BaseCorp_" + timestamp + ".LowerIn";
|
||||||
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) {
|
||||||
this.corpImportDetailVisible = false;
|
this.corpImportDetailVisible = false;
|
||||||
if (val) {
|
if (val) {
|
||||||
this.getList();
|
this.getList();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
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.getList();
|
|
||||||
})
|
|
||||||
.catch(() => {
|
|
||||||
this.loading = false;
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.catch(() => {
|
|
||||||
});
|
|
||||||
},
|
|
||||||
handleChange(response, files, fileList) {
|
|
||||||
console.log(response);
|
|
||||||
if (response.code != 20000) {
|
|
||||||
this.$message.error(response.message);
|
this.$message.error(response.message);
|
||||||
} else {
|
}
|
||||||
console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
|
this.getList();
|
||||||
this.$message.success("文件上传成功,请稍后刷新查看!");
|
})
|
||||||
}
|
.catch(() => {
|
||||||
},
|
this.loading = false;
|
||||||
statusFilterType(status) {
|
});
|
||||||
const statusMap = {
|
})
|
||||||
0: "warning",
|
.catch(() => {
|
||||||
1: "warning",
|
});
|
||||||
2: "danger",
|
},
|
||||||
3: "success",
|
handleChange(response, files, fileList) {
|
||||||
};
|
console.log(response);
|
||||||
return statusMap[status];
|
if (response.code != 20000) {
|
||||||
},
|
this.$message.error(response.message);
|
||||||
},
|
} else {
|
||||||
mounted() {
|
console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
|
||||||
},
|
this.$message.success("文件上传成功,请稍后刷新查看!");
|
||||||
components: {corpSelect},
|
}
|
||||||
created() {
|
},
|
||||||
// this.getBasicThirdSys();
|
statusFilterType(status) {
|
||||||
this.getList();
|
const statusMap = {
|
||||||
},
|
0: "warning",
|
||||||
};
|
1: "warning",
|
||||||
|
2: "danger",
|
||||||
|
3: "success",
|
||||||
|
};
|
||||||
|
return statusMap[status];
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
},
|
||||||
|
components: {corpSelect},
|
||||||
|
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>
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue