mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 11:50:31 +00:00
37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
import {
|
|
ITransactionsByContactsAmount,
|
|
ITransactionsByContactsTransaction,
|
|
ITransactionsByContactsFilter,
|
|
} from './TransactionsByContacts';
|
|
|
|
export interface ITransactionsByCustomersAmount
|
|
extends ITransactionsByContactsAmount {}
|
|
|
|
export interface ITransactionsByCustomersTransaction
|
|
extends ITransactionsByContactsTransaction {}
|
|
|
|
export interface ITransactionsByCustomersCustomer {
|
|
customerName: string;
|
|
openingBalance: ITransactionsByCustomersAmount;
|
|
closingBalance: ITransactionsByCustomersAmount;
|
|
transactions: ITransactionsByCustomersTransaction[];
|
|
}
|
|
|
|
export interface ITransactionsByCustomersFilter
|
|
extends ITransactionsByContactsFilter {
|
|
customersIds: number[];
|
|
}
|
|
|
|
export type ITransactionsByCustomersData = ITransactionsByCustomersCustomer[];
|
|
|
|
export interface ITransactionsByCustomersStatement {
|
|
data: ITransactionsByCustomersData;
|
|
}
|
|
|
|
export interface ITransactionsByCustomersService {
|
|
transactionsByCustomers(
|
|
tenantId: number,
|
|
filter: ITransactionsByCustomersFilter
|
|
): Promise<ITransactionsByCustomersStatement>;
|
|
}
|