Ejemplo n.º 1
0
 private void button1_Click(object sender, EventArgs e)
 {
     if (textBox1.Text != "")
     {
         Fattura fat = new Fattura(mConnection, "Nota Credito", idcliente.ToString(), Convert.ToSingle(textBox1.Text), true, richTextBox1.Text, Convert.ToSingle(textBox2.Text));
         fat.Show();
     }
 }
Ejemplo n.º 2
0
 private void button2_Click(object sender, EventArgs e)
 {
     if (!bibite)
     {
         Fattura f = new Fattura(mConnection, "Ricevuta", Prenotazione, prepaid);//, cliente, numerocamere, datear, datepar, tariffa, forfait, anticipo, iva);
         f.Show();
     }
     else
     {
         Fattura f = new Fattura(mConnection, "Fattura", Prenotazione, prepaid, bibite);//,cliente, numerocamere,datear, datepar, tariffa, forfait,anticipo,iva);
         f.Show();
     }
     this.Close();
 }
Ejemplo n.º 3
0
        private void button3_Click(object sender, EventArgs e)
        {
            if (listView1.SelectedItems.Count > 0)
            {
                if (comboBox1.SelectedItem.ToString() == "Fattura")
                {
                    Fattura fat = new Fattura(mConnection, "Fattura", Prenotazione, true, Convert.ToInt16(listView1.SelectedItems[0].Text));
                    fat.Show();

                    // mConnection.cmdMySQL.CommandText = "UPDATE progressivi set Fatture=" + nfattura + ";";
                }
                else
                {
                    Fattura fat = new Fattura(mConnection, "Ricevuta", Prenotazione, true, Convert.ToInt16(listView1.SelectedItems[0].Text));
                    fat.Show();
                    //mConnection.cmdMySQL.CommandText = "UPDATE progressivi set Ricevute=" + nfattura + ";";
                }
                this.Close();
            }
        }