This commit is contained in:
Taric Xin
2022-02-28 19:12:43 +08:00
parent 6e15440832
commit a0827b825a
7 changed files with 37 additions and 32 deletions

View File

@ -114,7 +114,7 @@
</ng-template>
</st>
</nz-tab>
<nz-tab nzTitle="收款信息">
<nz-tab nzTitle="收款信息" *ngIf="!textStatus">
<st #st [scroll]="{ x: '2000px' }" [data]="costInfo?.ficoAhxLList" [columns]="columns.collection"
[page]="{ show: false }" [loading]="service.http.loading" [scroll]="{ x: '1200px', y: '370px' }">
<ng-template st-row="ahxmoney" let-item let-index="index">

View File

@ -54,10 +54,10 @@ export class CostManagementDetailComponent implements OnInit {
{ title: '费用科目', index: 'feeSubName', className: 'text-left', width: 200 },
{
title: '税率',
index: 'hrvatrate',
index: 'arvatrate',
className: 'text-right',
width: 200,
format: item => `${item.hrvatrate ? ((item.hrvatrate as number) * 100).toFixed(2) : 0}%`
format: item => `${item.arvatrate ? ((item.arvatrate as number) * 100).toFixed(2) : 0}%`
},
{ title: '费用金额', render: 'hrvatmoney', className: 'text-right', width: 200 },
{ title: '收/付款金额', render: 'armoney', className: 'text-right', width: 200 },