Exemple #1
0
        public HtmlDataOperRetDto WriteTplValueToTable(CreateSelfTplDto input)
        {
            string tplIds  = string.Empty;
            string specIds = string.Empty;

            foreach (var item in input.selfTpls)
            {
                tplIds += item.tplId + ",";
                foreach (var specItem in item.specList)
                {
                    specIds += specItem.key + ",";
                }
            }
            tplIds  = tplIds.Trim(',');
            specIds = specIds.Trim(',');

            SelfTpl addSelfTpl = new SelfTpl();

            addSelfTpl.tplIds     = tplIds;
            addSelfTpl.tplName    = input.tplName;
            addSelfTpl.userId     = AbpSession.UserId ?? 0;
            addSelfTpl.tplSpecIds = specIds;
            addSelfTpl.IsDeleted  = false;
            this._selfTplRepostitory.Insert(addSelfTpl);

            return
                (new HtmlDataOperRetDto()
            {
                Code = 1,
                Message = "操作成功"
            });
        }
Exemple #2
0
        // 按照用户id获取其所有的快捷方式
        public List <CreateSelfTplDto> GetTplInfoById()
        {
            long usrId = AbpSession.UserId ?? 0;

            var tpls = this._selfTplRepostitory.GetAll().Where(x => x.userId == usrId && !x.IsDeleted).ToList();

            string tplIds  = string.Empty;
            string specIds = string.Empty;
            List <CreateSelfTplDto> selfTplList = new List <CreateSelfTplDto>();

            foreach (var tpl in tpls)
            {
                CreateSelfTplDto tmpSelfTpl = new CreateSelfTplDto();
                tplIds  += "," + tpl.tplIds;
                specIds += "," + tpl.tplSpecIds;

                var tplStrArray = tpl.tplIds.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
                //int[] tplIntArray = Array.ConvertAll<string, int>(tplStrArray, s => int.Parse(s));

                List <SelfTplDto> selfTpls = new List <SelfTplDto>();
                foreach (var tplId in tplStrArray)
                {
                    SelfTplDto tmpTpl = new SelfTplDto();
                    tmpTpl.tplId = tplId;
                    selfTpls.Add(tmpTpl);
                }

                tmpSelfTpl.id       = tpl.Id;
                tmpSelfTpl.selfTpls = selfTpls;
                tmpSelfTpl.tplName  = tpl.tplName;

                selfTplList.Add(tmpSelfTpl);
            }

            var tplStrIds      = tplIds.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
            var tplIntIds      = Array.ConvertAll <string, int>(tplStrIds, s => int.Parse(s));
            var tplSpecStrIds  = specIds.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
            var tplSpecIntIds  = Array.ConvertAll <string, int>(tplSpecStrIds, s => int.Parse(s));
            var allTemplate    = this._tplRepostitory.GetAll().Where(x => tplIntIds.Contains(x.Id)).ToList();
            var allTplSpecimen = this._tplSpecRepostitory.GetAll().Where(x => tplSpecIntIds.Contains(x.Id)).ToList();

            foreach (var item in selfTplList)
            {
                foreach (var tplItem in item.selfTpls)
                {
                    int tplid = int.Parse(tplItem.tplId);
                    tplItem.tplName = allTemplate.Single(x => x.Id == tplid).TplName;
                    var tplSpecimens = allTplSpecimen.Where(x => x.TplId == tplid).OrderBy(x => x.OrderNum).ToList();
                    var specList     = new List <KeyValDto>();
                    foreach (var specItem in tplSpecimens)
                    {
                        KeyValDto kv = new KeyValDto();
                        kv.key = specItem.Id.ToString();
                        kv.val = specItem.SpecName;
                        specList.Add(kv);
                    }
                    tplItem.specList = specList;
                }
            }

            return(selfTplList);
        }