mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
39 lines
935 B
TypeScript
39 lines
935 B
TypeScript
import {
|
|
IARAgingSummaryData,
|
|
IAgingSummaryData,
|
|
IAgingSummaryQuery,
|
|
ITableColumnAccessor,
|
|
ITableRow,
|
|
} from '@/interfaces';
|
|
import AgingSummaryTable from './AgingSummaryTable';
|
|
|
|
export default class ARAgingSummaryTable extends AgingSummaryTable {
|
|
readonly report: IARAgingSummaryData;
|
|
|
|
/**
|
|
* Constructor method.
|
|
* @param {IARAgingSummaryData} data
|
|
* @param {IAgingSummaryQuery} query
|
|
* @param {any} i18n
|
|
*/
|
|
constructor(data: IARAgingSummaryData, query: IAgingSummaryQuery, i18n: any) {
|
|
super(data, query, i18n);
|
|
}
|
|
|
|
/**
|
|
* Retrieves the contacts table rows.
|
|
* @returns {ITableRow[]}
|
|
*/
|
|
get contactsRows(): ITableRow[] {
|
|
return this.contactsNodes(this.report.customers);
|
|
}
|
|
|
|
/**
|
|
* Contact name node accessor.
|
|
* @returns {ITableColumnAccessor}
|
|
*/
|
|
get contactNameNodeAccessor(): ITableColumnAccessor {
|
|
return { key: 'customer_name', accessor: 'customerName' };
|
|
}
|
|
}
|