using LYFZ.ComponentLibrary; 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.InitialSet.WageSet { public partial class FrmEarlySecondPin : LYFZ.Software.UI.InitialSet.WageSet.FrmEarlySecondPin { LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder(); LYFZ.BLL.BLL_ErpSystemConfigure scbll = new BLL.BLL_ErpSystemConfigure(); public FrmEarlySecondPin() { this.Load += FrmEarlySecondPin_Load; } List mlist = new List(); string StrValue = "'PhotographersEarly','MakeupArtistEarly','BootDivisionEarly','FirstRepairDivisionEarly','FinishingDivisionEarly','DesignersEarly','StoreSelectionFilms','PhotographerSelectionFilms','MakeupArtistSelectionFilms','GuideSelectionFilmsDivision','FirstRepairDivisionSelectionFilms','DesignerSelectionFilms','RefinedRepairSelectionFilms'"; string StrKey = "摄影师也有前期业绩,化妆师也有前期业绩,引导师也有前期业绩,初修师也有前期业绩,精修师也有前期业绩,设计师也有前期业绩,门市也有选片二销业绩,摄影师也有选片二销业绩,化妆师也有选片二销业绩,引导师也有选片二销业绩,初修师也有选片二销业绩,设计师也有选片二销业绩,精修师也有选片二销业绩"; /// /// 窗体加载事件 /// /// /// void FrmEarlySecondPin_Load(object sender, EventArgs e) { if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.RatingsProportionCompetence, CustomAttributes.OperatingAuthority.Add)) { this.btnSave.Enabled = true; } else { this.btnSave.Enabled = false; } DataTable tbl = orbll.GetView_Custom("tb_ErpSystemConfigure", StrWhere: "Sconfig_Code in (" + StrValue + ")", ShowColumnName: "Sconfig_Code").Tables[0]; string[] StrArrayValue = StrValue.Trim().Split(','); string[] StrArrayKey = StrKey.Trim().Split(','); if (tbl.Rows.Count < StrArrayValue.Length) { List clist = new List(); DateTime StrTime = SDateTime.Now; for (int i = 0; i < StrArrayValue.Length; i++) { bool IsFind = false; string StrArray = StrArrayValue[i].Trim('\''); for (int j = 0; j < tbl.Rows.Count; j++) { if (StrArray == tbl.Rows[j]["Sconfig_Code"].ToString().Trim()) { IsFind = true; break; } } if (!IsFind) { LYFZ.Model.Model_ErpSystemConfigure model = new Model.Model_ErpSystemConfigure(); model.Sconfig_Code = StrArray; model.Sconfig_Name = StrArrayKey[i].Trim(); model.Sconfig_Value = "0"; model.Sconfig_IsEnabled = true; model.Sconfig_Remark = StrArrayKey[i].Trim(); model.Sconfig_Type = ""; model.Sconfig_Order = 0; model.Sconfig_CreateDatetime = StrTime; model.Sconfig_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID; clist.Add(scbll.GetAddCommandInfo(model)); } } if (clist.Count > 0) { LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist); } } } /// /// 加载事件 /// /// /// protected override void FrmEarlySecondPin_Shown(object sender, EventArgs e) { mlist = scbll.GetModelList("Sconfig_Code in (" + StrValue + ")"); for (int i = 0; i < mlist.Count; i++) { if (mlist[i].Sconfig_IsEnabled) { if (mlist[i].Sconfig_Value.Trim() == "1") { // ((CheckBoxEx)this.groupBoxEx1.Controls["chk" + mlist[i].Sconfig_Code]).Checked = true; CheckBoxEx chk1 = ((CheckBoxEx)this.groupBoxEx1.Controls["chk" + mlist[i].Sconfig_Code]); if (chk1 != null) { chk1.Checked = true; } CheckBoxEx chk2 = ((CheckBoxEx)this.groupBoxEx2.Controls["chk" + mlist[i].Sconfig_Code]); if (chk2 != null) { chk2.Checked = true; } // ((CheckBoxEx)this.groupBoxEx2.Controls["chk" + mlist[i].Sconfig_Code]).Checked = true; } } } //Bind(); } /// /// 绑定数据 /// public void PublicFunctionRows() { DataTable dt = scbll.GetAllList().Tables[0]; #region 前期 DataRow[] row = dt.Select("Sconfig_Code='PhotographersEarly' and Sconfig_IsEnabled=1"); if (row.Length > 0) { if (row[0]["Sconfig_Value"].ToString() == "1") { this.chkPhotographersEarly.Checked = true; } else { this.chkPhotographersEarly.Checked = false; } } row = dt.Select("Sconfig_Code='MakeupArtistEarly' and Sconfig_IsEnabled=1"); if (row.Length > 0) { if (row[0]["Sconfig_Value"].ToString() == "1") { this.chkMakeupArtistEarly.Checked = true; } else { this.chkMakeupArtistEarly.Checked = false; } } row = dt.Select("Sconfig_Code='BootDivisionEarly' and Sconfig_IsEnabled=1"); if (row.Length > 0) { if (row[0]["Sconfig_Value"].ToString() == "1") { chkBootDivisionEarly.Checked = true; } else { chkBootDivisionEarly.Checked = false; } } row = dt.Select("Sconfig_Code='FirstRepairDivisionEarly' and Sconfig_IsEnabled=1"); if (row.Length > 0) { if (row[0]["Sconfig_Value"].ToString() == "1") { this.chkFirstRepairDivisionEarly.Checked = true; } else { this.chkFirstRepairDivisionEarly.Checked = false; } } row = dt.Select("Sconfig_Code='FinishingDivisionEarly' and Sconfig_IsEnabled=1"); if (row.Length > 0) { if (row[0]["Sconfig_Value"].ToString() == "1") { this.chkFinishingDivisionEarly.Checked = true; } else { this.chkFinishingDivisionEarly.Checked = false; } } row = dt.Select("Sconfig_Code='DesignersEarly' and Sconfig_IsEnabled=1"); if (row.Length > 0) { if (row[0]["Sconfig_Value"].ToString() == "1") { this.chkDesignersEarly.Checked = true; } else { this.chkDesignersEarly.Checked = false; } } #endregion #region 选片二销 row = dt.Select("Sconfig_Code='PhotographerSelectionFilms' and Sconfig_IsEnabled=1"); if (row.Length > 0) { if (row[0]["Sconfig_Value"].ToString() == "1") { this.chkPhotographerSelectionFilms.Checked = true; } else { this.chkPhotographerSelectionFilms.Checked = false; } } row = dt.Select("Sconfig_Code='MakeupArtistSelectionFilms' and Sconfig_IsEnabled=1"); if (row.Length > 0) { if (row[0]["Sconfig_Value"].ToString() == "1") { this.chkMakeupArtistSelectionFilms.Checked = true; } else { this.chkMakeupArtistSelectionFilms.Checked = false; } } row = dt.Select("Sconfig_Code='GuideSelectionFilmsDivision' and Sconfig_IsEnabled=1"); if (row.Length > 0) { if (row[0]["Sconfig_Value"].ToString() == "1") { this.chkGuideSelectionFilmsDivision.Checked = true; } else { this.chkGuideSelectionFilmsDivision.Checked = false; } } row = dt.Select("Sconfig_Code='FirstRepairDivisionSelectionFilms' and Sconfig_IsEnabled=1"); if (row.Length > 0) { if (row[0]["Sconfig_Value"].ToString() == "1") { this.chkFirstRepairDivisionSelectionFilms.Checked = true; } else { this.chkFirstRepairDivisionSelectionFilms.Checked = false; } } row = dt.Select("Sconfig_Code='DesignerSelectionFilms' and Sconfig_IsEnabled=1"); if (row.Length > 0) { if (row[0]["Sconfig_Value"].ToString() == "1") { this.chkDesignerSelectionFilms.Checked = true; } else { this.chkDesignerSelectionFilms.Checked = false; } } row = dt.Select("Sconfig_Code='RefinedRepairSelectionFilms' and Sconfig_IsEnabled=1"); if (row.Length > 0) { if (row[0]["Sconfig_Value"].ToString() == "1") { this.chkRefinedRepairSelectionFilms.Checked = true; } else { this.chkRefinedRepairSelectionFilms.Checked = false; } } #endregion } /// ///保存 /// /// /// protected override void btnSave_Click(object sender, EventArgs e) { List clist = new List(); for (int i = 0; i < mlist.Count; i++) { List controlList = new List(); foreach (Control control in this.groupBoxEx1.Controls) { if (control is CheckBoxEx) { CheckBoxEx tmp = (CheckBoxEx)control; if (tmp.Name.Trim() == ("chk" + mlist[i].Sconfig_Code.Trim())) { LYFZ.Model.Model_ErpSystemConfigure model = mlist[i]; string ChkValue = "0"; if (tmp.Checked) { ChkValue = "1"; } model.Sconfig_Value = ChkValue; clist.Add(scbll.GetUpdateCommandInfo(model)); } } } foreach (Control control in this.groupBoxEx2.Controls) { if (control is CheckBoxEx) { CheckBoxEx tmp = (CheckBoxEx)control; if (tmp.Name.Trim() == ("chk" + mlist[i].Sconfig_Code.Trim())) { LYFZ.Model.Model_ErpSystemConfigure model = mlist[i]; string ChkValue = "0"; if (tmp.Checked) { ChkValue = "1"; } model.Sconfig_Value = ChkValue; clist.Add(scbll.GetUpdateCommandInfo(model)); } } } } if (clist.Count > 0) { if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0) { MessageBoxCustom.Show("保存成功!"); this.FrmEarlySecondPin_Shown(this, null); } else { MessageBoxCustom.Show("保存失败!"); } } //#region 前期 //if (chkPhotographersEarly.Checked) //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "PhotographersEarly"); } //else //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "PhotographersEarly"); } //if (chkMakeupArtistEarly.Checked) //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "MakeupArtistEarly"); } //else //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "MakeupArtistEarly"); } //if (chkBootDivisionEarly.Checked) //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "BootDivisionEarly"); } //else //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "BootDivisionEarly"); } //if (chkFirstRepairDivisionEarly.Checked) //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "FirstRepairDivisionEarly"); } //else //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "FirstRepairDivisionEarly"); } //if (chkFinishingDivisionEarly.Checked) //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "FinishingDivisionEarly"); } //else //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "FinishingDivisionEarly"); } //if (chkDesignersEarly.Checked) //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "DesignersEarly"); } //else //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "DesignersEarly"); } //#endregion //#region 选片二销 //if (chkPhotographerSelectionFilms.Checked) //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "PhotographerSelectionFilms"); } //else //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "PhotographerSelectionFilms"); } //if (chkMakeupArtistSelectionFilms.Checked) //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "MakeupArtistSelectionFilms"); } //else //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "MakeupArtistSelectionFilms"); } //if (chkGuideSelectionFilmsDivision.Checked) //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "GuideSelectionFilmsDivision"); } //else //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "GuideSelectionFilmsDivision"); } //if (chkFirstRepairDivisionSelectionFilms.Checked) //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "FirstRepairDivisionSelectionFilms"); } //else //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "FirstRepairDivisionSelectionFilms"); } //#endregion //MessageBoxCustom.Show("保存成功!"); //Bind(); } } }