|
|
|
@ -99,25 +99,49 @@
|
|
|
|
|
@current-change="handleSelectionChange">
|
|
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="单据号" prop="billNo" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="来源订单号" prop="corpOrderId" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="来源" prop="fromType">
|
|
|
|
|
<el-table-column label="单据号" prop="billNo" show-overflow-tooltip width="180"></el-table-column>
|
|
|
|
|
<el-table-column label="单据类型" prop="billTypeName" width="150"></el-table-column>
|
|
|
|
|
<el-table-column label="往来单位" prop="fromName" width="220">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime" show-overflow-tooltip width="150"
|
|
|
|
|
sortable="custom"
|
|
|
|
|
:sort-orders="['ascending', 'descending']">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ fromTypeMap[scope.row.fromType] }}</span>
|
|
|
|
|
<i class="el-icon-time"></i>
|
|
|
|
|
<span>{{ scope.row.createTime }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="往来单位" prop="fromCorpName" width="220">
|
|
|
|
|
|
|
|
|
|
<el-table-column label="审核时间" prop="auditTime" show-overflow-tooltip width="150"
|
|
|
|
|
sortable="custom"
|
|
|
|
|
:sort-orders="['ascending', 'descending']">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<i class="el-icon-time"></i>
|
|
|
|
|
<span>{{ scope.row.auditTime }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="当前部门" prop="deptName" width="120">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="所属部门" prop="deptName" width="120">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="当前仓库" prop="invName" width="120">
|
|
|
|
|
<el-table-column label="所属仓库" prop="invName" width="120">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="所属科室" prop="deptName" width="120" v-if="enableDept">
|
|
|
|
|
|
|
|
|
|
<el-table-column label="审核人" prop="reviewUserName" width="120">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime" show-overflow-tooltip>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="来源单号" prop="corpOrderId" show-overflow-tooltip width="180"></el-table-column>
|
|
|
|
|
<el-table-column label="来源" prop="fromType" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<i class="el-icon-time"></i>
|
|
|
|
|
<span>{{ scope.row.createTime }}</span>
|
|
|
|
|
<span>{{ fromTypeMap[scope.row.fromType] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="审核状态" prop="status" width="100">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="statusAuditFilterType(scope.row.status)">{{
|
|
|
|
|
checkStatus[scope.row.status]
|
|
|
|
|
}}
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="提交状态" prop="exportStatus" width="100">
|
|
|
|
@ -345,6 +369,7 @@ export default {
|
|
|
|
|
endTime: null,
|
|
|
|
|
billNo: null,
|
|
|
|
|
submitStatus: null,
|
|
|
|
|
vueType: "thirdUpload",
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10
|
|
|
|
|
},
|
|
|
|
@ -436,6 +461,17 @@ export default {
|
|
|
|
|
1: "已提交",
|
|
|
|
|
2: "提交失败"
|
|
|
|
|
},
|
|
|
|
|
checkStatus: {
|
|
|
|
|
1: "草稿",
|
|
|
|
|
2: "等待处理",
|
|
|
|
|
3: "等待校验",
|
|
|
|
|
4: "处理异常",
|
|
|
|
|
5: "待核对",
|
|
|
|
|
6: "校验异常",
|
|
|
|
|
7: "已审核",
|
|
|
|
|
8: "审核拒绝",
|
|
|
|
|
9: "正在处理", 10: "待审核", 11: "待配货",
|
|
|
|
|
},
|
|
|
|
|
loading: false,
|
|
|
|
|
list: [],
|
|
|
|
|
total: 0,
|
|
|
|
@ -472,6 +508,7 @@ export default {
|
|
|
|
|
corpName: null,
|
|
|
|
|
invCode: this.$store.getters.locInvCode,
|
|
|
|
|
startTime: null,
|
|
|
|
|
vueType: "thirdUpload",
|
|
|
|
|
endTime: null,
|
|
|
|
|
billNo: null,
|
|
|
|
|
submitStatus: null,
|
|
|
|
@ -633,6 +670,7 @@ export default {
|
|
|
|
|
getBusType() {
|
|
|
|
|
let params = {
|
|
|
|
|
code: this.filterQuery.invCode,
|
|
|
|
|
vueType: "thirdUpload",
|
|
|
|
|
enabled: true
|
|
|
|
|
};
|
|
|
|
|
getLocalJoinByUser(params).then((res) => {
|
|
|
|
@ -640,6 +678,15 @@ export default {
|
|
|
|
|
this.onSubmit();
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
statusAuditFilterType(status) {
|
|
|
|
|
const statusMap = {
|
|
|
|
|
5: "warning",
|
|
|
|
|
1: "warning",
|
|
|
|
|
6: "danger",
|
|
|
|
|
7: "success",
|
|
|
|
|
};
|
|
|
|
|
return statusMap[status];
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
filters: {
|
|
|
|
|
statusFilterType(status) {
|
|
|
|
|