|
|
|
@ -138,7 +138,9 @@
|
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" highlight-current-row
|
|
|
|
|
border
|
|
|
|
|
@row-click="handleSelectionChange">
|
|
|
|
|
@current-change="handleSelectionChange"
|
|
|
|
|
:default-sort="defaultSort"
|
|
|
|
|
@sort-change="handleSortChange">
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="登记状态" prop="checkStatus" width="100">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
@ -160,9 +162,13 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="送货单位" prop="fromName" width="220" v-if="showSup">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime" width="150" show-overflow-tooltip>
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime" width="150" show-overflow-tooltip
|
|
|
|
|
sortable="custom"
|
|
|
|
|
:sort-orders="['ascending', 'descending']" >
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="审核时间" prop="auditTime" width="150" show-overflow-tooltip>
|
|
|
|
|
<el-table-column label="审核时间" prop="auditTime" width="150" show-overflow-tooltip
|
|
|
|
|
sortable="custom"
|
|
|
|
|
:sort-orders="['ascending', 'descending']" >
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="采购部门" prop="deptName" width="120" v-if="enableDept">
|
|
|
|
@ -223,7 +229,7 @@
|
|
|
|
|
<el-tab-pane>
|
|
|
|
|
<span slot="label">单据 {{ currentRow.billNo }}-单据详情</span>
|
|
|
|
|
<el-table v-loading="bizDetailLoading" :data="codeDetailList" style="width: 100%" border
|
|
|
|
|
@row-click="BizDetail"
|
|
|
|
|
@current-change="BizDetail"
|
|
|
|
|
row-key="id" highlight-current-row
|
|
|
|
|
>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
@ -454,6 +460,7 @@
|
|
|
|
|
<checkInvoice
|
|
|
|
|
:closeDialog="closecheckInvoice"
|
|
|
|
|
:input="inputInv"
|
|
|
|
|
:getOrderDetails="getOrderDetails"
|
|
|
|
|
></checkInvoice>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
@ -545,6 +552,7 @@ export default {
|
|
|
|
|
name: "IoCheckSuccessOrder",
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
defaultSort: {prop: 'createTime', order: 'desc'},
|
|
|
|
|
savebillno: null,
|
|
|
|
|
invoiceRow: [],
|
|
|
|
|
inputInv: [],
|
|
|
|
@ -828,6 +836,9 @@ export default {
|
|
|
|
|
deleteById(row)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
if(response.data.length == 0){
|
|
|
|
|
this.getList();
|
|
|
|
|
}
|
|
|
|
|
this.getBizDetailListInv(this.subRow);
|
|
|
|
|
this.$message({
|
|
|
|
|
type: "success",
|
|
|
|
@ -869,6 +880,18 @@ export default {
|
|
|
|
|
this.resultDetailList = [];
|
|
|
|
|
this.resultTotal = 0;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleSortChange(column, prop, order) {
|
|
|
|
|
if (column.order === 'descending') {
|
|
|
|
|
this.filterQuery.sort = 'desc'
|
|
|
|
|
} else {
|
|
|
|
|
this.filterQuery.sort = 'asc'
|
|
|
|
|
}
|
|
|
|
|
this.filterQuery.orderBy = column.prop;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取订单列表
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
@ -996,7 +1019,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
this.codeQuery.orderIdFk = this.currentRow.billNo;
|
|
|
|
|
this.codeDetailLoading = true;
|
|
|
|
|
|
|
|
|
|
this.codeDetailList=[];
|
|
|
|
|
filterBizOrderList(this.codeQuery).then((res) => {
|
|
|
|
|
this.codeDetailLoading = false;
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|