示例#1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                PageBase p = (PageBase)Page;
                var      cUserPermission    = new CUserPermission();
                var      userPermissionList = cUserPermission.GetUserPermissionModelList(p.CurrentUserId);

                foreach (var userPermission in userPermissionList)
                {
                    foreach (int index in Enum.GetValues(typeof(CConstValue.Menu)))
                    {
                        // permission type == Access (0)
                        if (userPermission.MenuId == index && userPermission.IsAccess)
                        {
                            GetMenuItem(RadMenu1.Items, Enum.GetName(typeof(CConstValue.Menu), index).ToLower());
                        }
                    }
                }

                var logoPath = new CGlobal().GetLogoImagePath(p.CurrentSiteLocationId, CConstValue.ImageType.Small);
                if (logoPath != string.Empty)
                {
                    try
                    {
                        RadBinaryImageSiteLogo.DataValue = File.ReadAllBytes(logoPath);
                    }
                    catch (Exception ex)
                    {
                        Debug.Print(ex.Message);
                    }
                }
            }
        }
示例#2
0
        protected void RadGridSiteLocationUser_OnRowDrop(object sender, GridDragDropEventArgs e)
        {
            //if (e.DraggedItems.Count != 0 && RadComboBoxMenu.CheckedItems.Count > 0 && e.DestinationGrid == RadGridSiteLocation)
            if (e.DraggedItems.Count != 0 && RadComboBoxMenu.CheckedItems.Count > 0)
            {
                bool isSuccess = true;

                foreach (var dataItem in e.DraggedItems)
                {
                    if (RadComboBoxMenu.CheckedItems.Count == 1)
                    {
                        var cUserPermission = new CUserPermission();
                        var userPermission  = cUserPermission.Get(Convert.ToInt32(dataItem.GetDataKeyValue("UserPermissionId").ToString()));
                        if (userPermission != null)
                        {
                            if (cUserPermission.Delete(userPermission) == false)
                            {
                                isSuccess = false;
                            }
                        }
                    }
                    else
                    {
                        foreach (var checkedItem in RadComboBoxMenu.CheckedItems)
                        {
                            var cUserPermission = new CUserPermission();
                            // Search Type for siteLocation = 2
                            var userPermission = cUserPermission.Get(Id, Convert.ToInt32(checkedItem.Value), 2, Convert.ToInt32(dataItem.GetDataKeyValue("SiteLocationId").ToString()));
                            if (userPermission != null)
                            {
                                if (cUserPermission.Delete(userPermission) == false)
                                {
                                    isSuccess = false;
                                }
                            }
                        }
                    }
                }

                if (isSuccess)
                {
                    ShowMessage("Move Success");
                }
                else
                {
                    ShowMessage("Move Error");
                }
            }
            else
            {
                ShowMessage("Move Failed");
            }
        }
示例#3
0
        protected void RadGridSiteLocation_OnPreRender(object sender, EventArgs e)
        {
            int menuIndex = 0;

            if (RadComboBoxMenu.CheckedItems.Count == 1)
            {
                menuIndex = Convert.ToInt32(RadComboBoxMenu.CheckedItems[0].Value);
            }

            var cUserPermission = new CUserPermission();

            RadGridSiteLocation.DataSource = HelperFunctions.ToDataTable(cUserPermission.GetUserPermissionSiteLocationListProc(Id, menuIndex));
            RadGridSiteLocation.DataBind();
        }
示例#4
0
        protected void RadGridSiteLocation_OnRowDrop(object sender, GridDragDropEventArgs e)
        {
            //if (e.DraggedItems.Count != 0 && RadComboBoxMenu.CheckedItems.Count > 0 && e.DestinationGrid == RadGridSiteLocationUser)
            if (e.DraggedItems.Count != 0 && RadComboBoxMenu.CheckedItems.Count > 0)
            {
                bool isSuccess = true;

                foreach (var dataItem in e.DraggedItems)
                {
                    foreach (var checkedItem in RadComboBoxMenu.CheckedItems)
                    {
                        var cUserPermission = new CUserPermission();
                        // Search Type for siteLocation = 2
                        var userPermission = cUserPermission.Get(Id, Convert.ToInt32(checkedItem.Value), 2, Convert.ToInt32(dataItem.GetDataKeyValue("SiteLocationId").ToString()));
                        if (userPermission == null)
                        {
                            userPermission = new UserPermission()
                            {
                                SiteLocationId = Convert.ToInt32(dataItem.GetDataKeyValue("SiteLocationId").ToString()),
                                CreatedDate    = DateTime.Now,
                                CreatedId      = CurrentUserId,
                                // Search Type for site location = 2
                                PermissionType = 2,
                                MenuId         = Convert.ToInt32(checkedItem.Value),
                                UserId         = Id
                            };

                            if (cUserPermission.Add(userPermission) < 0)
                            {
                                isSuccess = false;
                            }
                        }
                    }
                }

                if (isSuccess)
                {
                    ShowMessage("Move Success");
                }
                else
                {
                    ShowMessage("Move Error");
                }
            }
            else
            {
                ShowMessage("Move Failed");
            }
        }
示例#5
0
        protected void RadComboBoxMenu_OnSelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
        {
            var sb         = new StringBuilder();
            var collection = RadComboBoxMenu.CheckedItems;

            if (collection.Count != 0)
            {
                sb.Append("<h4>Checked SiteLocation List</h4>");

                foreach (var item in collection)
                {
                    sb.Append("<li><label>" + item.Text + "</label></li>");
                }

                sb.Append("</ul>");

                itemsClientSide.Text = sb.ToString();
            }
            else
            {
                itemsClientSide.Text = "<label>No items selected</label>";
            }

            RadCheckBoxAccess.Checked = false;
            RadCheckBoxModify.Checked = false;

            if (RadComboBoxMenu.CheckedItems.Count == 1)
            {
                var cUserPermission = new CUserPermission();
                var user            = cUserPermission.Get(Id, Convert.ToInt32(RadComboBoxMenu.CheckedItems[0].Value));
                foreach (UserPermission userPermission in user)
                {
                    switch (userPermission.PermissionType)
                    {
                    // Access Permission
                    case 0:
                        RadCheckBoxAccess.Checked = true;
                        break;

                    // Modify Permission
                    case 1:
                        RadCheckBoxModify.Checked = true;
                        break;
                    }
                }
            }
        }
示例#6
0
        private void SetSave(RadCheckBox checkBox)
        {
            var cUserPermission = new CUserPermission();

            bool isSuccess = true;

            foreach (var checkItem in RadComboBoxMenu.CheckedItems)
            {
                UserPermission userPermissionAccess = cUserPermission.Get(Id, Convert.ToInt32(checkItem.Value), Convert.ToInt32(RadCheckBoxAccess.Value));
                UserPermission userPermissionModify = cUserPermission.Get(Id, Convert.ToInt32(checkItem.Value), Convert.ToInt32(RadCheckBoxModify.Value));

                // Access
                if (checkBox == RadCheckBoxAccess)
                {
                    if (RadCheckBoxAccess.Checked == true)
                    {
                        if (userPermissionAccess == null)
                        {
                            int result = cUserPermission.Add(new UserPermission()
                            {
                                PermissionType = Convert.ToInt32(RadCheckBoxAccess.Value),
                                CreatedDate    = DateTime.Now,
                                CreatedId      = CurrentUserId,
                                UserId         = Id,
                                MenuId         = Convert.ToInt32(checkItem.Value)
                            });
                            if (result < 0)
                            {
                                isSuccess = false;
                            }
                        }
                    }
                    else
                    {
                        if (userPermissionAccess != null)
                        {
                            bool result = cUserPermission.Delete(userPermissionAccess);
                            if (result == false)
                            {
                                isSuccess = false;
                            }
                        }
                    }
                }

                // Modify
                if (checkBox == RadCheckBoxModify)
                {
                    if (RadCheckBoxModify.Checked == true)
                    {
                        if (userPermissionModify == null)
                        {
                            int result = cUserPermission.Add(new UserPermission()
                            {
                                PermissionType = Convert.ToInt32(RadCheckBoxModify.Value),
                                CreatedDate    = DateTime.Now,
                                CreatedId      = CurrentUserId,
                                UserId         = Id,
                                MenuId         = Convert.ToInt32(checkItem.Value)
                            });
                            if (result < 0)
                            {
                                isSuccess = false;
                            }
                        }
                    }
                    else
                    {
                        if (userPermissionModify != null)
                        {
                            bool result = cUserPermission.Delete(userPermissionModify);
                            if (result == false)
                            {
                                isSuccess = false;
                            }
                        }
                    }
                }
            }

            if (isSuccess)
            {
                ShowMessage("It has been updated.");
            }
            else
            {
                ShowMessage("Failed.");
            }
        }