private void BtnAjouter_Click(object sender, EventArgs e) { if (btnAjouter.Text == "+") { btnAjouter.Text = "Valider"; tbLibelle.Text = ""; tbPrixHT.Text = ""; tbQteStock.Text = ""; tbId.Text = Convert.ToString(GestionBoutique.genererClePrimaire("idProduit", "produit")); } else { if (tbLibelle.Text != "" && tbPrixHT.Text != "" && tbQteStock.Text != "" && Convert.ToInt32(errorProvider1.Tag) == 0 && Convert.ToInt32(errorProvider2.Tag) == 0 && Convert.ToInt32(errorProvider3.Tag) == 0) { GestionProduit.add(Convert.ToInt32(tbId.Text), tbLibelle.Text, Convert.ToInt32(tbPrixHT.Text), Convert.ToInt32(tbQteStock.Text), Convert.ToInt32(cbFournisseur.SelectedValue), Convert.ToInt32(cbCategories.SelectedValue)); btnAjouter.Text = "+"; MessageBox.Show("Client(e) ajouté !", "Succès !", MessageBoxButtons.OK, MessageBoxIcon.Information); refreshData(); rafraichirInterface(); // MesClients.Clear(); } else { MessageBox.Show("Erreur, un champ n'est pas ou est mal spécifié", "Erreur", MessageBoxButtons.OK, MessageBoxIcon.Error); } } }
private void frmDetailsCommande_Load(object sender, EventArgs e) { leDetailCommande = GestionCommande.getDetailsCommande(Convert.ToInt32(tbNumero.Text)); lesCategories = GestionCategorie.getAll(); lesProduits = GestionProduit.getByIdCategorie(Convert.ToInt32(cbCategorie.SelectedValue)); refresh(); }
private void BtnSuivant_Click(object sender, EventArgs e) { if (position < GestionProduit.getNbProduit() - 1) { position++; rafraichirInterface(); } }
public void refreshData() { mesProduits.Clear(); mesProduits = GestionProduit.getAll(); position = 0; rafraichirInterface(); }
private void FrmAMSProduits_Load(object sender, EventArgs e) { this.Top = 0; this.Left = 0; refreshData(); cbFournisseur.DataSource = GestionFournisseur.getAll(); cbFournisseur.DisplayMember = "NomFournisseur"; cbFournisseur.ValueMember = "idFournisseur"; cbCategories.DataSource = GestionCategorie.getAll(); cbCategories.DisplayMember = "LibelleCategorie"; cbCategories.ValueMember = "idCategorie"; dgProduits.DataSource = GestionProduit.getSelected(); }
private void cbCategorie_SelectedIndexChanged(object sender, EventArgs e) { try { lesProduits.Clear(); lesProduits = GestionProduit.getByIdCategorie(Convert.ToInt32(cbCategorie.SelectedValue)); cbProduit.DataSource = lesProduits; cbProduit.DisplayMember = "LibelleProduit"; cbProduit.ValueMember = "idProduit"; } catch (Exception) { } }
private void refresh() { leDetailCommande.Clear(); leDetailCommande = GestionCommande.getDetailsCommande(Convert.ToInt32(tbNumero.Text)); dgProduitsCommande.DataSource = leDetailCommande; lesCategories.Clear(); lesCategories = GestionCategorie.getAll(); cbCategorie.DataSource = lesCategories; cbCategorie.DisplayMember = "LibelleCategorie"; cbCategorie.ValueMember = "idCategorie"; lesProduits.Clear(); lesProduits = GestionProduit.getByIdCategorie(Convert.ToInt32(cbCategorie.SelectedValue)); cbProduit.DataSource = lesProduits; cbProduit.DisplayMember = "LibelleProduit"; cbProduit.ValueMember = "idProduit"; }
private void BtnDernier_Click(object sender, EventArgs e) { position = GestionProduit.getNbProduit() - 1; rafraichirInterface(); }