mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 06:40:31 +00:00
43 lines
1009 B
TypeScript
43 lines
1009 B
TypeScript
import {
|
|
IAgingPeriod,
|
|
IAgingPeriodTotal,
|
|
IAgingAmount,
|
|
IAgingSummaryQuery,
|
|
IAgingSummaryTotal,
|
|
IAgingSummaryContact,
|
|
IAgingSummaryData,
|
|
} from './AgingReport';
|
|
import { INumberFormatQuery } from './FinancialStatements';
|
|
import { IFinancialTable } from './Table';
|
|
|
|
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;
|
|
}
|
|
|
|
export interface IAPAgingSummaryTable extends IFinancialTable {
|
|
query: IAPAgingSummaryQuery;
|
|
meta: IAPAgingSummaryMeta;
|
|
}
|