fix: lock mutate base currency once organization has transactions.

This commit is contained in:
a.bouhuolia
2021-09-09 21:06:16 +02:00
parent 772c24e3ef
commit b061f49ca7
8 changed files with 308 additions and 39 deletions

View File

@@ -11,14 +11,17 @@ export interface IOrganizationSetupDTO{
export interface IOrganizationBuildDTO {
name: string;
industry: string;
location: string;
baseCurrency: string,
timezone: string;
fiscalYear: string;
industry: string;
dateFormat?: string;
}
export interface IOrganizationUpdateDTO {
name: string;
location: string;
baseCurrency: string,
timezone: string;
fiscalYear: string;