mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
37 lines
839 B
TypeScript
37 lines
839 B
TypeScript
import {
|
|
IAgingPeriod,
|
|
IAgingPeriodTotal,
|
|
IAgingAmount,
|
|
IAgingSummaryQuery,
|
|
IAgingSummaryTotal,
|
|
IAgingSummaryContact,
|
|
IAgingSummaryData,
|
|
} from './AgingReport';
|
|
import { INumberFormatQuery } from './FinancialStatements';
|
|
|
|
export interface IAPAgingSummaryQuery extends IAgingSummaryQuery {
|
|
vendorsIds: number[];
|
|
}
|
|
|
|
export interface IAPAgingSummaryVendor extends IAgingSummaryContact {
|
|
vendorName: string;
|
|
}
|
|
|
|
export interface IAPAgingSummaryTotal extends IAgingSummaryTotal {}
|
|
|
|
export interface IAPAgingSummaryData extends IAgingSummaryData {
|
|
vendors: IAPAgingSummaryVendor[];
|
|
}
|
|
|
|
export type IAPAgingSummaryColumns = IAgingPeriod[];
|
|
|
|
export interface IARAgingSummaryMeta {
|
|
baseCurrency: string;
|
|
organizationName: string;
|
|
}
|
|
|
|
export interface IAPAgingSummaryMeta {
|
|
baseCurrency: string;
|
|
organizationName: string;
|
|
}
|