client page par id

This commit is contained in:
barillote 2025-03-20 17:17:25 +01:00
parent 8168c8844d
commit 76e4e68799
4 changed files with 125 additions and 1 deletions

View File

@ -11,7 +11,7 @@
HorizontalOptions="Center"
Margin="0,10"/>
<ListView x:Name="ClientsListView" HasUnevenRows="True">
<ListView x:Name="ClientsListView" HasUnevenRows="True" ItemTapped="OnClientTapped">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
@ -40,5 +40,7 @@
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>
</ContentPage>

View File

@ -27,6 +27,7 @@ namespace HegreHotel.Views.Client
Clients.Add(client);
}
ClientsListView.ItemsSource = Clients;
}
private async void OnAjouterClientClicked(object sender, EventArgs e)
@ -63,5 +64,20 @@ namespace HegreHotel.Views.Client
{
LoadClients();
}
private async void OnClientTapped(object sender, ItemTappedEventArgs e)
{
if (e.Item != null)
{
// Désélectionne l'élément tappé
((ListView)sender).SelectedItem = null;
// Récupère le client sélectionné
var client = e.Item as Models.Client;
// Navigue vers la page de détails du client
await Navigation.PushAsync(new DetailsClientPage(client));
}
}
}
}

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="HegreHotel.Views.Client.DetailsClientPage">
<ContentPage.Content>
<ScrollView>
<StackLayout Padding="10" Spacing="5">
<HorizontalStackLayout Spacing="5">
<Label Text="{Binding Nom}" FontAttributes="Bold" FontSize="18"/>
<Label Text="{Binding Prenom}" FontSize="18"/>
</HorizontalStackLayout>
<VerticalStackLayout>
<Label Text="{Binding Email}"/>
<Label Text="{Binding Telephone}"/>
</VerticalStackLayout>
<Label Text="Historique des réservations :" FontAttributes="Bold" FontSize="Large"/>
<ListView x:Name="ListeReservations">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout Orientation="Horizontal" Padding="5" Spacing="10">
<Label Text="{Binding DateDebut, StringFormat='{0:dd/MM/yyyy}'}"/>
<Label Text="{Binding DateFin, StringFormat='{0:dd/MM/yyyy}'}"/>
<Label Text="{Binding NbInvite}"/>
<Label Text="{Binding ChambreNom}"/>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>
</ScrollView>
</ContentPage.Content>
</ContentPage>

View File

@ -0,0 +1,71 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HegreHotel.Views.Client;
public partial class DetailsClientPage : ContentPage
{
public Models.Client Client { get; set; }
public DetailsClientPage(Models.Client client)
{
InitializeComponent();
BindingContext = client;
Client = client;
LoadReservations();
}
private async void LoadReservations()
{
string dbPath = Path.Combine(FileSystem.AppDataDirectory, "HegreHotel.db3");
var db = SingletonConnection.GetInstance(dbPath);
List<Models.Reservation> reservationsList = await db.Table<Models.Reservation>().Where(x => x.ClientId == Client.Id).ToListAsync();
List<Models.Chambre> cahmbresList = await db.Table<Models.Chambre>().ToListAsync();
List<ReservationInfo> reservationInfoList = new List<ReservationInfo>();
if (reservationsList is null)
{
await DisplayAlert("Aucune réservation", "Le client n'a pas de réservations", "OK");
}
else
{
foreach (Models.Reservation reservation in reservationsList)
{
ReservationInfo reservationInfo = new ReservationInfo()
{
DateDebut = reservation.DateDebut,
DateFin = reservation.DateFin,
DemandeSpecifique = reservation.DemandeSpecifique,
NbInvite = reservation.NbInvite
};
foreach (Models.Chambre chambre in cahmbresList)
{
if (reservation.ChambreId == chambre.Id)
{
reservationInfo.ChambreNom = chambre.Nom;
}
}
reservationInfoList.Add(reservationInfo);
}
}
ListeReservations.ItemsSource = reservationInfoList;
}
public class ReservationInfo
{
public DateTime DateDebut { get; set; }
public DateTime DateFin { get; set; }
public string? DemandeSpecifique { get; set; }
public int NbInvite { get; set; }
public string? ChambreNom { get; set; }
}
}