mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-22 22:35:45 +00:00
feat(FE-350): add filtering table
This commit is contained in:
Vendored
+19
-21
@@ -1,31 +1,29 @@
|
||||
export interface Finance {
|
||||
id: string;
|
||||
references_number: string;
|
||||
bank_account: FinanceBankAccount;
|
||||
id: number;
|
||||
payment_code: string;
|
||||
reference_number: string;
|
||||
transaction_type: string;
|
||||
transaction_owner: FinanceTransactionOwner;
|
||||
transaction_account_number: string;
|
||||
transaction_date: string;
|
||||
party: FinanceParty;
|
||||
payment_date: string;
|
||||
created_at: string;
|
||||
payment_method: string;
|
||||
transaction_amount: number;
|
||||
balance_amount: number;
|
||||
bank: FinanceBank;
|
||||
expense_amount: number;
|
||||
income_amount: number;
|
||||
nominal: number;
|
||||
notes: string;
|
||||
references: FinanceReferences[];
|
||||
}
|
||||
|
||||
export interface FinanceReferences {
|
||||
references_number: string;
|
||||
total_allocation: number;
|
||||
}
|
||||
|
||||
export interface FinanceTransactionOwner {
|
||||
export interface FinanceParty {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export interface FinanceBankAccount {
|
||||
alias: string;
|
||||
name: string;
|
||||
type: string;
|
||||
account_number: string;
|
||||
}
|
||||
export interface FinanceBank {
|
||||
id: number;
|
||||
name: string;
|
||||
alias: string;
|
||||
owner: string;
|
||||
account_number: string;
|
||||
owner: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user