mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
35 lines
828 B
TypeScript
35 lines
828 B
TypeScript
import {
|
|
IAgingPeriod,
|
|
IAgingSummaryQuery,
|
|
IAgingSummaryTotal,
|
|
IAgingSummaryContact,
|
|
IAgingSummaryData,
|
|
} from './AgingReport';
|
|
import { IFinancialTable } from './Table';
|
|
|
|
export interface IARAgingSummaryQuery extends IAgingSummaryQuery {
|
|
customersIds: number[];
|
|
}
|
|
|
|
export interface IARAgingSummaryCustomer extends IAgingSummaryContact {
|
|
customerName: string;
|
|
}
|
|
|
|
export interface IARAgingSummaryTotal extends IAgingSummaryTotal {}
|
|
|
|
export interface IARAgingSummaryData extends IAgingSummaryData {
|
|
customers: IARAgingSummaryCustomer[];
|
|
}
|
|
|
|
export type IARAgingSummaryColumns = IAgingPeriod[];
|
|
|
|
export interface IARAgingSummaryMeta {
|
|
organizationName: string;
|
|
baseCurrency: string;
|
|
}
|
|
|
|
export interface IARAgingSummaryTable extends IFinancialTable {
|
|
meta: IARAgingSummaryMeta;
|
|
query: IARAgingSummaryQuery;
|
|
}
|