public void consultarFactura() { NegocioFactura.consultarFacturaTabla(int.Parse(this.txtNumeroFactura.Text)); if (this.tablaFactura.Rows.Count != 0) { this.lblClienteMostrar.Text = Convert.ToString(this.tablaFactura.CurrentRow.Cells["IDCLIENTE"].Value); this.lblCIMostrar.Text = Convert.ToString(this.tablaFactura.CurrentRow.Cells["CICLIENTE"].Value); this.lblNombreMostrar.Text = Convert.ToString(this.tablaFactura.CurrentRow.Cells["NOMBRECLIENTE"].Value); this.lblDireccionMostrar.Text = Convert.ToString(this.tablaFactura.CurrentRow.Cells["DIRECCIONCLIENTE"].Value); this.lblTelefonoFijoMostrar.Text = Convert.ToString(this.tablaFactura.CurrentRow.Cells["TELEFONOFIJOCLIENTE"].Value); this.lblCelularMostrar.Text = Convert.ToString(this.tablaFactura.CurrentRow.Cells["TELEFONOMOVILCLIENTE"].Value); this.lblFecha.Text = Convert.ToString(this.tablaFactura.CurrentRow.Cells["FECHAFACTURA"].Value); this.lblCajero.Text = Convert.ToString(this.tablaFactura.CurrentRow.Cells["VENDEDOR"].Value); this.lblSubTotalValor.Text = Convert.ToString(this.tablaFactura.CurrentRow.Cells["SUBTOTAL"].Value); this.lblDescuentoValor.Text = Convert.ToString(this.tablaFactura.CurrentRow.Cells["DESCUENTO"].Value); this.lblIVAValor.Text = Convert.ToString(this.tablaFactura.CurrentRow.Cells["IVA"].Value); this.lblTotalValor.Text = Convert.ToString(this.tablaFactura.CurrentRow.Cells["TOTAL"].Value); this.lblTipoPagoMostrar.Text = Convert.ToString(this.tablaFactura.CurrentRow.Cells["ESTADOFACTURA"].Value); } else { this.limpiarCampos(); this.mostrarFactura(); MessageBox.Show("No existe la factura", "Consultar Factura", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void consultarFacturaTabla() { if (this.txtNumeroFactura.Text == string.Empty) { this.tablaFactura.DataSource = NegocioFactura.consultarFacturaTabla(0); } else { this.tablaFactura.DataSource = NegocioFactura.consultarFacturaTabla(int.Parse(this.txtNumeroFactura.Text)); } }