Fix e migliorati caricamenti

This commit is contained in:
2025-09-18 09:40:31 +02:00
parent e9a0ffdb7a
commit 8a45bffebc
27 changed files with 392 additions and 200 deletions

View File

@@ -6,7 +6,7 @@ namespace salesbook.Shared.Core.Dto.Activity;
public class ActivityDTO : StbActivity
{
public string? Commessa { get; set; }
public JtbComt? Commessa { get; set; }
public string? Cliente { get; set; }
public ActivityCategoryEnum Category { get; set; }
public bool Complete { get; set; }

View File

@@ -7,4 +7,10 @@ public class CRMTransferProspectResponseDTO
{
[JsonPropertyName("anagClie")]
public AnagClie? AnagClie { get; set; }
[JsonPropertyName("vtbDest")]
public List<VtbDest>? VtbDest { get; set; }
[JsonPropertyName("vtbCliePersRif")]
public List<VtbCliePersRif>? VtbCliePersRif { get; set; }
}

View File

@@ -6,6 +6,8 @@ public class UserListState
{
public List<UserDisplayItem>? GroupedUserList { get; set; }
public List<UserDisplayItem>? FilteredGroupedUserList { get; set; }
public List<ContactDTO>? AllUsers { get; set; }
public bool IsLoaded { get; set; }
public bool IsLoading { get; set; }