コード例 #1
0
        public IActionResult AddSubcategory(AddSubcategoryViewModel vm)
        {
            vm.ModifiedBy = User.Identity.Name;
            _subcategoryRepo.AddSubcategory(vm);
            var url = Url.Action("Index", "Subcategory");

            return(Json(url));
        }
コード例 #2
0
        public IViewComponentResult Invoke()
        {
            var category  = _categoryRepo.Categories;
            var attrGroup = _attrGroupRepo.AttributeGroups;
            var subcatVm  = new AddSubcategoryViewModel
            {
                Category        = category,
                AttributeGroups = attrGroup
            };

            return(View(subcatVm));
        }
コード例 #3
0
        public void PublishSubcategory(AddSubcategoryViewModel vm)
        {
            var ctxSubcategory = ctx.Subcategories.FirstOrDefault(x => x.Id.Equals(vm.Id));

            if (ctxSubcategory != null)
            {
                // The subcategories category.
                var ctxCategory = ctx.Categories.FirstOrDefault(x => x.Id.Equals(ctxSubcategory.CategoryId));
                if (!ctxSubcategory.Published)
                {
                    ctxSubcategory.Published = true;
                    ctxCategory.Published    = true;
                }
                else
                {
                    ctxSubcategory.Published = false;
                    // If all the category subcategories have false (unpublished) for all subcats, then the category needs to also be false (unpublished).
                    if (ctxCategory.Subcategories.Count(x => x.Published) == 0)
                    {
                        ctxCategory.Published = false;
                    }
                }
                ctx.SaveChanges();
                // The products in the subcategory.
                var ctxProducts = ctx.Products.Where(p => p.SubcategoryId.Equals(vm.Id));
                foreach (var prod in ctxProducts)
                {
                    // If the subcategory is true (published), then all the subcategories products need to be true (published).
                    if (ctxSubcategory.Published)
                    {
                        prod.Published = true;
                    }
                    // If the subcategory is false (unpublished), then all the subcategories products need to be false (unpublished).
                    else
                    {
                        prod.Published = false;
                    }
                }
                ctx.SaveChanges();
            }
        }
コード例 #4
0
 // CREATE and UPDATE subcategory.
 public void AddSubcategory(AddSubcategoryViewModel vm)
 {
     if (vm.Id == 0)     // Create
     {
         // If the Subcategory has any connecting Attribute Groups.
         if (vm.AttributeGroupId != null)
         {
             var subcatAttrGroupList = new List <SubcategoryAttributeGroup>();
             foreach (var attrGroupId in vm.AttributeGroupId)
             {
                 var vmSubcatAttrGroup = new SubcategoryAttributeGroup
                 {
                     SubcategoryId    = vm.Id,
                     AttributeGroupId = attrGroupId
                 };
                 subcatAttrGroupList.Add(vmSubcatAttrGroup);
             }
             var newSubcat = new Subcategory
             {
                 Name       = vm.Name,
                 CategoryId = vm.CategoryId,
                 Products   = null,
                 SubcategoryAttributeGroups = subcatAttrGroupList,
                 AddedDate   = DateTime.Now,
                 UpdatedDate = DateTime.Now,
                 Published   = false,
                 Version     = 1,
                 ModifiedBy  = vm.ModifiedBy
             };
             ctx.Subcategories.Add(newSubcat);
         }
         else
         {
             // Otherwise will save SubcategoryAttributeGroups as null.
             var newSubcat = new Subcategory
             {
                 Name       = vm.Name,
                 CategoryId = vm.CategoryId,
                 Products   = null,
                 SubcategoryAttributeGroups = null,
                 AddedDate   = DateTime.Now,
                 UpdatedDate = DateTime.Now,
                 Published   = false,
                 Version     = 1,
                 ModifiedBy  = vm.ModifiedBy
             };
             ctx.Subcategories.Add(newSubcat);
         }
     }
     else     // Update
     {
         var ctxSubcategory      = ctx.Subcategories.FirstOrDefault(x => x.Id.Equals(vm.Id));
         var ctxSubcatAttrGroups = ctx.SubcategoryAttributeGroups.Where(x => x.SubcategoryId == vm.Id);
         // Remove the subcat attribute group connection from DB first.
         ctx.SubcategoryAttributeGroups.RemoveRange(ctxSubcatAttrGroups);
         var subcatAttrGroupList = new List <SubcategoryAttributeGroup>();
         foreach (var attrGroupId in vm.AttributeGroupId)
         {
             var vmSubcatAttrGroup = new SubcategoryAttributeGroup
             {
                 SubcategoryId    = vm.Id,
                 AttributeGroupId = attrGroupId
             };
             subcatAttrGroupList.Add(vmSubcatAttrGroup);
         }
         if (ctxSubcategory != null)
         {
             ctxSubcategory.Name       = vm.Name;
             ctxSubcategory.CategoryId = vm.CategoryId;
             ctxSubcategory.SubcategoryAttributeGroups = subcatAttrGroupList;
             ctxSubcategory.UpdatedDate = DateTime.Now;
             ctxSubcategory.Version     = ctxSubcategory.Version + 1;
             ctxSubcategory.ModifiedBy  = vm.ModifiedBy;
         }
     }
     ctx.SaveChanges();
 }
コード例 #5
0
 public IActionResult PublishSubcategory(AddSubcategoryViewModel vm)
 {
     _subcategoryRepo.PublishSubcategory(vm);
     return(RedirectToAction(nameof(Index)));
 }