protected void btnRemove_Click(object sender, EventArgs e)
        {
            LinkButton btn        = (LinkButton)(sender);
            int        idProducto = Convert.ToInt32(btn.CommandArgument);

            CompraLN.EliminarProductoLista(idProducto);
            Response.Redirect("carritoCompras.aspx");
        }
        protected void txtQuantity_TextChanged(object sender, EventArgs e)
        {
            TextBox     row  = (TextBox)(sender);
            GridViewRow grow = (GridViewRow)row.NamingContainer;

            row = (TextBox)grow.FindControl("txtQuantity");
            int idProducto = Convert.ToInt32(row.Attributes["CommandArgument"].ToString());

            CompraLN.actualizarCantidad(idProducto, Convert.ToInt32(row.Text));
            totalcantidad = 0;
            Response.Redirect("carritoCompras.aspx");
        }
示例#3
0
        protected void btnAgregar_Command(object sender, CommandEventArgs e)
        {
            ProductoEntidad producto      = ProductoLN.Obtener(Convert.ToInt32(e.CommandArgument.ToString()));
            CarritoEntidad  carritoCompra = new CarritoEntidad();

            carritoCompra.idProducto        = producto.idProducto;
            carritoCompra.tipoProducto      = producto.tipoProducto;
            carritoCompra.nombre            = producto.nombre;
            carritoCompra.descripcion       = producto.descripcion;
            carritoCompra.precio            = producto.precio;
            carritoCompra.cantidadProductos = 1;
            carritoCompra.total             = carritoCompra.cantidadProductos * carritoCompra.precio;

            CompraLN.AgregarProductoLista(carritoCompra);
        }
        protected void btnPagar_Command(object sender, CommandEventArgs e)
        {
            if (Session["usuario"] == null)
            {
                Response.Redirect("inicioSesion.aspx");
            }
            else
            {
                //Usuario autentificado
                UsuarioEntidad user = (UsuarioEntidad)Session["usuario"];


                CompraEntidad compra = new CompraEntidad();
                compra.fecha     = DateTime.Now;
                compra.idUsuario = user.idUsuario;

                //Datos producto
                double descuento  = 0;
                double totalPagar = 0;
                foreach (var item in listaCarrito)
                {
                    compra.idProducto        = item.idProducto;
                    compra.cantidadProductos = item.cantidadProductos;
                    totalPagar = Convert.ToDouble(item.total);
                }



                //Consultar cupon por usuario
                List <CuponEntidad> cupones = new List <CuponEntidad>();
                cupones = CuponLN.ObtenerCuponporUsuario(user.idUsuario);
                foreach (var item in cupones)
                {
                    if (item.idNivel == user.nivelEntidad.idNivel && item.idProducto == compra.idProducto)
                    {
                        NivelEntidad nivel = NivelLN.Obtener(item.idNivel);
                        if (nivel.descripcion == "Bronce")
                        {
                            compra.total = Convert.ToDecimal(totalPagar - (totalPagar * 0.02));
                            descuento    = totalPagar * 0.02;
                        }
                        else
                        {
                            if (nivel.descripcion == "Plata")
                            {
                                compra.total = Convert.ToDecimal(totalPagar - (totalPagar * 0.05));
                                descuento    = totalPagar * 0.05;
                            }
                            else
                            {
                                if (nivel.descripcion == "Oro")
                                {
                                    compra.total = Convert.ToDecimal(totalPagar - (totalPagar * 0.07));
                                    descuento    = totalPagar * 0.07;
                                }
                                else
                                {
                                    if (nivel.descripcion == "Diamante")
                                    {
                                        compra.total = Convert.ToDecimal(totalPagar - (totalPagar * 0.10));
                                        descuento    = totalPagar * 0.10;
                                    }
                                    else
                                    {
                                        compra.total = Convert.ToDecimal(totalPagar);
                                    }
                                }
                            }
                        }
                    }
                }


                if (compra != null)
                {
                    if (compra.total == 0)
                    {
                        compra.total = Convert.ToDecimal(totalPagar);
                    }

                    CompraLN.Nuevo(compra);
                    CompraLN.limpiarLista();
                    descuentoGlobal = 0;
                    totalFinal      = 0;
                    Response.Redirect("carritoCompras.aspx");
                    this.lblMensaje.Text = "Compra realizada con exito";
                }
            }
        }