/// <summary> /// Ouvre le dailly séléctionné à l'aide d'une nouvelle fenêtre /// </summary> public Dailly Open() { if (this._DataGridMain.SelectedItem != null) { if (this._DataGridMain.SelectedItems.Count == 1) { //Affichage du message "modification en cours" ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = true; ((App)App.Current)._theMainWindow.changementTexteStatusBar("Modification d'un dailly en cours ..."); //Création de la fenêtre DaillyWindow daillyWindow = new DaillyWindow(); //Initialisation du Datacontext en Commande_Fournisseur et association à la Commande_Fournisseur sélectionnée daillyWindow.DataContext = new Dailly(); daillyWindow.DataContext = ((Dailly)this._DataGridMain.SelectedItem); //booléen nullable vrai ou faux ou null bool? dialogResult = daillyWindow.ShowDialog(); if (dialogResult.HasValue && dialogResult.Value == true) { //Si j'appuie sur le bouton Ok, je renvoi l'objet DAO se trouvant dans le datacontext de la fenêtre return (Dailly)daillyWindow.DataContext; } else { //Je récupère les anciennes données de la base sur les modifications effectuées ((App)App.Current).mySitaffEntities.Refresh(System.Data.Objects.RefreshMode.StoreWins, (Dailly)(this._DataGridMain.SelectedItem)); //La commande étant un objet "critique" au niveau des associations, je refresh l'edmx et je relance le filtrage s'il y en avait un afin d'avoir les mêmes infos (invisible pour l'user) ((App)App.Current).refreshEDMXSansVidage(); this.filtrage(); //Si j'appuie sur le bouton annuler, je préviens que j'annule ma modification ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = false; this.recalculMax(); ((App)App.Current)._theMainWindow.changementTexteStatusBar("Modification d'un dailly annulée : " + this.listDailly.Count() + " / " + this.max); return null; } } else { MessageBox.Show("Vous ne devez sélectionner qu'un seul dailly.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } } else { MessageBox.Show("Vous devez sélectionner un dailly.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } }
/// <summary> /// Ajoute un nouveau dailly à la liste à l'aide d'une nouvelle fenêtre /// </summary> public Dailly Add() { //Affichage du message "ajout en cours" ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = true; ((App)App.Current)._theMainWindow.changementTexteStatusBar("Ajout d'un dailly en cours ..."); //Initialisation de la fenêtre DaillyWindow daillyWindow = new DaillyWindow(); //Création de l'objet temporaire Dailly tmp = new Dailly(); //Mise de l'objet temporaire dans le datacontext daillyWindow.DataContext = tmp; //booléen nullable vrai ou faux ou null bool? dialogResult = daillyWindow.ShowDialog(); if (dialogResult.HasValue && dialogResult.Value == true) { //Si j'appuie sur le bouton Ok, je renvoi l'objet DAO se trouvant dans le datacontext de la fenêtre return (Dailly)daillyWindow.DataContext; } else { try { //On détache la commande ((App)App.Current).mySitaffEntities.Detach((Dailly)daillyWindow.DataContext); } catch (Exception) { } //Si j'appuie sur le bouton annuler, je préviens que j'annule mon ajout ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = false; this.recalculMax(); ((App)App.Current)._theMainWindow.changementTexteStatusBar("Ajout d'un dailly annulé : " + this.listDailly.Count() + " / " + this.max); return null; } }
/// <summary> /// Ouvre la dailly séléctionné en lecture seule à l'aide d'une nouvelle fenêtre /// </summary> public Dailly Look(Dailly d) { if (this._DataGridMain.SelectedItem != null) { if (this._DataGridMain.SelectedItems.Count == 1) { //Affichage du message "affichage en cours" ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = true; ((App)App.Current)._theMainWindow.changementTexteStatusBar("Affichage d'un dailly en cours ..."); //Création de la fenêtre DaillyWindow daillyWindow = new DaillyWindow(); //Initialisation du Datacontext en Commande_Fournisseur et association à la Commande_Fournisseur sélectionnée daillyWindow.DataContext = new Dailly(); daillyWindow.DataContext = (Dailly)this._DataGridMain.SelectedItem; //Je positionne la lecture seule sur la fenêtre daillyWindow.soloLecture = true; //J'affiche la fenêtre bool? dialogResult = daillyWindow.ShowDialog(); //Affichage du message "affichage en cours" ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = false; ((App)App.Current)._theMainWindow.changementTexteStatusBar("Affichage d'un dailly terminé : " + this.listDailly.Count() + " / " + this.max); //Renvoi null return null; } else { MessageBox.Show("Vous ne devez sélectionner qu'un seul dailly.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } } else if (d != null) { //Affichage du message "affichage en cours" ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = true; ((App)App.Current)._theMainWindow.changementTexteStatusBar("Affichage d'un dailly en cours ..."); //Création de la fenêtre DaillyWindow daillyWindow = new DaillyWindow(); //Initialisation du Datacontext en Commande_Fournisseur et association à la Commande_Fournisseur sélectionnée daillyWindow.DataContext = new Dailly(); daillyWindow.DataContext = d; //Je positionne la lecture seule sur la fenêtre daillyWindow.soloLecture = true; //J'affiche la fenêtre bool? dialogResult = daillyWindow.ShowDialog(); //Affichage du message "affichage en cours" ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = false; ((App)App.Current)._theMainWindow.changementTexteStatusBar("Affichage d'un dailly terminé : " + this.listDailly.Count() + " / " + this.max); //Renvoi null return null; } else { MessageBox.Show("Vous devez sélectionner un dailly.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } }