mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 15:07:33 +08:00
transaction reconciliation statement supports sorting by account name and category name on desktop version
This commit is contained in:
@@ -690,6 +690,22 @@ export interface TransactionReconciliationStatementResponse {
|
||||
readonly closingBalance: number;
|
||||
}
|
||||
|
||||
export interface TransactionReconciliationStatementResponseItemWithInfo extends TransactionReconciliationStatementResponseItem {
|
||||
readonly sourceAccount?: Account;
|
||||
readonly sourceAccountName: string;
|
||||
readonly destinationAccount?: Account;
|
||||
readonly category?: TransactionCategory;
|
||||
readonly categoryName: string;
|
||||
}
|
||||
|
||||
export interface TransactionReconciliationStatementResponseWithInfo {
|
||||
readonly transactions: TransactionReconciliationStatementResponseItemWithInfo[];
|
||||
readonly totalInflows: number;
|
||||
readonly totalOutflows: number;
|
||||
readonly openingBalance: number;
|
||||
readonly closingBalance: number;
|
||||
}
|
||||
|
||||
export interface TransactionPageWrapper {
|
||||
readonly items: Transaction[];
|
||||
readonly totalCount?: number;
|
||||
|
||||
Reference in New Issue
Block a user