private void btnIngresarSeries_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e) { if (Convert.ToString(gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "aplica_serie")) == "No") { XtraMessageBox.Show("No se puede agregar serie porque el producto no aplica", "Ingresando productos", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { if (Convert.ToInt32(gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "entrante")) == 0) { XtraMessageBox.Show("Debe especificar la cantidad entrante del producto para agregar serie", "Ingresando productos"); FormIngresarSerie modal = new FormIngresarSerie(); modal.CantidadRecibidos = Convert.ToInt32(gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "entrante")); modal.ShowDialog(); } } }
void IngresarSeries() { if (gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "aplica_serie").ToString() == "Si") { if (Convert.ToInt32(gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "entrante")) > 0) { FormIngresarSerie modalSerie = new FormIngresarSerie(); modalSerie.CantidadRecibidos = Convert.ToInt32(gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "entrante")); modalSerie.producto = Convert.ToString(gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "descripcion_producto")); modalSerie.idgenordencompradetalle = Convert.ToInt32(gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "idproducto")); modalSerie.ShowDialog(); } else { XtraMessageBox.Show("Debe especificar la cantidad entrante para agregar las series respectivas", "Ingresando productos", MessageBoxButtons.OK, MessageBoxIcon.Information); } } }
private void btnAgregarSeries_Click(object sender, EventArgs e) { if (gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "aplica_serie").ToString() == "Si") { if (Convert.ToInt32(gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "cantidad")) > 0) { FormIngresarSerie modalSerie = new FormIngresarSerie(); modalSerie.CantidadRecibidos = Convert.ToInt32(gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "cantidad")); modalSerie.producto = Convert.ToString(gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "producto")); modalSerie.idgenordencompradetalle = Convert.ToInt32(gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "idproducto")); modalSerie.tipo_ingreso = tipo_de_ingreso; modalSerie.id_ingreso_detalle = Convert.ToInt32(gridViewListaDetalleIngreso.GetRowCellValue(gridViewListaDetalleIngreso.FocusedRowHandle, "id_movimiento_det")); modalSerie.ShowDialog(); } else { XtraMessageBox.Show("Debe especificar la cantidad entrante para agregar las series respectivas", "Ingresando productos", MessageBoxButtons.OK, MessageBoxIcon.Information); } } }