mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
feat: AR/AP aging summary report.
This commit is contained in:
@@ -8,8 +8,8 @@ export interface IARAgingSummaryQuery {
|
||||
agingDaysBefore: number;
|
||||
agingPeriods: number;
|
||||
numberFormat: {
|
||||
noCents: number;
|
||||
divideOn1000: number;
|
||||
noCents: boolean;
|
||||
divideOn1000: boolean;
|
||||
};
|
||||
customersIds: number[];
|
||||
noneZero: boolean;
|
||||
@@ -17,13 +17,18 @@ export interface IARAgingSummaryQuery {
|
||||
|
||||
export interface IARAgingSummaryCustomer {
|
||||
customerName: string;
|
||||
current: IAgingPeriodTotal,
|
||||
aging: (IAgingPeriodTotal & IAgingPeriod)[];
|
||||
total: IAgingPeriodTotal;
|
||||
}
|
||||
|
||||
export interface IARAgingSummaryTotal {
|
||||
current: IAgingPeriodTotal,
|
||||
aging: (IAgingPeriodTotal & IAgingPeriod)[],
|
||||
};
|
||||
export interface IARAgingSummaryData {
|
||||
customers: IARAgingSummaryCustomer[],
|
||||
total: (IAgingPeriodTotal & IAgingPeriod)[]
|
||||
total: IARAgingSummaryTotal,
|
||||
}
|
||||
|
||||
export type IARAgingSummaryColumns = IAgingPeriod[];
|
||||
Reference in New Issue
Block a user