|
|
@@ -5,7 +5,11 @@
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
|
|
<a-row :gutter="24">
|
|
|
|
|
|
-
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-item label="开票内容">
|
|
|
+ <a-input placeholder="请输入开票内容" v-model="queryParam.invoiceCategoryName"></a-input>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<a-col :md="6" :sm="8">
|
|
|
<a-form-item label="企业名称">
|
|
|
<a-input placeholder="请输入企业名称" v-model="queryParam.companyName"></a-input>
|
|
|
@@ -26,7 +30,11 @@
|
|
|
<a-input placeholder="请输入付款单号" v-model="queryParam.invoiceNumber"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
-
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-item label="开票状态">
|
|
|
+ <j-dict-select-tag v-model="queryParam.invoiceStatus" placeholder="请选择开票状态" dictCode="invoiceStatus"/>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<a-col :md="6" :sm="8">
|
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
|
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
|
|
@@ -116,6 +124,11 @@
|
|
|
dataIndex: 'applicationName'
|
|
|
},
|
|
|
{
|
|
|
+ title:'开票内容',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'invoiceCategoryName',
|
|
|
+ },
|
|
|
+ {
|
|
|
title:'企业名称',
|
|
|
align:"center",
|
|
|
dataIndex: 'companyName',
|
|
|
@@ -124,6 +137,11 @@
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
+ title:'发票明细',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'invoiceDetailNum',
|
|
|
+ },
|
|
|
+ {
|
|
|
title:'通过平台',
|
|
|
align:"center",
|
|
|
dataIndex: 'isThroughPlatform_dictText'
|
|
|
@@ -159,6 +177,29 @@
|
|
|
dataIndex: 'amount'
|
|
|
},
|
|
|
{
|
|
|
+ title:'开票状态',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'invoiceStatus',
|
|
|
+ customRender:function (text,record) {
|
|
|
+ return record.invoiceNumber?"已开票":"待处理"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title:'申请人',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'createBy'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title:'申请时间',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'createTime'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title:'开票人',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'uploadBy'
|
|
|
+ },
|
|
|
+ {
|
|
|
title:'开票时间',
|
|
|
align:"center",
|
|
|
dataIndex: 'uploadTime'
|
|
|
@@ -168,6 +209,7 @@
|
|
|
dataIndex: 'action',
|
|
|
align:"center",
|
|
|
fixed:"right",
|
|
|
+ width:147,
|
|
|
scopedSlots: { customRender: 'action' }
|
|
|
}
|
|
|
],
|