protected void ddlTipoEntrada_SelectedIndexChanged(object sender, EventArgs e) { Session["event_controle"] = ((DropDownList)sender); lblselect.Visible = false; if (ddlTipoEntrada.SelectedItem.Value.Equals("-1")) { txtPrecio.Text = "0"; txtTotal.Text = "0"; return; } int idTipoTicket = Int32.Parse(ddlTipoEntrada.SelectedItem.Value); int idEvento = Int32.Parse(lblIdEvento.Text); TiposTicketBLL bllTipos = new TiposTicketBLL(); TiposTicketBEL tipo = bllTipos.traerTiposTicketPorId(idTipoTicket); txtPrecio.Text = tipo.Precio.ToString(); int cant = Int32.Parse(txtCantEntradas.Text); txtTotal.Text = (tipo.Precio * cant).ToString(); AsientoBLL bllAsiento = new AsientoBLL(); ddlAsientos.DataSource = bllAsiento.traerAsientos(idEvento, tipo.IdTipoAsiento); ddlAsientos.DataValueField = "IdAsiento"; ddlAsientos.DataTextField = "Numero"; ddlAsientos.DataBind(); ddlAsientos.Items.Insert(0, new ListItem("..Seleccione..", "-1")); btnAgregarAsiento.Enabled = true; }
protected void txtCantEntradas_TextChanged(object sender, EventArgs e) { AsientoBLL bllAsiento = new AsientoBLL(); int precio = Int32.Parse(txtPrecio.Text); int cant = Int32.Parse(txtCantEntradas.Text); int IdTipoTicket = Int32.Parse(ddlTipoEntrada.SelectedItem.Value); if (IdTipoTicket == -1) { lblselect.Text = "Seleccione Tipo"; lblselect.Visible = true; return; } else { lblselect.Visible = false; int IdEvento = Int32.Parse(lblIdEvento.Text); TiposTicketBLL bllTipos = new TiposTicketBLL(); TiposTicketBEL tipo = bllTipos.traerTiposTicketPorId(IdTipoTicket); int cantMax = bllAsiento.traerAsientos(IdEvento, tipo.IdTipoAsiento).Count(); if (cant > cantMax) { txtCantEntradas.Text = "1"; lblErrCant.Text = "La cantidad ingresada no es valida"; lblErrCant.Visible = true; return; } else { lblErrCant.Visible = false; } if (Session["listaAsientos"] != null) { this.listaAsientos = (ArrayList)Session["listaAsientos"]; this.listaGrilla = (ArrayList)Session["listaGrilla"]; } else { this.listaAsientos = new ArrayList(); this.listaGrilla = new ArrayList(); } int indice = this.listaAsientos.Count; if (indice == 0 || indice <= cant) { txtTotal.Text = (precio * cant).ToString(); ddlAsientos.Visible = true; btnAgregarAsiento.Visible = true; } else { txtCantEntradas.Text = (cant - 1).ToString(); } } }
/// <summary> /// Modifica o elimina el asiento seleccionado en la grilla /// </summary> protected void grvAsientos_RowCommand(object sender, GridViewCommandEventArgs e) { AsientoBLL asBLL = new AsientoBLL(); if (e.CommandName.Equals("modificar")) { Response.Redirect(string.Format("AgregarAsiento.aspx?id={0}", e.CommandArgument.ToString()), false); } else if (e.CommandName.Equals("Eliminar")) { asBLL.eliminarAsiento(Int32.Parse(e.CommandArgument.ToString())); grvAsientos.DataSource = asBLL.traerAsientos(); grvAsientos.DataBind(); } }
protected void Page_Load(object sender, EventArgs e) { /// <summary> /// Carga la grilla con todos los asientos registrados de un Evento /// </summary> if (!IsPostBack) { if (Request.QueryString["id"] != null) { Session["idRecinto"] = Request.QueryString["id"].ToString(); } else { Response.Redirect("Recintos.aspx"); return; } AsientoBLL asBLL = new AsientoBLL(); grvAsientos.DataSource = asBLL.traerAsientos(); grvAsientos.DataBind(); } }