private void BtnQuitar_Click(object sender, EventArgs e)
        {
            try
            {
                if (this.dgvDetalleF.Rows.Count > 0)
                {
                    if (MessageBox.Show("¿Desea quitar este registro de la lista? ", "Quitar Concepto de lista", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.Yes)
                    {
                        dgvDetalleF.Rows.RemoveAt(dgvDetalleF.CurrentRow.Index);
                        double can = 0.00;
                        double it  = 0.00;
                        foreach (DataGridViewRow row in dgvDetalleF.Rows)
                        {
                            can += Convert.ToDouble(row.Cells["Precio_Producto"].Value);
                            it  += Convert.ToDouble(row.Cells["Generales"].Value);
                        }
                        double t = can + it;
                        LblTotaApagar.Text = t.ToString();
                        TxtCantidad.Clear();
                        TxtProducto.Clear();
                    }
                }
                else
                {
                    MessageBox.Show("Debe seleccionar un registro de la lista", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }

            catch (Exception)
            {
                throw;
            }
        }
Beispiel #2
0
 public void LimpiarTextBox()
 {
     TxtIdProductp.Clear();
     TxtProducto.Clear();
     TxtPrecio.Clear();
     TxtEstadoProdutc.Clear();
 }
 private void button2_Click(object sender, EventArgs e)
 {
     TxtImpto.Clear();
     TxtPrecio.Clear();
     TxtProducto.Clear();
     TxtTotal.Clear();
     TxtTotalISV.Clear();
 }
Beispiel #4
0
 private void BtnLimpiar_Click(object sender, EventArgs e)
 {
     TxtCantidad.Clear();
     TxtDescto.Clear();
     TxtPagar.Clear();
     TxtPreciou.Clear();
     TxtProducto.Clear();
     TxtSubtotal.Clear();
 }
Beispiel #5
0
 public void Limpiar()
 {
     Txcompra.Clear();
     Txdia.Clear();
     Txmes.Clear();
     Txanio.Clear();
     Txcantipro.Clear();
     TxtProducto.Clear();
     Txproveedor.Clear();
 }
        private void BtnIngresar_Click(object sender, EventArgs e)
        {
            if (TxtProducto.Text.Trim().Length == 0)
            {
                MessageBox.Show("Ingrese la Descripción del Producto.");
                TxtProducto.Focus();
                return;
            }

            if (TxtCantidadP.Text.Trim().Length == 0)
            {
                MessageBox.Show("Ingrese La Cantidad de Productos.");
                TxtCantidadP.Focus();
                return;
            }

            if (TxtPrecioU.Text.Trim().Length == 0)
            {
                MessageBox.Show("Ingrese el Precio Unitario.");
                TxtPrecioU.Focus();
                return;
            }

            LsbDescripcion.Items.Add(TxtProducto.Text.Trim());
            LsbCant.Items.Add(TxtCantidadP.Text.Trim());
            LsbPrec.Items.Add(TxtPrecioU.Text.Trim());


            double cant, prec, mont, sumt;

            sumt = 0;

            cant = Convert.ToDouble(TxtCantidadP.Text);
            prec = Convert.ToDouble(TxtPrecioU.Text);

            mont = cant * prec;

            LsbMonto.Text = mont.ToString();
            LsbMonto.Items.Add(mont);

            TxtProducto.Clear();
            TxtCantidadP.Clear();
            TxtPrecioU.Clear();
            TxtProducto.Focus();

            contador++;
            LblDescripcion.Text = "Ingresar La Descripción del Producto # " + contador.ToString() + ": ";

            sumt         += mont;
            TxtPagar.Text = sumt.ToString();
        }
        private void BtnAgregar_Click(object sender, EventArgs e)
        {
            if (TxtCodigo.Text.Trim().Length == 0)
            {
                POO.MsgWarning("El Campo Codigo Es Requerido.");
                TxtCodigo.Focus();
                return;
            }
            if (TxtProducto.Text.Trim().Length == 0)
            {
                POO.MsgWarning("El Campo Decripción Es Requerido.");
                TxtProducto.Focus();
                return;
            }
            if (TxtCantidad.Text.Trim().Length == 0)
            {
                POO.MsgWarning("El Campo Cantidad Es Requerido.");
                TxtCantidad.Focus();
                return;
            }
            if (TxtPrecioU.Text.Trim().Length == 0)
            {
                POO.MsgWarning("El Campo Precio Unitario Es Requerido.");
                TxtPrecioU.Focus();
                return;
            }

            DataGridViewRow fila = new DataGridViewRow();

            fila.CreateCells(DgvFactura);
            fila.Cells[0].Value = TxtCodigo.Text.Trim();
            fila.Cells[1].Value = TxtProducto.Text.Trim();
            fila.Cells[2].Value = TxtCantidad.Text.Trim();
            fila.Cells[3].Value = TxtPrecioU.Text.Trim();

            double prec, cant;

            prec = Convert.ToDouble(TxtPrecioU.Text.Trim());
            cant = Convert.ToDouble(TxtCantidad.Text.Trim());

            fila.Cells[4].Value = POO.precU(prec, cant).ToString();

            DgvFactura.Rows.Add(fila);

            TxtCodigo.Clear();
            TxtProducto.Clear();
            TxtCantidad.Clear();
            TxtPrecioU.Clear();
            TxtCodigo.Focus();
        }