Gestito elenco clienti e prospect in lista contatti

This commit is contained in:
2025-07-10 12:40:30 +02:00
parent 65e48777e6
commit 8c521dc81e
17 changed files with 284 additions and 136 deletions

View File

@@ -1,6 +1,6 @@
@using salesbook.Shared.Core.Dto
@using salesbook.Shared.Components.Pages
@using salesbook.Shared.Core.Dto
@using salesbook.Shared.Core.Entity
@using salesbook.Shared.Core.Helpers.Enum
@using salesbook.Shared.Core.Interface
@inject IManageDataService manageData
@@ -17,76 +17,74 @@
<div class="input-card">
<div class="form-container">
<span class="disable-full-width">Assegnata a</span>
<MudSelectExtended SearchBox="true"
ItemCollection="Users.Select(x => x.UserName).ToList()"
SelectAllPosition="SelectAllPosition.NextToSearchBox"
SelectAll="true"
NoWrap="true"
MultiSelection="true"
MultiSelectionTextFunc="@(new Func<List<string>, string>(GetMultiSelectionUser))"
FullWidth="true" T="string"
Variant="Variant.Text"
Virtualize="true"
@bind-SelectedValues="FilterActivity.User"
Class="customIcon-select"
AdornmentIcon="@Icons.Material.Filled.Code"/>
<span class="disable-full-width">Con agente</span>
<MudCheckBox @bind-Value="Filter.ConAgente" Color="Color.Primary" @bind-Value:after="OnAfterChangeAgente"/>
</div>
<div class="divider"></div>
<div class="form-container">
<span class="disable-full-width">Tipo</span>
<span class="disable-full-width">Senza agente</span>
<MudSelectExtended FullWidth="true"
T="string?"
Variant="Variant.Text"
@bind-Value="FilterActivity.Type"
Class="customIcon-select"
AdornmentIcon="@Icons.Material.Filled.Code">
@foreach (var type in ActivityType)
{
<MudSelectItemExtended Class="custom-item-select" Value="@type.ActivityTypeId">@type.ActivityTypeId</MudSelectItemExtended>
}
</MudSelectExtended>
<MudCheckBox @bind-Value="Filter.SenzaAgente" Color="Color.Primary" @bind-Value:after="OnAfterChangeAgente"/>
</div>
<div class="divider"></div>
<div class="form-container">
<span class="disable-full-width">Esito</span>
<MudSelectExtended FullWidth="true"
T="string?"
Variant="Variant.Text"
@bind-Value="FilterActivity.Result"
Class="customIcon-select"
AdornmentIcon="@Icons.Material.Filled.Code">
@foreach (var result in ActivityResult)
<span class="disable-full-width">Agente</span>
<MudSelectExtended FullWidth="true" T="string?" Variant="Variant.Text" NoWrap="true"
@bind-SelectedValues="Filter.Agenti" @bind-SelectedValues:after="OnAfterChangeAgenti"
MultiSelection="true" MultiSelectionTextFunc="@(new Func<List<string>, string>(GetMultiSelectionAgente))"
SelectAllPosition="SelectAllPosition.NextToSearchBox" SelectAll="true"
Class="customIcon-select" AdornmentIcon="@Icons.Material.Filled.Code">
@foreach (var user in Users)
{
<MudSelectItemExtended Class="custom-item-select" Value="@result.ActivityResultId">@result.ActivityResultId</MudSelectItemExtended>
<MudSelectItemExtended Class="custom-item-select" Value="@user.UserCode">@($"{user.UserCode} - {user.FullName}")</MudSelectItemExtended>
}
</MudSelectExtended>
</div>
</div>
<div class="input-card">
<div class="form-container">
<MudTextField T="string?"
Placeholder="Indirizzo"
Variant="Variant.Text"
@bind-Value="Filter.Indirizzo"
DebounceInterval="500"/>
</div>
<div class="divider"></div>
<div class="form-container">
<span class="disable-full-width">Categoria</span>
<MudTextField T="string?"
Placeholder="Città"
Variant="Variant.Text"
@bind-Value="Filter.Citta"
DebounceInterval="500"/>
</div>
<MudSelectExtended FullWidth="true"
T="ActivityCategoryEnum?"
Variant="Variant.Text"
@bind-Value="FilterActivity.Category"
Class="customIcon-select"
AdornmentIcon="@Icons.Material.Filled.Code">
@foreach (var category in CategoryList)
{
<MudSelectItemExtended T="ActivityCategoryEnum?" Class="custom-item-select" Value="@category">@category.ConvertToHumanReadable()</MudSelectItemExtended>
}
</MudSelectExtended>
<div class="divider"></div>
<div class="form-container">
<MudTextField T="string?"
Placeholder="Provincia"
Variant="Variant.Text"
@bind-Value="Filter.Prov"
DebounceInterval="500"/>
</div>
<div class="divider"></div>
<div class="form-container">
<MudTextField T="string?"
Placeholder="Nazione"
Variant="Variant.Text"
@bind-Value="Filter.Nazione"
DebounceInterval="500"/>
</div>
</div>
@@ -104,12 +102,7 @@
[Parameter] public FilterUserDTO Filter { get; set; }
[Parameter] public EventCallback<FilterUserDTO> FilterChanged { get; set; }
private FilterActivityDTO FilterActivity { get; set; } = new();
private List<StbActivityResult> ActivityResult { get; set; } = [];
private List<StbActivityType> ActivityType { get; set; } = [];
private List<StbUser> Users { get; set; } = [];
private List<ActivityCategoryEnum> CategoryList { get; set; } = [];
protected override async Task OnParametersSetAsync()
{
@@ -117,19 +110,14 @@
await LoadData();
}
private string GetMultiSelectionUser(List<string> selectedValues)
{
return $"{selectedValues.Count} Utent{(selectedValues.Count != 1 ? "i selezionati" : "e selezionato")}";
}
private async Task LoadData()
{
Users = await manageData.GetTable<StbUser>();
ActivityResult = await manageData.GetTable<StbActivityResult>();
ActivityType = await manageData.GetTable<StbActivityType>(x => x.FlagTipologia.Equals("A"));
CategoryList = ActivityCategoryHelper.AllActivityCategory;
Users = await manageData.GetTable<StbUser>(x => x.KeyGroup == 5);
}
StateHasChanged();
private string GetMultiSelectionAgente(List<string> selectedValues)
{
return $"{selectedValues.Count} Agent{(selectedValues.Count != 1 ? "i selezionati" : "e selezionato")}";
}
private void CloseBottomSheet()
@@ -144,4 +132,24 @@
CloseBottomSheet();
}
private void OnAfterChangeAgenti()
{
if (Filter.Agenti == null || !Filter.Agenti.Any()) return;
Filter.ConAgente = false;
Filter.SenzaAgente = false;
}
private void OnAfterChangeAgente()
{
if (Filter.SenzaAgente)
{
Filter.ConAgente = false;
}
else if (Filter.ConAgente)
{
Filter.SenzaAgente = false;
}
}
}

View File

@@ -18,11 +18,12 @@
<div class="contact-right-section">
@if (!Contact.NumCellulare.IsNullOrEmpty())
{
<MudIcon Color="Color.Success" Size="Size.Large" Icon="@Icons.Material.Outlined.Phone" />
<MudIconButton Href="@($"tel:{Contact.NumCellulare}")" Color="Color.Success" Size="Size.Large" Icon="@Icons.Material.Outlined.Phone" />
}
@if (!Contact.EMail.IsNullOrEmpty()){
<MudIcon Color="Color.Info" Size="Size.Large" Icon="@Icons.Material.Filled.MailOutline" />
@if (!Contact.EMail.IsNullOrEmpty())
{
<MudIconButton Href="@($"mailto:{Contact.EMail}")" Color="Color.Info" Size="Size.Large" Icon="@Icons.Material.Filled.MailOutline" />
}
</div>
</div>

View File

@@ -1,3 +1,4 @@
@using salesbook.Shared.Core.Dto
@using salesbook.Shared.Core.Entity
@using salesbook.Shared.Core.Interface
@inject IManageDataService ManageData
@@ -6,7 +7,7 @@
<div class="user-card-left-section">
<div class="user-card-body-section">
<div class="title-section">
<MudIcon @onclick="OpenUser" Color="Color.Primary" Icon="@Icons.Material.Filled.Person" Size="Size.Large" />
<MudIcon @onclick="OpenUser" Color="@(User.IsContact? Color.Primary: Color.Secondary)" Icon="@(User.IsContact? Icons.Material.Filled.Person : Icons.Material.Filled.PersonOutline)" Size="Size.Large" />
<div class="user-card-right-section">
<div class="user-card-title">
@@ -47,14 +48,14 @@
</div>
@code {
[Parameter] public AnagClie User { get; set; } = new();
[Parameter] public ContactDTO User { get; set; } = new();
private List<JtbComt>? Commesse { get; set; }
private bool IsLoading { get; set; } = true;
private bool ShowSectionCommesse { get; set; }
private void OpenUser() =>
NavigationManager.NavigateTo($"/User/{User.CodAnag}");
NavigationManager.NavigateTo($"/User/{User.CodContact}");
private async Task ShowCommesse()
{
@@ -62,7 +63,7 @@
if (ShowSectionCommesse)
{
Commesse = await ManageData.GetTable<JtbComt>(x => x.CodAnag.Equals(User.CodAnag));
Commesse = await ManageData.GetTable<JtbComt>(x => x.CodAnag.Equals(User.CodContact));
IsLoading = false;
StateHasChanged();
return;

View File

@@ -1,7 +1,5 @@
@using System.Text.RegularExpressions
@using salesbook.Shared.Core.Dto
@using salesbook.Shared.Core.Dto
@using salesbook.Shared.Components.Layout
@using salesbook.Shared.Core.Entity
@using salesbook.Shared.Core.Interface
@using salesbook.Shared.Components.Layout.Overlay
@inject IManageDataService ManageData
@@ -10,7 +8,7 @@
<MudDialog Class="customDialog-form">
<DialogContent>
<HeaderLayout ShowProfile="false" Cancel="true" OnCancel="() => MudDialog.Cancel()" LabelSave="@LabelSave" OnSave="Save" Title="@(IsNew ? "Nuovo" : $"{UserModel.CodAnag}")"/>
<HeaderLayout ShowProfile="false" Cancel="true" OnCancel="() => MudDialog.Cancel()" LabelSave="@LabelSave" OnSave="Save" Title="@(IsNew ? "Nuovo" : $"{ContactModel.CodContact}")"/>
<div class="content">
<div class="input-card">
@@ -19,7 +17,7 @@
Placeholder="Azienda"
Variant="Variant.Text"
Lines="1"
@bind-Value="UserModel.RagSoc"
@bind-Value="ContactModel.RagSoc"
@bind-Value:after="OnAfterChangeValue"
DebounceInterval="500"
OnDebounceIntervalElapsed="OnAfterChangeValue"/>
@@ -31,7 +29,7 @@
Placeholder="Partita IVA"
Variant="Variant.Text"
Lines="1"
@bind-Value="UserModel.PartIva"
@bind-Value="ContactModel.PartIva"
@bind-Value:after="OnAfterChangeValue"
DebounceInterval="500"
OnDebounceIntervalElapsed="OnAfterChangeValue" />
@@ -44,7 +42,7 @@
Placeholder="Indirizzo"
Variant="Variant.Text"
Lines="1"
@bind-Value="UserModel.Indirizzo"
@bind-Value="ContactModel.Indirizzo"
@bind-Value:after="OnAfterChangeValue"
DebounceInterval="500"
OnDebounceIntervalElapsed="OnAfterChangeValue" />
@@ -58,7 +56,7 @@
Placeholder="CAP"
Variant="Variant.Text"
Lines="1"
@bind-Value="UserModel.Cap"
@bind-Value="ContactModel.Cap"
@bind-Value:after="OnAfterChangeValue"
DebounceInterval="500"
OnDebounceIntervalElapsed="OnAfterChangeValue" />
@@ -72,7 +70,7 @@
Placeholder="Città"
Variant="Variant.Text"
Lines="1"
@bind-Value="UserModel.Citta"
@bind-Value="ContactModel.Citta"
@bind-Value:after="OnAfterChangeValue"
DebounceInterval="500"
OnDebounceIntervalElapsed="OnAfterChangeValue" />
@@ -86,7 +84,7 @@
Placeholder="Provincia"
Variant="Variant.Text"
Lines="1"
@bind-Value="UserModel.Prov"
@bind-Value="ContactModel.Prov"
@bind-Value:after="OnAfterChangeValue"
DebounceInterval="500"
OnDebounceIntervalElapsed="OnAfterChangeValue" />
@@ -100,7 +98,7 @@
Placeholder="Nazione"
Variant="Variant.Text"
Lines="1"
@bind-Value="UserModel.Nazione"
@bind-Value="ContactModel.Nazione"
@bind-Value:after="OnAfterChangeValue"
DebounceInterval="500"
OnDebounceIntervalElapsed="OnAfterChangeValue" />
@@ -152,15 +150,8 @@
[Parameter] public string? CodAnag { get; set; }
[Parameter] public string? UserType { get; set; }
private UserDTO OriginalModel { get; set; } = new();
private UserDTO UserModel { get; set; } = new();
private List<StbActivityResult> ActivityResult { get; set; } = [];
private List<StbActivityType> ActivityType { get; set; } = [];
private List<StbUser> Users { get; set; } = [];
private List<JtbComt> Commesse { get; set; } = [];
private List<AnagClie> Clienti { get; set; } = [];
private List<PtbPros> Pros { get; set; } = [];
private ContactDTO OriginalModel { get; set; } = new();
private ContactDTO ContactModel { get; set; } = new();
private bool IsNew => CodAnag.IsNullOrEmpty();
private bool IsView => !NetworkService.IsNetworkAvailable();
@@ -199,7 +190,7 @@
{
if (!IsNew)
{
LabelSave = !OriginalModel.Equals(UserModel) ? "Aggiorna" : null;
LabelSave = !OriginalModel.Equals(ContactModel) ? "Aggiorna" : null;
}
}