Esempio n. 1
0
        private void btTodosPendientes_Click(object sender, EventArgs e)
        {
            Facturacion formF = new Facturacion(0, user);

            formF.Show();
            this.Close();
        }
Esempio n. 2
0
 private void btnContinuar_Click(object sender, EventArgs e)
 {
     decimal id_item = getIdItem();
     if (cbItems.Text == "")
     {
         MessageBox.Show("Ingrese un tipo de item pendiente");
     }
     else {
         Facturacion formF = new Facturacion(id_item, user);
         formF.Show();
         this.Close();
     }
 }
Esempio n. 3
0
        private void btnContinuar_Click(object sender, EventArgs e)
        {
            decimal id_item = getIdItem();

            if (cbItems.Text == "")
            {
                MessageBox.Show("Ingrese un tipo de item pendiente");
            }
            else
            {
                Facturacion formF = new Facturacion(id_item, user);
                formF.Show();
                this.Close();
            }
        }
Esempio n. 4
0
 private void btTodosPendientes_Click(object sender, EventArgs e)
 {
     Facturacion formF = new Facturacion(0, user);
     formF.Show();
     this.Close();
 }