/*  private void Total_Click(object sender, EventArgs e)
         * {
         *    if (Validation.VerificationCode(codeC.Text))
         *    {
         *        for (int i = 0; i < dataGridViewNouvelleTransaction.Rows.Count; i++)
         *        {
         *            if (dataGridViewNouvelleTransaction.Rows[i].Cells[2].Selected)
         *            {
         *                float Total = 0;
         *                int varproduit = -1;
         *                var parsing = dataGridViewNouvelleTransaction.Rows[i].Cells[0].Value;
         *                varproduit = int.Parse(parsing.ToString());
         *
         *                MySqlCommand comandProduit = new MySqlCommand("select * from produit where code =" + varproduit, databaseConnection);
         *
         *                try
         *                {
         *                    MySqlDataReader myReader1 = comandProduit.ExecuteReader();
         *                    if (myReader1.HasRows)
         *                    {
         *                        while (myReader1.Read())
         *                        {
         *                            int quantiteDemande = int.Parse(dataGridViewNouvelleTransaction.Rows[i].Cells[3].Value.ToString());
         *                            Total = myReader1.GetFloat(3) * (1 + myReader1.GetFloat(4)) * quantiteDemande;
         *                            MessageBox.Show("Le total de votre commande est de : " + Total);
         *                        }
         *
         *                    }
         *                    myReader1.Close();
         *                }
         *                catch (Exception excep)
         *                {
         *                    MessageBox.Show("Erreur Vérifier Votre code SQL " + excep.Message);
         *                }
         *            }
         *        }
         *    }
         *
         * } */

        private void Ajouter_Click(object sender, EventArgs e)
        {
            if (Validation.VerificationCode(codeC.Text))
            {
                for (int i = 0; i < dataGridViewNouvelleTransaction.Rows.Count; i++)
                {
                    if (dataGridViewNouvelleTransaction.Rows[i].Cells[2].Selected)
                    {
                        int idproduit = -1;
                        var parsing   = dataGridViewNouvelleTransaction.Rows[i].Cells[0].Value;
                        idproduit = int.Parse(parsing.ToString());

                        MySqlCommand commandDB = new MySqlCommand("insert into Transaction (datetr, codeclient, codeproduit, qteaVendre) values ( '"
                                                                  + dateTimePicker1.Value.ToString("yyyy-MM-dd HH:mm:ss") + "','" + codeC.Text + "','" + idproduit + "','" +
                                                                  dataGridViewNouvelleTransaction.Rows[i].Cells[3].Value.ToString() + "')", databaseConnection);

                        try
                        {
                            MySqlDataReader myReader = commandDB.ExecuteReader();
                            MessageBox.Show("La transactin a été ajoutée avec succès! ");
                        }
                        catch (Exception excep)
                        {
                            MessageBox.Show("Erreur dans la sélection du produit ! " + excep.Message);
                        }
                    }
                }
            }
        }
 private void maj_Click(object sender, EventArgs e)
 {
     if (Validation.VerificationCode(codeProduit.Text) && Validation.VerificationQuantite(quantite.Text))
     {
         String       x         = "UPDATE Produit SET quantite =" + int.Parse(quantite.Text) + " where code=" + int.Parse(codeProduit.Text);
         MySqlCommand commandDB = new MySqlCommand(x, databaseConnection);
         try
         {
             databaseConnection.Open();
             MySqlDataReader myReader = commandDB.ExecuteReader();
             MessageBox.Show("La quantité a été mise à jour avec succès.");
         }
         catch (Exception excep)
         {
             MessageBox.Show("Erreurr " + excep.Message);
         }
     }
 }
Пример #3
0
        private void Modifier_Click(object sender, EventArgs e)
        {
            if (Validation.VerificationCode(code.Text) && Validation.VerificationTexte(nom.Text) && Validation.VerificationTexte(prenom.Text) && Validation.VerificationEmail(email.Text)

                && Validation.VerificationTelephone(telephone.Text) && Validation.VerificationTexte(adresse.Text))
            {
                String       x         = "UPDATE Client SET nomc ='" + nom.Text + "', prenomc = '" + prenom.Text + "', emailc = '" + email.Text + "', telephonec = " + int.Parse(telephone.Text) + ", adressec = '" + adresse.Text + "' where codec=" + int.Parse(code.Text);
                MySqlCommand commandDB = new MySqlCommand(x, databaseConnection);

                try
                {
                    databaseConnection.Open();
                    MySqlDataReader myReader = commandDB.ExecuteReader();
                    MessageBox.Show("Le Client a été modifié avec succès ! ");
                }
                catch (Exception excep)
                {
                    MessageBox.Show("Erreurr " + excep.Message);
                }
            }
        }
Пример #4
0
        private void modifier_Click(object sender, EventArgs e)
        {
            if (Validation.VerificationCode(codeTR.Text) && Validation.VerificationCode(codeClientTr.Text) &&
                Validation.VerificationCode(codeProduitTr.Text))
            {
                String x = "UPDATE Transaction SET datetr = '" + dateTimePickerTr.Value.ToString("yyyy-MM-dd HH:mm:ss") + "', codeclient = '" + codeClientTr.Text + "', codeproduit = '" + codeProduitTr.Text + "', qteaVendre = '" + QteVendu.Text + "' where codetr=" + int.Parse(codeTR.Text);


                MySqlCommand commandDB = new MySqlCommand(x, databaseConnection);
                try
                {
                    databaseConnection.Open();
                    MySqlDataReader myReader = commandDB.ExecuteReader();
                    MessageBox.Show("La transaction a été modifié avec succès ! ");
                    databaseConnection.Close();
                }
                catch (Exception excep)
                {
                    MessageBox.Show("Erreurr " + excep.Message);
                }
            }
        }
 private void supprimer_Click(object sender, EventArgs e)
 {
     if (Validation.VerificationCode(code.Text))
     {
         MySqlCommand commandDB = new MySqlCommand("delete from Client where codec=" + code.Text, databaseConnection);
         try
         {
             databaseConnection.Open();
             if (commandDB.ExecuteNonQuery() == 1)
             {
                 MessageBox.Show("Le client a été supprimer !!! ");
             }
             else
             {
                 MessageBox.Show("Le client n'a pas été supprimer !!! ");
             }
         }
         catch (Exception excep)
         {
             MessageBox.Show("Erreurr " + excep.Message);
         }
     }
 }