This commit is contained in:
weiyu
2022-04-21 10:00:29 +08:00
parent e5ecb660e1
commit f7752b939e
2 changed files with 5 additions and 1 deletions

View File

@ -46,6 +46,10 @@
<ng-template st-row="invoiceType" let-item let-index="index"> <ng-template st-row="invoiceType" let-item let-index="index">
<span>增值税专用发票</span> <span>增值税专用发票</span>
</ng-template> </ng-template>
<ng-template st-row="sts" let-item let-index="index">
<span *ngIf="item.sts==='1'">有效</span>
<span *ngIf="item.sts==='2'">作废</span>
</ng-template>
<ng-template st-row="orderAmount" let-item let-index="index"> <ng-template st-row="orderAmount" let-item let-index="index">
<div class="text-right">{{item?.orderAmount | currency }}</div> <div class="text-right">{{item?.orderAmount | currency }}</div>
</ng-template> </ng-template>

View File

@ -231,7 +231,7 @@ export class TaxManagementInvoiceReportingComponent implements OnInit {
{ title: '价税合计', index: 'vatmoney', className: 'text-center', width: '180px' }, { title: '价税合计', index: 'vatmoney', className: 'text-center', width: '180px' },
{ title: '开票日期', index: 'invoicedate', className: 'text-center', width: '180px' }, { title: '开票日期', index: 'invoicedate', className: 'text-center', width: '180px' },
{ title: '发票所属月份', index: 'invoicemonth', className: 'text-center', width: '250px' }, { title: '发票所属月份', index: 'invoicemonth', className: 'text-center', width: '250px' },
{ title: '发票状态', index: 'sts', className: 'text-center', width: '200px' }, { title: '发票状态', index: 'sts', render:'sts', className: 'text-center', width: '200px' },
{ title: '上传日期', index: 'uoloadDate', className: 'text-center', width: '200px' }, { title: '上传日期', index: 'uoloadDate', className: 'text-center', width: '200px' },
]; ];
} }