From 97c2180dcc1706f951cc819d6ee21c7a970e1d29 Mon Sep 17 00:00:00 2001 From: "J. A. Messias" Date: Wed, 4 Dec 2024 13:56:20 -0300 Subject: [PATCH] WiP --- .../components/molecules/modules/domain/entities/license.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/shared/components/molecules/modules/domain/entities/license.dart b/lib/shared/components/molecules/modules/domain/entities/license.dart index 0ab0f4c0..a89b241b 100644 --- a/lib/shared/components/molecules/modules/domain/entities/license.dart +++ b/lib/shared/components/molecules/modules/domain/entities/license.dart @@ -198,7 +198,7 @@ class License { ), Module( key: LicenseKeys.property.value, - display: ModuleStatus.inactive.key, + display: isNewVersionWithModule ? ModuleStatus.active.key : ModuleStatus.inactive.key, expirationDate: '', startDate: '', quantity: 0, @@ -212,7 +212,7 @@ class License { ), Module( key: LicenseKeys.petsHistory.value, - display: isNewVersionWithModule ? ModuleStatus.inactive.key : ModuleStatus.inactive.key, + display: await _processWithoutModule(LicenseKeys.pets), expirationDate: '', startDate: '', quantity: 0,