mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-08-03 21:17:44 +00:00
feat(wallet): implement wallet transactions table and filtering options ✨
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 7m19s
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 7m19s
This commit is contained in:
@ -97,3 +97,16 @@ export interface NewPayment {
|
||||
number_of_months: number;
|
||||
amount: number;
|
||||
}
|
||||
|
||||
|
||||
export interface WalletTransaction {
|
||||
id: string;
|
||||
user: Pick<User, "id" | "id_card" | "mobile"> & {
|
||||
name: string;
|
||||
};
|
||||
amount: number;
|
||||
transaction_type: "DEBIT" | "CREDIT";
|
||||
description: string;
|
||||
reference_id: string;
|
||||
created_at: string;
|
||||
}
|
Reference in New Issue
Block a user