85 lines
1.9 KiB
TypeScript
85 lines
1.9 KiB
TypeScript
/* eslint-disable canonical/sort-keys */
|
|
import type { ResultPayment } from '@/stores/results/types';
|
|
import type { ColumnsType } from 'antd/lib/table';
|
|
|
|
export const columns: ColumnsType<ResultPayment> = [
|
|
{
|
|
key: 'num',
|
|
dataIndex: 'num',
|
|
title: '#',
|
|
width: '10%',
|
|
},
|
|
{
|
|
key: 'paymentSum',
|
|
dataIndex: 'paymentSum',
|
|
title: 'Сумма платежа',
|
|
render: Intl.NumberFormat('ru', {
|
|
style: 'currency',
|
|
currency: 'RUB',
|
|
}).format,
|
|
},
|
|
{
|
|
key: 'ndsCompensation',
|
|
dataIndex: 'ndsCompensation',
|
|
title: 'НДС к возмещению',
|
|
render: Intl.NumberFormat('ru', {
|
|
style: 'currency',
|
|
currency: 'RUB',
|
|
}).format,
|
|
},
|
|
{
|
|
key: 'redemptionAmount',
|
|
dataIndex: 'redemptionAmount',
|
|
title: 'Сумма досрочного выкупа',
|
|
render: Intl.NumberFormat('ru', {
|
|
style: 'currency',
|
|
currency: 'RUB',
|
|
}).format,
|
|
},
|
|
{
|
|
key: '_piColumn',
|
|
dataIndex: '_piColumn',
|
|
title: 'PI Column',
|
|
render: Intl.NumberFormat('ru', {
|
|
style: 'currency',
|
|
currency: 'RUB',
|
|
}).format,
|
|
},
|
|
{
|
|
key: '_cashflowMsfoWithCfColumn',
|
|
dataIndex: '_cashflowMsfoWithCfColumn',
|
|
title: 'CashflowMSFOWithCF Column',
|
|
render: Intl.NumberFormat('ru', {
|
|
style: 'currency',
|
|
currency: 'RUB',
|
|
}).format,
|
|
},
|
|
{
|
|
key: '_creditPaymentColumn',
|
|
dataIndex: '_creditPaymentColumn',
|
|
title: 'CreditPayment Column',
|
|
render: Intl.NumberFormat('ru', {
|
|
style: 'currency',
|
|
currency: 'RUB',
|
|
}).format,
|
|
},
|
|
{
|
|
key: '_cashflowMsfoColumn',
|
|
dataIndex: '_cashflowMsfoColumn',
|
|
title: 'CashflowMSFO Column',
|
|
render: Intl.NumberFormat('ru', {
|
|
style: 'currency',
|
|
currency: 'RUB',
|
|
}).format,
|
|
},
|
|
{
|
|
key: '_interestColumn',
|
|
dataIndex: '_interestColumn',
|
|
title: 'Interest Column',
|
|
render: Intl.NumberFormat('ru', {
|
|
style: 'currency',
|
|
currency: 'RUB',
|
|
}).format,
|
|
},
|
|
];
|