1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Runtime.Serialization.Formatters.Binary;
using System.Text;
using System.Threading.Tasks;
namespace ApplicationQM
{
public class ListeMatériel : MatérielObservableCollection<Matériel>
{
}
public class Catégories : CatégoriesObservableCollection<string>
{
}
[Serializable]
public class Matériel : INotifyPropertyChanged
{
private string catégorie;
private string description;
private string codeBarre;
private string détails;
private ObservableCollection<Localisation> historiqueLocalisation;
public event PropertyChangedEventHandler PropertyChanged;
/// <summary>
/// Catégorie dans laquelle se trouve le matériel
/// </summary>
public string Catégorie
{
get { return catégorie; }
set
{
//Valeur par défaut
if (string.IsNullOrEmpty(value))
catégorie = "Autre";
else
catégorie = value;
OnPropertyChanged("Catégorie");
}
}
/// <summary>
/// Descritpion du matériel
/// </summary>
public string Description
{
get { return description; }
set
{
description = value;
OnPropertyChanged("Description");
}
}
/// <summary>
/// Code Barre du matériel
/// </summary>
public string CodeBarre
{
get { return codeBarre; }
set
{
codeBarre = value;
OnPropertyChanged("CodeBarre");
}
}
/// <summary>
/// Détails du matériel
/// </summary>
public string Détails
{
get { return détails; }
set
{
détails = value;
OnPropertyChanged("Dtails");
}
}
/// <summary>
/// Liste des mouvements du matériel
/// </summary>
public ObservableCollection<Localisation> HistoriqueLocalisation
{
get { return historiqueLocalisation; }
set
{
historiqueLocalisation = value;
ICollectionView hView = System.Windows.Data.CollectionViewSource.GetDefaultView(this);
OnPropertyChanged("HistoriqueLocalisation");
OnPropertyChanged("Localisation");
OnPropertyChanged("LocalisationDate");
}
}
public object Localisation
{
get
{
List<Localisation> sortedLst = this.HistoriqueLocalisation.OrderBy(x => x.DateMouvement).ToList();
Localisation dernièreLocalisation = sortedLst[sortedLst.Count - 1];
if (dernièreLocalisation.Endroit.GetType() == typeof(string))
return dernièreLocalisation.Endroit as string;
else
return dernièreLocalisation.Endroit as Personne;
}
}
public DateTime LocalisationDate
{
get
{
List<Localisation> sortedLst = this.HistoriqueLocalisation.OrderBy(x => x.DateMouvement).ToList();
return sortedLst[sortedLst.Count - 1].DateMouvement;
}
}
#region Constructeurs
/// <summary>
/// Création d'un matériel vide. L'objet sera placé au QM avec de DateTime actuel
/// </summary>
public Matériel()
{
this.HistoriqueLocalisation = new ObservableCollection<Localisation> { new Localisation(DateTime.Now, "QM") };
}
/// <summary>
/// Création d'un objet. L'objet sera placé au QM avec de DateTime actuel
/// </summary>
/// <param name="description">description du matériel</param>
/// <param name="description">détails du matériel</param>
/// <param name="catégorie">catégorie dans laquelle se trouve le matériel</param>
/// <param name="codeBarre">code barre du matériel</param>
public Matériel(string description, string détails = null, string catégorie = "Autre", string codeBarre = null)
{
this.Description = description;
this.CodeBarre = codeBarre;
this.Catégorie = catégorie;
this.Détails = détails;
this.HistoriqueLocalisation = new ObservableCollection<Localisation> { new Localisation(DateTime.Now, "QM") };
}
/// <summary>
/// Création d'un objet
/// </summary>
/// <param name="description">description du matériel</param>
/// <param name="dateMouvement">date à laquelle le matériel a été placé à sa localiation</param>
/// <param name="description">détails du matériel</param>
/// <param name="catégorie">catégorie dans laquelle se trouve le matériel</param>
/// <param name="localisation">Endroit où est le matériel</param>
/// <param name="codeBarre">code barre du matériel</param>
public Matériel(string description, DateTime dateMouvement, string détails = null, string catégorie = "Autre", string localisation = "QM", string codeBarre = null)
{
this.Description = description;
this.CodeBarre = codeBarre;
this.Catégorie = catégorie;
this.Détails = détails;
this.HistoriqueLocalisation = new ObservableCollection<Localisation> { new Localisation(dateMouvement, localisation) };
}
/// <summary>
/// Création d'un objet
/// </summary>
/// <param name="description">description du matériel</param>
/// <param name="dateMouvement">date à laquelle le matériel a été attribué au Personne</param>
/// <param name="description">détails du matériel</param>
/// <param name="catégorie">catégorie dans laquelle se trouve le matériel</param>
/// <param name="localisation">Personne chez qui est le matériel</param>
/// <param name="codeBarre">code barre du matériel</param>
public Matériel(string description, DateTime dateMouvement, Personne Personne, string détails = null, string catégorie = "Autre", string localisation = "QM", string codeBarre = null)
{
this.Description = description;
this.CodeBarre = codeBarre;
this.Catégorie = catégorie;
this.Détails = détails;
this.HistoriqueLocalisation = new ObservableCollection<Localisation> { new Localisation(dateMouvement, Personne) };
Personne.Matériel.Add(this);
}
#endregion
public void MouvementMatériel(DateTime dateMouvement, Personne personne)
{
List<Localisation> sortedLst = this.HistoriqueLocalisation.OrderBy(x => x.DateMouvement).ToList();
Localisation dernièreLocalisation = this.HistoriqueLocalisation[sortedLst.Count - 1];
if (this.Localisation.GetType() == typeof(Personne) && this.Localisation == personne)
throw new Exception(string.Format("Ce matériel est déjà détenu par cette Personne depuis le {0:dd MMM yyyy}", dernièreLocalisation.DateMouvement));
this.HistoriqueLocalisation.Add(new Localisation(dateMouvement, personne));
personne.Matériel.Add(this);
}
public void MouvementMatériel(DateTime dateMouvement, string localisation = "QM")
{
if (this.Localisation.GetType() == typeof(string) && this.Localisation.ToString() == localisation)
throw new Exception(string.Format("Ce matériel se trouve déjà à cet emplacement depuis le {0:dd MMM yyyy}", this.LocalisationDate));
else if (this.Localisation.GetType() == typeof(Personne))
(this.Localisation as Personne).Matériel.Remove(this);
this.HistoriqueLocalisation.Add(new Localisation(dateMouvement, localisation));
}
protected void OnPropertyChanged(string name)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(name));
}
}
}
[Serializable]
public class Localisation : IComparable
{
public Object Endroit { get; set; }
public DateTime DateMouvement { get; set; }
public Localisation(DateTime dateMouvement, string localisation)
{
this.DateMouvement = dateMouvement;
this.Endroit = localisation;
}
public Localisation(DateTime dateMouvement, Personne personne)
{
this.DateMouvement = dateMouvement;
this.Endroit = personne;
}
public override bool Equals(object obj)
{
if (obj == null) return false;
Localisation localisation = obj as Localisation;
if (localisation == null) return false;
else return this.DateMouvement.Equals(localisation.DateMouvement);
}
public override int GetHashCode()
{
return base.GetHashCode();
}
public int SortByDateMouvementAscending(DateTime dateMouvement1, DateTime dateMouvement2)
{
return dateMouvement1.CompareTo(dateMouvement2);
}
public int SortByDateMouvementDescending(DateTime dateMouvement1, DateTime dateMouvement2)
{
return dateMouvement2.CompareTo(dateMouvement1);
}
// Comparaison par défaut.
public int CompareTo(object compareLocalisation)
{
if (compareLocalisation.GetType() != typeof(Localisation))
throw new TypeAccessException("Le type ne correspond pas à Localisation");
Localisation localisationAComprer = compareLocalisation as Localisation;
return this.DateMouvement.CompareTo(localisationAComprer.DateMouvement);
}
}
public class MatérielObservableCollection<T> : ObservableCollection<Matériel>
{
private static BinaryFormatter formatter = null;
public void Save(string filePath)
{
List<Matériel> lstMatériel = this.ToList<Matériel>();
System.Byte[] serialisedList;
if (formatter == null) formatter = new System.Runtime.Serialization.Formatters.Binary.BinaryFormatter();
using (MemoryStream stream = new MemoryStream())
{
formatter.Serialize(stream, lstMatériel);
serialisedList = stream.ToArray();
}
File.WriteAllBytes(filePath, serialisedList);
}
public void LoadFromSavedFile(string filePath)
{
this.Clear();
this.AddFromSavedFile(filePath);
}
public void AddFromSavedFile(string filePath)
{
if (File.Exists(filePath))
{
System.Byte[] dbByte = File.ReadAllBytes(filePath);
List<Matériel> lstMatériel = new List<Matériel>();
if (formatter == null) formatter = new BinaryFormatter();
using (MemoryStream stream = new MemoryStream(dbByte))
{
lstMatériel = (List<Matériel>)formatter.Deserialize(stream);
}
foreach (Matériel matériel in lstMatériel)
this.Add(matériel);
}
}
}
public class CatégoriesObservableCollection<T> : ObservableCollection<string>
{
private static BinaryFormatter formatter = null;
public new void Add(string catégorie)
{
if (this.Contains(catégorie))
throw new TypeAccessException("Cette catégorie est déjà existante.");
base.Add(catégorie);
}
public void Save(string filePath)
{
List<string> lstCatégories = this.ToList<string>();
System.Byte[] serialisedList;
if (formatter == null) formatter = new System.Runtime.Serialization.Formatters.Binary.BinaryFormatter();
using (MemoryStream stream = new MemoryStream())
{
formatter.Serialize(stream, lstCatégories);
serialisedList = stream.ToArray();
}
File.WriteAllBytes(filePath, serialisedList);
}
public void AddFromSavedFile(string filePath)
{
if (File.Exists(filePath))
{
System.Byte[] dbByte = File.ReadAllBytes(filePath);
List<string> lstCatégories = new List<string>();
if (formatter == null) formatter = new BinaryFormatter();
using (MemoryStream stream = new MemoryStream(dbByte))
{
lstCatégories = (List<string>)formatter.Deserialize(stream);
}
foreach (string catégorie in lstCatégories)
this.Add(catégorie);
}
}
}
} |
Partager