123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- 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<LYFZ.Model.Model_ErpSystemConfigure> mlist = new List<Model.Model_ErpSystemConfigure>();
- string StrValue = "'PhotographersEarly','MakeupArtistEarly','BootDivisionEarly','FirstRepairDivisionEarly','FinishingDivisionEarly','DesignersEarly','StoreSelectionFilms','PhotographerSelectionFilms','MakeupArtistSelectionFilms','GuideSelectionFilmsDivision','FirstRepairDivisionSelectionFilms','DesignerSelectionFilms','RefinedRepairSelectionFilms'";
- string StrKey = "摄影师也有前期业绩,化妆师也有前期业绩,引导师也有前期业绩,初修师也有前期业绩,精修师也有前期业绩,设计师也有前期业绩,门市也有选片二销业绩,摄影师也有选片二销业绩,化妆师也有选片二销业绩,引导师也有选片二销业绩,初修师也有选片二销业绩,设计师也有选片二销业绩,精修师也有选片二销业绩";
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
- 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); }
- }
- }
- /// <summary>
- /// 加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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();
- }
- /// <summary>
- /// 绑定数据
- /// </summary>
- 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
- }
- /// <summary>
- ///保存
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnSave_Click(object sender, EventArgs e)
- {
- List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
- for (int i = 0; i < mlist.Count; i++)
- {
- List<Control> controlList = new List<Control>();
- 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();
- }
- }
- }
|