多次出库bug修改

pro
郑明梁 2 years ago
parent 1c760ada1d
commit 58eb5b87fa

@ -321,6 +321,7 @@ export default {
"12": "采购计划", "12": "采购计划",
"13": "领用单据", "13": "领用单据",
"14": "第三方系统单据", "14": "第三方系统单据",
"18": "多次出入库单据",
}, },
deleteData: { deleteData: {
billNo: "", billNo: "",

@ -165,7 +165,7 @@ export default {
}, },
statusMap: { statusMap: {
0: "草稿", 0: "草稿",
1: "已提交", 1: "未审核",
}, },
orderMutiVisible: false, orderMutiVisible: false,

@ -77,6 +77,11 @@
<el-table-column label="失效日期" prop="expireDate"></el-table-column> <el-table-column label="失效日期" prop="expireDate"></el-table-column>
<el-table-column label="创建人" prop="createUserName"></el-table-column> <el-table-column label="创建人" prop="createUserName"></el-table-column>
<el-table-column label="创建时间" prop="createTime"></el-table-column> <el-table-column label="创建时间" prop="createTime"></el-table-column>
<el-table-column label="状态" prop="status">
<template slot-scope="scope">
<el-tag :type="statusFilterType(scope.row.status)">{{ statusMap[scope.row.status] }}</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" width="120px"> <el-table-column label="操作" width="120px">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="text" size="small" @click.native.stop="auditDialog(scope.row)">审核</el-button> <el-button type="text" size="small" @click.native.stop="auditDialog(scope.row)">审核</el-button>
@ -158,6 +163,10 @@ export default {
loading: false, loading: false,
list: [], list: [],
formName: "审核使用出库", formName: "审核使用出库",
statusMap: {
0: "草稿",
1: "未审核",
},
orderMutiVisible: false, orderMutiVisible: false,
actDateRange: [], actDateRange: [],
detailList: [], detailList: [],
@ -195,6 +204,15 @@ export default {
}; };
}, },
methods: { methods: {
statusFilterType(status) {
const statusMap = {
0: "warning",
1: "warning",
2: "danger",
3: "success",
};
return statusMap[status];
},
onReset(){ onReset(){
this.filterQuery={ this.filterQuery={
udiCode: null, udiCode: null,

@ -167,7 +167,8 @@ export default {
formName: "审核使用出库", formName: "审核使用出库",
statusMap: { statusMap: {
0: "草稿", 0: "草稿",
1: "已提交", 1: "未审核",
2: "已审核",
}, },
orderMutiVisible: false, orderMutiVisible: false,
actDateRange: [], actDateRange: [],

Loading…
Cancel
Save