public override void ExpandView(MixCmsContext _context = null, IDbContextTransaction _transaction = null) { this.View = MixTemplates.ReadViewModel.GetTemplateByPath(Template, Specificulture, _context, _transaction).Data; Properties = new List <ExtraProperty>(); if (!string.IsNullOrEmpty(ExtraProperties)) { JArray arr = JArray.Parse(ExtraProperties); foreach (JToken item in arr) { Properties.Add(item.ToObject <ExtraProperty>()); } } var getProductMedia = MixProductMedias.ReadViewModel.Repository.GetModelListBy(n => n.ProductId == Id && n.Specificulture == Specificulture, _context, _transaction); if (getProductMedia.IsSucceed) { MediaNavs = getProductMedia.Data.OrderBy(p => p.Priority).ToList(); MediaNavs.ForEach(n => n.IsActived = true); } var getRelatedProduct = MixProductProducts.ReadViewModel.Repository.GetModelListBy(n => n.SourceId == Id && n.Specificulture == Specificulture, _context, _transaction); if (getRelatedProduct.IsSucceed) { ProductNavs = getRelatedProduct.Data.OrderBy(p => p.Priority).ToList(); ProductNavs.ForEach(n => n.IsActived = true); } }
public override void ExpandView(SiocCmsContext _context = null, IDbContextTransaction _transaction = null) { this.View = InfoTemplateViewModel.GetTemplateByPath(Template, Specificulture, _context, _transaction).Data; var getModulesResult = NavProductModuleViewModel.Repository.GetModelListBy( m => m.ProductId == Id && m.Specificulture == Specificulture , _context, _transaction); Properties = new List <ExtraProperty>(); if (!string.IsNullOrEmpty(ExtraProperties)) { JArray arr = JArray.Parse(ExtraProperties); foreach (JObject item in arr) { Properties.Add(item.ToObject <ExtraProperty>()); } } if (getModulesResult.IsSucceed) { this.Modules = new List <FEModuleViewModel>(); foreach (var item in getModulesResult.Data) { var getModules = FEModuleViewModel.Repository.GetSingleModel( m => m.Id == item.ModuleId && m.Specificulture == item.Specificulture , _context, _transaction); if (getModules.IsSucceed) { this.Modules.Add(getModules.Data); } } } var getProductMedia = NavProductMediaViewModel.Repository.GetModelListBy(n => n.ProductId == Id && n.Specificulture == Specificulture, _context, _transaction); if (getProductMedia.IsSucceed) { MediaNavs = getProductMedia.Data.OrderBy(p => p.Priority).ToList(); MediaNavs.ForEach(n => n.IsActived = true); } var getRelatedProduct = NavRelatedProductViewModel.Repository.GetModelListBy(n => n.SourceProductId == Id && n.Specificulture == Specificulture, _context, _transaction); if (getRelatedProduct.IsSucceed) { ProductNavs = getRelatedProduct.Data.OrderBy(p => p.Priority).ToList(); ProductNavs.ForEach(n => n.IsActived = true); } }
public override void ExpandView(SiocCmsContext _context = null, IDbContextTransaction _transaction = null) { ListSupportedCulture = GlobalLanguageService.ListSupportedCulture; StrNormalPrice = SWCmsHelper.FormatPrice(NormalPrice); StrDealPrice = SWCmsHelper.FormatPrice(DealPrice); StrImportPrice = SWCmsHelper.FormatPrice(ImportPrice); //if (!string.IsNullOrEmpty(this.Tags)) //{ // ListTag = JArray.Parse(this.Tags); //} Properties = new List <ExtraProperty>(); if (!string.IsNullOrEmpty(ExtraProperties)) { JArray arr = JArray.Parse(ExtraProperties); foreach (JObject item in arr) { Properties.Add(item.ToObject <ExtraProperty>()); } } //Get Templates this.Templates = this.Templates ?? BETemplateViewModel.Repository.GetModelListBy( t => t.Template.Name == ActivedTemplate && t.FolderType == this.TemplateFolderType).Data; if (!string.IsNullOrEmpty(Template)) { this.View = Templates.FirstOrDefault(t => Template.Contains(t.FileName)); } this.View = View ?? Templates.FirstOrDefault(); if (this.View == null) { this.View = new BETemplateViewModel(new SiocTemplate() { Extension = SWCmsConstants.Parameters.TemplateExtension, TemplateId = GlobalConfigurationService.Instance.GetLocalInt(SWCmsConstants.ConfigurationKeyword.ThemeId, Specificulture, 0), TemplateName = ActivedTemplate, FolderType = TemplateFolderType, FileFolder = this.TemplateFolder, FileName = SWCmsConstants.Default.DefaultTemplate, ModifiedBy = ModifiedBy, Content = "<div></div>" }); } this.Template = SWCmsHelper.GetFullPath(new string[] { this.View?.FileFolder , this.View?.FileName }); var getCateProduct = CommonRepository.Instance.GetCategoryProductNav(Id, Specificulture, _context, _transaction); if (getCateProduct.IsSucceed) { this.Categories = getCateProduct.Data; this.Categories.ForEach(c => { c.IsActived = NavCategoryProductViewModel.Repository.CheckIsExists(n => n.CategoryId == c.CategoryId && n.ProductId == Id, _context, _transaction); }); } var getModuleProduct = CommonRepository.Instance.GetModuleProductNav(Id, Specificulture, _context, _transaction); if (getModuleProduct.IsSucceed) { this.Modules = getModuleProduct.Data; } var getProductModule = CommonRepository.Instance.GetProductModuleNav(Id, Specificulture, _context, _transaction); if (getProductModule.IsSucceed) { this.ModuleNavs = getProductModule.Data; } var getProductMedia = NavProductMediaViewModel.Repository.GetModelListBy(n => n.ProductId == Id && n.Specificulture == Specificulture, _context, _transaction); if (getProductMedia.IsSucceed) { MediaNavs = getProductMedia.Data.OrderBy(p => p.Priority).ToList(); MediaNavs.ForEach(n => n.IsActived = true); } var getRelatedProduct = NavRelatedProductViewModel.Repository.GetModelListBy(n => (n.SourceProductId == Id || n.RelatedProductId == Id) && n.Specificulture == Specificulture, _context, _transaction); if (getRelatedProduct.IsSucceed) { ProductNavs = getRelatedProduct.Data.OrderBy(p => p.Priority).ToList(); ProductNavs.ForEach(n => n.IsActived = true); } this.ListSupportedCulture.ForEach(c => c.IsSupported = (string.IsNullOrEmpty(Id) && c.Specificulture == Specificulture) || Repository.CheckIsExists(a => a.Id == Id && a.Specificulture == c.Specificulture, _context, _transaction) ); this.ActivedModules = new List <BEModuleViewModel>(); foreach (var module in this.ModuleNavs.Where(m => m.IsActived)) { var getModule = BEModuleViewModel.Repository.GetSingleModel(m => m.Id == module.ModuleId && m.Specificulture == module.Specificulture, _context, _transaction); if (getModule.IsSucceed) { this.ActivedModules.Add(getModule.Data); this.ActivedModules.ForEach(m => m.LoadData(Id)); } } }