Exemple #1
0
        private void btTodosPendientes_Click(object sender, EventArgs e)
        {
            FormFacturacion formF = new FormFacturacion(0, user);

            formF.Show();
            this.Close();
        }
 private void btnContinuar_Click(object sender, EventArgs e)
 {
     decimal id_item = getIdItem();
     if (cbItems.Text == "")
     {
         MessageBox.Show("Ingrese un tipo de item pendiente");
     }
     else
     {
         FormFacturacion formF = new FormFacturacion(id_item, user);
         formF.Show();
         this.Close();
     }
 }
Exemple #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
            {
                FormFacturacion formF = new FormFacturacion(id_item, user);
                formF.Show();
                this.Close();
            }
        }
 private void btTodosPendientes_Click(object sender, EventArgs e)
 {
     FormFacturacion formF = new FormFacturacion(0, user);
     formF.Show();
     this.Close();
 }
Exemple #5
0
 private void btnFacturacion_Click(object sender, EventArgs e)
 {
     Facturacion.FormFacturacion frm = new Facturacion.FormFacturacion(this, usuario);
     this.Hide();
     frm.Show();
 }