Picking up data in the entity framework database (taking the discount coupons)

0

Good evening, I would like to know how I can do ajax for him to go through my bank and see and there is a discount code:

DAO:

public void Adiciona(Desconto desconto)
    {
        using (var context = new LojaContext())
        {
            context.Descontos.Add(desconto);
            context.SaveChanges();
        }
    }

    public IList<Desconto> Lista()
    {
        using (var contexto = new LojaContext())
        {
            return contexto.Descontos.ToList();
        }
    }

    public void Atualiza(Desconto desconto)
    {
        using (var contexto = new LojaContext())
        {
            contexto.Descontos.Update(desconto);
            contexto.SaveChanges();
        }
    }
    public Desconto BuscaPorId(int id)
    {
        using (var contexto = new LojaContext())
        {
            return contexto.Descontos.Find(id);
        }
    }

My table in the database shows ID, DISCOUNT PERCENTAGE AND DISCOUNT CODE.

My cart controller where you have the button put the code and apply the discount:

public ActionResult AdicionarCarrinho(int id)
    {
        var carrinho = Session["Carrinho"] != null ? (Pedido)Session["Carrinho"] : new Pedido();


        var produto = new ProdutosDAO().BuscaPorId(id);

        foreach (var item in carrinho.ItensPedido)
        {
            if (item.Produto.Id == produto.Id)
            {
                item.Quantidade++;
                Session["Carrinho"] = carrinho;
                return RedirectToAction("Carrinho");
            }
        }
        carrinho.AdicionaProduto(produto);
        Session["Carrinho"] = carrinho;
        return RedirectToAction("Carrinho");
    }
    public ActionResult ExcluiProdutoCarrinho(int id)
    {
        var carrinho = Session["Carrinho"] != null ? (Pedido)Session["Carrinho"] : new Pedido();
        var produto = new ProdutosDAO().BuscaPorId(id);
        carrinho.RemoverProduto(produto.Id);
        Session["Carrinho"] = carrinho;
        return RedirectToAction("Carrinho");
    }
    public ActionResult Carrinho()
    {
        Pedido carrinho = Session["Carrinho"] != null ? (Pedido)Session["Carrinho"] : new Pedido();
        var produtos = carrinho.ItensPedido;
        ViewBag.Produtos = produtos;
        return View(carrinho);
    }

    //public ActionResult AdicionarDesconto(int id)
    //{
    //    if ()
    //}

My button:                     Apply discount                 

I need to know how to add these discount coupons and make an ajax to get them in the bank and use the discount button.

    
asked by anonymous 03.10.2018 / 02:49

1 answer

0

My ajax

    function aplicaDesconto() {
        var codigo = $("#codDesconto").val();
        var total = @total;
        $.ajax({
            type: 'POST',
            url: 'AplicaDesconto',
            data: {
                codigo
            },
            success: function (data) {
                if (data.sucesso == true) {
                    $(".totalCarrinhoCompra").text(@total  * 0.20);

                    var DESCONTO10 = @total  * 0.10;
                    var DESCONTO20 = @total  * 0.20;
                    var DESCONTO30 = @total  * 0.30;
                    var DESCONTO40 = @total  * 0.40;
                    var DESCONTO50 = @total  * 0.50;
                    var DESCONTO60 = @total  * 0.60;
                    var DESCONTO70 = @total  * 0.70;
                    var DESCONTO80 = @total  * 0.80;
                    var DESCONTO90 = @total  * 0.90;


                } else {

                }

            }

        })
    }

My button:

//                     Apply discount               // >

You are not picking up the items and applying the discount ..

Errors: Uncaught SyntaxError: Unexpected number

Uncaught ReferenceError: appliesDesconto is not defined     at HTMLButtonElement.onclick

    
03.10.2018 / 22:12