mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-21 22:05:45 +00:00
feat(FE-337): init slicing UI and define data types
This commit is contained in:
Vendored
+31
@@ -0,0 +1,31 @@
|
||||
export interface Finance {
|
||||
id: string;
|
||||
references_number: string;
|
||||
bank_account: FinanceBankAccount;
|
||||
transaction_type: string;
|
||||
transaction_owner: FinanceTransactionOwner;
|
||||
transaction_account_number: string;
|
||||
transaction_date: string;
|
||||
payment_method: string;
|
||||
transaction_amount: number;
|
||||
balance_amount: number;
|
||||
notes: string;
|
||||
references: FinanceReferences[];
|
||||
}
|
||||
|
||||
export interface FinanceReferences {
|
||||
references_number: string;
|
||||
total_allocation: number;
|
||||
}
|
||||
|
||||
export interface FinanceTransactionOwner {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export interface FinanceBankAccount {
|
||||
alias: string;
|
||||
name: string;
|
||||
account_number: string;
|
||||
owner: string;
|
||||
}
|
||||
Reference in New Issue
Block a user