Example #1
0
        public ActionResult Retirer(int commandeId)
        {
            CommandeDAL commandeDAL = new CommandeDAL();
            Commande    commande    = commandeDAL.Detail(commandeId);

            if (commande != null && (commande.ClientId == Client.Id || AdminCommande))
            {
                commandeDAL.Retirer(commandeId);
            }
            return(Redirect(UrlCourante()));
        }
        public ActionResult AnnulerCommande(int commandeId)
        {
            CommandeDAL commandeDAL = new CommandeDAL();
            Commande    commande    = commandeDAL.Detail(commandeId);

            if (commande != null && commande.ClientId == Client.Id)
            {
                commandeDAL.Annuler(commandeId);
            }
            return(RedirectToAction("Commandes", "Compte"));
        }
Example #3
0
        public ActionResult ReprendreArticles(int commandeId, bool viderPanier)
        {
            CommandeDAL commandeDAL = new CommandeDAL();
            Commande    commande    = commandeDAL.Detail(commandeId);

            if (commande != null && commande.ClientId == Client.Id)
            {
                List <ArticleViewModel> articles = commandeDAL.Articles(commandeId);
                if (viderPanier)
                {
                    new PanierDAL(Client.Id).Supprimer();
                    PanierViewModel.Initialiser();
                    ViewBag.Panier = null; //todo
                }
                List <Article> articlesKo = new List <Article>();
                foreach (var a in articles)
                {
                    if (!PanierViewModel.Ajouter(a.Article, a.Quantite, Client.Id, ProspectGuid))
                    {
                        articlesKo.Add(a.Article);
                    }
                }
                ViewBag.Panier = PanierViewModel;
                TempData["ArticlesNonAjoutes"] = articlesKo;
                if (articlesKo.Count > 0)
                {
                    string dossierImagesArticles = ConfigurationManager.AppSettings["PathImagesArticles"];
                    string message = "Les articles suivants ne peuvent pas être repris car ils ne sont plus disponibles :" +
                                     "<div class=\"gestionCommandeArticle\">" +
                                     "<section class=\"imagesGestionCommande\">";
                    foreach (Article article in articlesKo)
                    {
                        message += "<div class=\"indexArticle\">" +
                                   $"<img src=\"{dossierImagesArticles}/{article.Image}\" alt=\"{article.Nom}\" /> " +
                                   $"<p>{article.Nom}</p>" +
                                   $"</div>";
                    }
                    message += "</section>" +
                               "</div>";
                    TempData["message"] = new Message(message, TypeMessage.Info); // TODO faire plus propre et ailleurs (formatage html propre à la vue)
                }
                else
                {
                    TempData["message"] = new Message($"La reprise des {articles.Count} articles de votre commande s'est correctement réalisée", TypeMessage.Ok);
                }
            }
            RecupererPanierEnBase();
            ViewBag.Panier = PanierViewModel;
            return(RedirectToAction("Index", "Panier"));
        }