mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
WIP: transactions by customers report.
This commit is contained in:
@@ -3,6 +3,7 @@ import { INumberFormatQuery } from './FinancialStatements';
|
||||
export interface ITransactionsByCustomersAmount {
|
||||
amount: number;
|
||||
formattedAmount: string;
|
||||
currencyCode: string;
|
||||
}
|
||||
|
||||
export interface ITransactionsByCustomersTransaction {
|
||||
@@ -10,9 +11,11 @@ export interface ITransactionsByCustomersTransaction {
|
||||
credit: ITransactionsByCustomersAmount;
|
||||
debit: ITransactionsByCustomersAmount;
|
||||
runningBalance: ITransactionsByCustomersAmount;
|
||||
currencyCode: string;
|
||||
referenceNumber: string;
|
||||
transactionNumber: string;
|
||||
}
|
||||
createdAt: string|Date,
|
||||
};
|
||||
|
||||
export interface ITransactionsByCustomersCustomer {
|
||||
customerName: string;
|
||||
@@ -29,9 +32,7 @@ export interface ITransactionsByCustomersFilter {
|
||||
noneZero: boolean;
|
||||
}
|
||||
|
||||
export interface ITransactionsByCustomersData {
|
||||
customers: ITransactionsByCustomersCustomer[];
|
||||
}
|
||||
export type ITransactionsByCustomersData = ITransactionsByCustomersCustomer[];
|
||||
|
||||
export interface ITransactionsByCustomersStatement {
|
||||
data: ITransactionsByCustomersData;
|
||||
|
||||
Reference in New Issue
Block a user