mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-25 00:59:50 +00:00
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
import {
|
|
IAPAgingSummaryData,
|
|
IAgingSummaryQuery,
|
|
ITableColumn,
|
|
ITableColumnAccessor,
|
|
ITableRow,
|
|
} from '@/interfaces';
|
|
import AgingSummaryTable from './AgingSummaryTable';
|
|
|
|
export default class APAgingSummaryTable extends AgingSummaryTable {
|
|
readonly report: IAPAgingSummaryData;
|
|
|
|
/**
|
|
* Constructor method.
|
|
* @param {IARAgingSummaryData} data
|
|
* @param {IAgingSummaryQuery} query
|
|
* @param {any} i18n
|
|
*/
|
|
constructor(data: IAPAgingSummaryData, query: IAgingSummaryQuery, i18n: any) {
|
|
super(data, query, i18n);
|
|
}
|
|
|
|
/**
|
|
* Retrieves the contacts table rows.
|
|
* @returns {ITableRow[]}
|
|
*/
|
|
get contactsRows(): ITableRow[] {
|
|
return this.contactsNodes(this.report.vendors);
|
|
}
|
|
|
|
/**
|
|
* Contact name node accessor.
|
|
* @returns {ITableColumnAccessor}
|
|
*/
|
|
get contactNameNodeAccessor(): ITableColumnAccessor {
|
|
return { key: 'vendor_name', accessor: 'vendorName' };
|
|
}
|
|
|
|
/**
|
|
* Retrieves the contact name table column.
|
|
* @returns {ITableColumn}
|
|
*/
|
|
contactNameTableColumn = (): ITableColumn => {
|
|
return { label: 'Vendor name', key: 'vendor_name' };
|
|
};
|
|
}
|