Merge branch 'develop' into feature-paymentAssetManagement

This commit is contained in:
Joao Ramos
2023-12-13 23:43:52 +00:00
8 changed files with 264 additions and 153 deletions

View File

@@ -31,7 +31,7 @@ export interface Payment {
currency: string;
value: number;
isPaid: boolean;
date: Date;
date: Date | string;
corporateTransfer?: string;
commissionTransfer?: string;
}

View File

@@ -57,6 +57,7 @@ export interface CorporateInformation {
payment?: {
value: number;
currency: string;
commission: number;
};
referralAgent?: string;
}