private void BindGrid(int currentPage) { try { if (this.usuario.ClienteID == 0) { throw new Exception("El usuario conectado no corresponde a un cliente."); } DataSet ds = new DataSet(); SisPackController.AdministrarGrillas.Configurar(hgGuias, "GuiaID", this.CantidadOpciones); string tGuia = ""; string tipoGuia = ""; if (this.rbtCodigoBarras.Checked && this.txtCodigoBarras.Text.Length > 0) { tGuia = this.txtCodigoBarras.Text.Substring(0, 1); // if (tGuia != "3" && tGuia != "4") // throw new Exception("El código de barras ingresado no es válido."); tipoGuia = NegociosSisPackInterface.SisPack.TipoGuia(tGuia); if (tipoGuia.Equals("")) { throw new Exception("El código de barras ingresado no es válido."); } this.ddlTipoGuia.SelectedValue = tipoGuia; this.txtNroSucursal.Text = this.txtCodigoBarras.Text.Substring(1, 4); this.txtNroGuia.Text = this.txtCodigoBarras.Text.Substring(5); } else if (this.rbtNroGuia.Checked) { tipoGuia = this.ddlTipoGuia.SelectedValue; } DateTime fechaDesde = Utiles.Fechas.FormatFechaDDMMYYYY(this.txtFechaDesde.Text.Length > 0 ? this.txtFechaDesde.Text : "01/01/1900"); DateTime fechaHasta = Utiles.Fechas.FormatFechaDDMMYYYY(this.txtFechaHasta.Text.Length > 0 ? this.txtFechaHasta.Text : "31/12/2050"); // if (tGuia == "3") // tipoGuia = "A"; // else if (tGuia == "4") // tipoGuia = "B"; int nroGuia = Utiles.Validaciones.obtieneEntero(this.txtNroGuia.Text); int nroSucursalGuia = Utiles.Validaciones.obtieneEntero(this.txtNroSucursal.Text); ICliente cliente = ClienteFactory.GetCliente(); DsGuiasCliente dsGuiasCliente = cliente.GetGuias(fechaDesde, fechaHasta, tipoGuia, nroGuia, nroSucursalGuia, this.usuario.ClienteID); ds.Tables.Add(dsGuiasCliente.Datos.Clone()); ds.Tables[0].TableName = "GuiasCliente"; foreach (System.Data.DataRow row in dsGuiasCliente.Datos.Rows) { ds.Tables["GuiasCliente"].ImportRow(row); } DsGuiasClienteDetalle dsDetalle = cliente.GetGuiasDetalle(fechaDesde, fechaHasta, tipoGuia, nroGuia, nroSucursalGuia, this.usuario.ClienteID); ds.Tables.Add(dsDetalle.Datos.Clone()); ds.Tables[1].TableName = "Detalle"; foreach (System.Data.DataRow row in dsDetalle.Datos.Rows) { ds.Tables["Detalle"].ImportRow(row); } DataColumn dc1 = ds.Tables[0].Columns["GuiaID"]; DataColumn dc2 = ds.Tables[1].Columns["GuiaID"]; DataRelation dr = new DataRelation("GuiaID_Detalle", dc1, dc2, false); ds.Relations.Add(dr); //hgGuias.DataSource = ds; hgGuias.DataSource = ds; hgGuias.DataMember = "GuiasCliente"; hgGuias.CurrentPageIndex = currentPage; hgGuias.DataBind(); } catch (Exception ex) { ManejaErrores(ex); } }
private void BindGrid(int currentPage) { try { if (this.rbtCodigoBarras.Checked && this.txtCodigoBarras.Text.Length == 0) { throw new Exception("Debe ingresar el código de barras que desea consultar."); } else if (this.rbtNroGuia.Checked && this.txtNroGuia.Text.Length == 0) { throw new Exception("Debe ingresar el número de guía que desea consultar."); } if (this.txtNroGuia.Text.Length < 5) { throw new Exception("El número de guía ingresado no es válido."); } DataSet ds = new DataSet(); SisPackController.AdministrarGrillas.Configurar(hgGuias, "GuiaID", 10); /*string tGuia = ""; * string tipoGuia = ""; * if (this.rbtCodigoBarras.Checked && this.txtCodigoBarras.Text.Length > 0) * { * tGuia = this.txtCodigoBarras.Text.Substring(0,1); * if (tGuia != "3" && tGuia != "4") * throw new Exception("El código de barras ingresado no es válido."); * * this.ddlTipoGuia.SelectedValue = tGuia == "3" ? "A" : "B"; * this.txtNroSucursal.Text = this.txtCodigoBarras.Text.Substring(1,4); * this.txtNroGuia.Text = this.txtCodigoBarras.Text.Substring(5); * } * else if (this.rbtNroGuia.Checked) * { * tipoGuia = this.ddlTipoGuia.SelectedValue; * } * * * if (tGuia == "3") * tipoGuia = "A"; * else if (tGuia == "4") * tipoGuia = "B"; * * int nroGuia = Utiles.Validaciones.obtieneEntero(this.txtNroGuia.Text); * int nroSucursalGuia = Utiles.Validaciones.obtieneEntero(this.txtNroSucursal.Text); */ string codigoGuia = this.txtNroGuia.Text; string codigoBarras = this.txtCodigoBarras.Text; ICliente cliente = ClienteFactory.GetCliente(); DsGuiasCliente dsGuiasCliente = cliente.GetGuiasEventual(codigoGuia, codigoBarras, string.Empty, string.Empty, string.Empty); ds.Tables.Add(dsGuiasCliente.Datos.Clone()); ds.Tables[0].TableName = "GuiasCliente"; foreach (System.Data.DataRow row in dsGuiasCliente.Datos.Rows) { ds.Tables["GuiasCliente"].ImportRow(row); } DsGuiasClienteDetalle dsDetalle = cliente.GetGuiasDetalleEventual(dsGuiasCliente); ds.Tables.Add(dsDetalle.Datos.Clone()); ds.Tables[1].TableName = "Detalle"; foreach (System.Data.DataRow row in dsDetalle.Datos.Rows) { ds.Tables["Detalle"].ImportRow(row); } DataColumn dc1 = ds.Tables[0].Columns["GuiaID"]; DataColumn dc2 = ds.Tables[1].Columns["GuiaID"]; DataRelation dr = new DataRelation("GuiaID_Detalle", dc1, dc2, false); ds.Relations.Add(dr); /* * XmlDataDocument xml = new XmlDataDocument(ds); * Response.Write(xml); * Response.Flush(); */ //hgGuias.DataSource = ds; hgGuias.RowExpanded[0] = true; hgGuias.DataSource = ds; hgGuias.DataMember = "GuiasCliente"; hgGuias.CurrentPageIndex = currentPage; hgGuias.DataBind(); } catch (Exception ex) { ManejaErrores(ex); } }