private void _ButtonAffaireFactureModifier_Click(object sender, RoutedEventArgs e) { if (this._dataGridFacture.SelectedItems.Count <= 0) { MessageBox.Show("Vous devez sélectionner une facture à modifier.", "Erreur", MessageBoxButton.OK, MessageBoxImage.Stop); } else if (this._dataGridFacture.SelectedItems.Count > 1) { MessageBox.Show("Vous ne devez sélectionner qu'une facture à modifier.", "Erreur", MessageBoxButton.OK, MessageBoxImage.Stop); } else if (this._dataGridFacture.SelectedItem != null) { FactureWindow factureWindow = new FactureWindow(); factureWindow.DataContext = (Facture)this._dataGridFacture.SelectedItem; bool? dialogResult = factureWindow.ShowDialog(); if (dialogResult.HasValue && dialogResult.Value == true) { this._dataGridFacture.SelectedItem = ((Facture)factureWindow.DataContext); } else { try { ((App)App.Current).mySitaffEntities.Refresh(System.Data.Objects.RefreshMode.StoreWins, (Facture)factureWindow.DataContext); } catch (Exception) { } } } this._dataGridFacture.Items.Refresh(); }
private void _ButtonAffaireFactureNouveau_Click(object sender, RoutedEventArgs e) { FactureWindow factureWindow = new FactureWindow(); factureWindow.DataContext = new Facture(); ((Facture)factureWindow.DataContext).Affaire1 = (Affaire)this.DataContext; factureWindow._comboBoxAffaire.IsEnabled = false; bool? dialogResult = factureWindow.ShowDialog(); if (dialogResult.HasValue && dialogResult.Value == true) { ((Affaire)this.DataContext).Facture.Add(((Facture)factureWindow.DataContext)); } else { try { ((App)App.Current).mySitaffEntities.Detach((Facture)factureWindow.DataContext); } catch (Exception) { } } this._dataGridFacture.Items.Refresh(); }
/// <summary> /// Ajoute une nouvelle Facture à la liste à l'aide d'une nouvelle fenêtre /// </summary> public Facture Add() { //Affichage du message "ajout en cours" ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = true; ((App)App.Current)._theMainWindow.changementTexteStatusBar("Ajout d'une facture en cours ..."); //Initialisation de la fenêtre FactureWindow factureWindow = new FactureWindow(); //Création de l'objet temporaire Facture tmp = new Facture(); tmp.Facture_Client = new Facture_Client(); //Mise de l'objet temporaire dans le datacontext factureWindow.DataContext = tmp; //booléen nullable vrai ou faux ou null bool? dialogResult = factureWindow.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 (Facture)factureWindow.DataContext; } else { try { //On détache la commande ((App)App.Current).mySitaffEntities.Detach((Facture)factureWindow.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'une facture annulé : " + this.listFacture.Count() + " / " + this.max); return null; } }
/// <summary> /// Ouvre la facture séléctionnée à l'aide d'une nouvelle fenêtre /// </summary> public Facture 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'une facture en cours ..."); //Création de la fenêtre FactureWindow factureWindow = new FactureWindow(); //Initialisation du Datacontext en Commande_Fournisseur et association à la Commande_Fournisseur sélectionnée factureWindow.DataContext = new Facture(); factureWindow.DataContext = (Facture)this._DataGridMain.SelectedItem; //booléen nullable vrai ou faux ou null bool? dialogResult = factureWindow.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 (Facture)factureWindow.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, (Facture)(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'une facture annulée : " + this.listFacture.Count() + " / " + this.max); return null; } } else { MessageBox.Show("Vous ne devez sélectionner qu'une seule facture.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } } else { MessageBox.Show("Vous devez sélectionner une facture.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } }
/// <summary> /// Ouvre la facture séléctionnée en lecture seule à l'aide d'une nouvelle fenêtre /// </summary> public Facture Look() { 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'une facture en cours ..."); //Création de la fenêtre FactureWindow factureWindow = new FactureWindow(); //Initialisation du Datacontext en Commande_Fournisseur et association à la Commande_Fournisseur sélectionnée factureWindow.DataContext = new Facture(); factureWindow.DataContext = (Facture)this._DataGridMain.SelectedItem; //Je positionne la lecture seule sur la fenêtre factureWindow.lectureSeule(); factureWindow.soloLecture = true; //J'affiche la fenêtre bool? dialogResult = factureWindow.ShowDialog(); //Affichage du message "affichage en cours" ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = false; ((App)App.Current)._theMainWindow.changementTexteStatusBar("Affichage d'une facture terminé : " + this.listFacture.Count() + " / " + this.max); //Renvoi null return null; } else { MessageBox.Show("Vous ne devez sélectionner qu'une seule facture.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } } else { MessageBox.Show("Vous devez sélectionner une facture.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } }
/// <summary> /// duplique une Commande_Fournisseur à la liste à l'aide d'une nouvelle fenêtre /// </summary> public Facture Duplicate() { if (this._DataGridMain.SelectedItem != null) { if (this._DataGridMain.SelectedItems.Count == 1) { //Affichage du message "ajout en cours" ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = true; ((App)App.Current)._theMainWindow.changementTexteStatusBar("Dupliquer une facture en cours ..."); //Création de la fenêtre FactureWindow factureWindow = new FactureWindow(); //Duplication de la commande sélectionnée Facture tmp = new Facture(); tmp = duplicateFacture((Facture)this._DataGridMain.SelectedItem); //Association de l'élement dupliqué au datacontext de la fenêtre factureWindow.DataContext = tmp; //booléen nullable vrai ou faux ou null bool? dialogResult = factureWindow.ShowDialog(); if (dialogResult.HasValue && dialogResult.Value == true) { return (Facture)factureWindow.DataContext; } else { try { //On détache la commande ((App)App.Current).mySitaffEntities.Detach((Facture)factureWindow.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("Dupliquer une facture annulé : " + this.listFacture.Count() + " / " + this.max); return null; } } else { MessageBox.Show("Vous ne devez sélectionner qu'une seule facture.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } } else { MessageBox.Show("Vous devez sélectionner une facture.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } }
private void _buttonAfficherFacture_Click_1(object sender, RoutedEventArgs e) { if (this._dataGridFacture.SelectedItems.Count == 1) { FactureWindow f = new FactureWindow(); f.DataContext = (Facture)this._dataGridFacture.SelectedItem; f.soloLecture = true; f.ShowDialog(); } }