@idsoftsource/initial-process 3.7.0 → 3.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7852,6 +7852,7 @@ class CertificationStore {
7852
7852
  pageSize: 10,
7853
7853
  orderBy: 'createdDateTime asc',
7854
7854
  filter: `mainType=${MainDocumentType.Certificate}`,
7855
+ targetUserId: userId,
7855
7856
  };
7856
7857
  this.userDocumentService
7857
7858
  .getUserDocument(query)
@@ -7896,6 +7897,7 @@ class LicenseStore {
7896
7897
  pageSize: 10,
7897
7898
  orderBy: 'createdDateTime asc',
7898
7899
  filter: `mainType=${MainDocumentType.License}`,
7900
+ targetUserId: userId,
7899
7901
  };
7900
7902
  this.userDocumentService
7901
7903
  .getUserDocument(query)
@@ -9488,7 +9490,7 @@ class CertificationComponent {
9488
9490
  : '00000000-0000-0000-0000-000000000000',
9489
9491
  providerName: this.providerName,
9490
9492
  targetProviderId: this.providerId,
9491
- targetUserId: this.roleContextService?.tempUserContext()?.userId ?? '',
9493
+ targetUserId: this.roleContextService?.tempUserContext()?.userId ?? this.userId ?? '',
9492
9494
  userName: this.user.fullName,
9493
9495
  number: fullValue.number ? fullValue.number : null,
9494
9496
  issuedState: fullValue.issuedState ? fullValue.issuedState : null,
@@ -11047,7 +11049,7 @@ class LicensesComponent {
11047
11049
  : '00000000-0000-0000-0000-000000000000',
11048
11050
  targetProviderName: this.providerName,
11049
11051
  providerId: this.providerId,
11050
- targetUserId: this.roleContextService?.tempUserContext()?.userId ?? '',
11052
+ targetUserId: this.roleContextService?.tempUserContext()?.userId ?? this.userId ?? '',
11051
11053
  userName: this.user.fullName,
11052
11054
  number: fullValue.number ? fullValue.number : null,
11053
11055
  issuedState: fullValue.issuedState ? fullValue.issuedState : null,