using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace LYFZ.Software.MainBusiness.MembershipManage { public partial class MemberDataSetSmallForm : LYFZ.Software.UI.MembershipManage.MemberDataSetSmallForm { public MemberDataSetSmallForm() { } int IntWidth = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Width; Form frm = null; /// /// 窗体加载事件 /// /// /// protected override void MemberDataSetSmallForm_Load(object sender, EventArgs e) { this.Location = new Point(200, 110); List hideControl = new List(); hideControl.Add(btnServiceContentSet); hideControl.Add(btnPackageServiceSet); //LYFZSS.SystemSpecterPossessed.ISystemSpecterPossessed.GetMySystemSpecter = LYFZSS.SystemSpecterType.SST_D; bool b = LYFZ.Software.MainBusiness.VersionControl.StaticVersion.BindVersionShowHideControl( VersionControl.VersionFunctionEnum.会员管理服务卡会员, hideControl, null, null); hideControl = new List(); hideControl.Add(btnPhotographerConferenceSet); //LYFZSS.SystemSpecterPossessed.ISystemSpecterPossessed.GetMySystemSpecter = LYFZSS.SystemSpecterType.SST_D; b = LYFZ.Software.MainBusiness.VersionControl.StaticVersion.BindVersionShowHideControl( VersionControl.VersionFunctionEnum.会员管理摄友会会员, hideControl, null, null); if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_ParameterSet_BaseSet)) { this.btnUpgradeSet.Enabled = false; } if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_ParameterSet_PointsSet)) { this.btnPointsSet.Enabled = false; } if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_ParameterSet_CashBackProportionSet)) { this.btnCashBackSet.Enabled = false; } if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_ParameterSet_RechargeTypeSet)) { this.btnRechargeType.Enabled = false; } if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_ParameterSet_GradeSet)) { this.btnGradeSet.Enabled = false; } if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_ParameterSet_ServiceContentSet)) { this.btnServiceContentSet.Enabled = false; } if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_ParameterSet_PackageServiceSet)) { this.btnPackageServiceSet.Enabled = false; } if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_ParameterSet_PhotographerConferenceSet)) { this.btnPhotographerConferenceSet.Enabled = false; } } /// /// 首页 /// /// /// protected override void btnHomePage_Click(object sender, EventArgs e) { if (this.frm != null) { this.frm.Close(); } } /// /// 会员升级设置 /// /// /// protected override void btnUpgradeSet_Click(object sender, EventArgs e) { if (this.frm != null) { this.frm.Close(); } frm = new SuperSmallForm.MemberCardUpgradeSetSuperSmallForm(); frm.Height = this.Height; frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual; frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y); frm.Show(); } /// /// 积分设置 /// /// /// protected override void btnPointsSet_Click(object sender, EventArgs e) { if (this.frm != null) { this.frm.Close(); } frm = new SuperSmallForm.PointsSetSuperSmallForm(); frm.Height = this.Height; frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual; frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y); frm.Show(); } /// /// 返现比例设置 /// /// /// protected override void btnCashBackSet_Click(object sender, EventArgs e) { if (this.frm != null) { this.frm.Close(); } frm = new SetSmallForm.DataSetCashBackSmallForm(); frm.Height = this.Height; frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual; frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y); frm.Show(); } /// /// 服务内容设置 /// /// /// protected override void btnServiceContentSet_Click(object sender, EventArgs e) { if (this.frm != null) { this.frm.Close(); } frm = new SetSmallForm.DataSetServiceContentSmallForm(); frm.Height = this.Height; frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual; frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y); frm.Show(); } /// /// 套系服务设置 /// /// /// protected override void btnPackageServiceSet_Click(object sender, EventArgs e) { if (this.frm != null) { this.frm.Close(); } frm = new SetSmallForm.DataSetServicePackageContentSetSetSmallForm(); frm.Height = this.Height; frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual; frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y); frm.Show(); } /// /// 会员等级设置 /// /// /// protected override void btnGradeSet_Click(object sender, EventArgs e) { if (this.frm != null) { this.frm.Close(); } frm = new SuperSmallForm.MemberCardGradeSetSuperSmallForm(); frm.Height = this.Height; frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual; frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y); frm.Show(); } /// /// 会员充值类型设置 /// /// /// protected override void btnRechargeType_Click(object sender, EventArgs e) { if (this.frm != null) { this.frm.Close(); } frm = new SuperSmallForm.MemberCardRechargeTypeSetSuperSmallForm(); frm.Height = this.Height; frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual; frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y); frm.Show(); } /// /// 新摄会类型设置 /// /// /// protected override void btnPhotographerConferenceSet_Click(object sender, EventArgs e) { if (this.frm != null) { this.frm.Close(); } frm = new SuperSmallForm.PhotographerConferenceSuperSmallForm(); frm.Height = this.Height; frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual; frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y); frm.Show(); } } }