예제 #1
0
        private void Delete()
        {
            string EnumID = Request["EnumID"];

            Ent = SysEnumeration.Find(EnumID);
            SysEnumeration ent_parent = SysEnumeration.Find(Ent.ParentID);

            Ent.DoDelete();
            IList <SysEnumeration> ents_sysenumeration = SysEnumeration.FindAllByProperty(SysEnumeration.Prop_ParentID, ent_parent.EnumerationID);

            if (ents_sysenumeration.Count == 0)
            {
                ent_parent.IsLeaf = true;
                ent_parent.DoUpdate();
            }
        }
예제 #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            try
            {
                Aim.Portal.Web.WebPortalService.CheckLogon();
            }
            catch
            {
                Response.Redirect("/Login.aspx");
            }
            action   = Request["action"];
            EnumID   = Request["id"];
            ParentID = Request["ParentID"];
            switch (action)
            {
            case "select":
                if (!string.IsNullOrEmpty(EnumID))
                {
                    IList <SysEnumeration> seEnts = SysEnumeration.FindAllByProperty(SysEnumeration.Prop_SortIndex, SysEnumeration.Prop_ParentID, EnumID);
                    string result = "[";
                    int    i      = 0;
                    foreach (SysEnumeration seEnt in seEnts)
                    {
                        if (i != seEnts.Count - 1)
                        {
                            result += "{id:'" + seEnt.EnumerationID + "',Name:'" + seEnt.Name + "',Code:'" + seEnt.Code + "',Value:'" + seEnt.Value + "',ParentID:'" + seEnt.ParentID + "',leaf:" + (seEnt.IsLeaf.Value ? "true" : "false") + "},";
                        }
                        else
                        {
                            result += "{id:'" + seEnt.EnumerationID + "',Name:'" + seEnt.Name + "',Code:'" + seEnt.Code + "',Value:'" + seEnt.Value + "',ParentID:'" + seEnt.ParentID + "',leaf:" + (seEnt.IsLeaf.Value ? "true" : "false") + "}";
                        }
                        i++;
                    }
                    result += "]";
                    Response.Write(result);
                    Response.End();
                }
                break;

            case "delete":
                SysEnumeration ent_sysenumeration = SysEnumeration.Find(EnumID);
                SysEnumeration ent_parent         = SysEnumeration.Find(ent_sysenumeration.ParentID);
                ent_sysenumeration.DoDelete();
                IList <SysEnumeration> ents_sysenumeration = SysEnumeration.FindAllByProperty(SysEnumeration.Prop_ParentID, ent_parent.EnumerationID);
                if (ents_sysenumeration.Count == 0)
                {
                    ent_parent.IsLeaf = true;
                    ent_parent.DoUpdate();
                }
                //sql = @"delete sysenumeration where enumerationid='" + EnumID + "'";
                //DataHelper.ExecSql(sql);
                //string sql1 = "select * from sysenumeration where ParentID ='" + ParentID + "'";
                //IList<EasyDictionary> dics = DataHelper.QueryDictList(sql1);
                //if (dics.Count() == 0)
                //{
                //    sql = "update sysenumeration set ISLEAF =1 where enumerationid='" + ParentID + "'";
                //    DataHelper.ExecSql(sql);
                //}
                //Response.Write("");
                //Response.End();
                break;
            }
        }
예제 #3
0
        protected void Page_Load(object sender, EventArgs e)
        {
            try
            {
                Aim.Portal.Web.WebPortalService.CheckLogon();
            }
            catch
            {
                Response.Write("<script> window.parent.location.href = '/Login.aspx';</script>");
                Response.End();
            }
            action   = Request["action"];
            EnumID   = Request["id"];
            ParentID = Request["ParentID"];
            switch (action)
            {
            case "select":
                if (!string.IsNullOrEmpty(EnumID))
                {
                    IList <SysEnumeration> seEnts = SysEnumeration.FindAllByProperty(SysEnumeration.Prop_SortIndex, SysEnumeration.Prop_ParentID, EnumID);
                    string result   = "[";
                    int    i        = 0;
                    string checkstr = "";
                    foreach (SysEnumeration seEnt in seEnts)
                    {
                        checkstr = seEnt.IsLeaf.Value == true ? "checked:false," : "";
                        if (i != seEnts.Count - 1)
                        {
                            result += "{id:'" + seEnt.EnumerationID + "',Name:'" + seEnt.Name + "'," + checkstr + "Value:'" + seEnt.Value + "',ParentID:'" + seEnt.ParentID + "',leaf:" + (seEnt.IsLeaf.Value ? "true" : "false") + "},";
                        }
                        else
                        {
                            result += "{id:'" + seEnt.EnumerationID + "',Name:'" + seEnt.Name + "'," + checkstr + "Value:'" + seEnt.Value + "',ParentID:'" + seEnt.ParentID + "',leaf:" + (seEnt.IsLeaf.Value ? "true" : "false") + "}";
                        }
                        i++; checkstr = "";
                    }
                    result += "]";
                    Response.Write(result);
                    Response.End();
                }
                break;

            case "delete":
                SysEnumeration ent_sysenumeration = SysEnumeration.Find(EnumID);
                SysEnumeration ent_parent         = SysEnumeration.Find(ent_sysenumeration.ParentID);
                ent_sysenumeration.DoDelete();
                IList <SysEnumeration> ents_sysenumeration = SysEnumeration.FindAllByProperty(SysEnumeration.Prop_ParentID, ent_parent.EnumerationID);
                if (ents_sysenumeration.Count == 0)
                {
                    ent_parent.IsLeaf = true;
                    ent_parent.DoUpdate();
                }
                break;

            case "inigrid":
                string     typeids = Request["typeids"];
                DataTable  dt      = new DataTable();
                DataColumn dc      = new DataColumn("Id");
                dt.Columns.Add(dc);
                dc = new DataColumn("ProjectName");
                dt.Columns.Add(dc);
                sql = "select EnumerationID Id,Name,PatIndex('%'+EnumerationID+'%','" + typeids + "') as SortIndex from SysEnumeration where '" + typeids + "' like  '%'+EnumerationID+'%' order by SortIndex asc";
                DataTable dt_enum = DataHelper.QueryDataTable(sql);
                foreach (DataRow dr_enum in dt_enum.Rows)
                {
                    dc = new DataColumn(dr_enum["Id"].ToString() + dr_enum["Name"]);
                    dt.Columns.Add(dc);
                }
                string where = "";
                if (!string.IsNullOrEmpty(Request["belongdept"]))
                {
                    where += " and BelongDeptId='" + Request["belongdept"] + "'";
                }
                sql = "select Id,ProjectName from NCRL_SP..Project where BelongCmp='JL' " + where + " order by CreateTime desc";
                IList <EasyDictionary> dics = DataHelper.QueryDictList(sql);
                foreach (EasyDictionary dic in dics)
                {
                    DataRow dr = dt.NewRow();
                    dr["Id"]          = dic.Get <string>("Id");
                    dr["ProjectName"] = dic.Get <string>("ProjectName");
                    foreach (DataRow dr_enum in dt_enum.Rows)
                    {
                        IList <FileItem> fiEnts = FileItem.FindAllByProperties(FileItem.Prop_ProjectId, dic.Get <string>("Id"), FileItem.Prop_SecondTypeId, dr_enum["Id"]);
                        if (fiEnts.Count > 0)
                        {
                            dr[dr_enum["Id"].ToString() + dr_enum["Name"]] = "√";
                        }
                    }
                    dt.Rows.Add(dr);
                }
                Response.Write("{success:true,rows:" + JsonHelper.GetJsonStringFromDataTable(dt) + "}");
                Response.End();
                break;

            case "loadgroup":
                sql = "select GroupId id,replace(Name,'江西瑞林建设监理有限公司','') as name from SysGroup where ParentId='228' order by id asc";
                dt  = DataHelper.QueryDataTable(sql);
                Response.Write("{rows:" + JsonHelper.GetJsonStringFromDataTable(dt) + "}");
                Response.End();
                break;
            }
        }