FrmEarlySecondPin.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.MainBusiness.InitialSet.WageSet
  11. {
  12. public partial class FrmEarlySecondPin : LYFZ.Software.UI.InitialSet.WageSet.FrmEarlySecondPin
  13. {
  14. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  15. LYFZ.BLL.BLL_ErpSystemConfigure scbll = new BLL.BLL_ErpSystemConfigure();
  16. public FrmEarlySecondPin()
  17. {
  18. this.Load += FrmEarlySecondPin_Load;
  19. }
  20. List<LYFZ.Model.Model_ErpSystemConfigure> mlist = new List<Model.Model_ErpSystemConfigure>();
  21. string StrValue = "'PhotographersEarly','MakeupArtistEarly','BootDivisionEarly','FirstRepairDivisionEarly','FinishingDivisionEarly','DesignersEarly','StoreSelectionFilms','PhotographerSelectionFilms','MakeupArtistSelectionFilms','GuideSelectionFilmsDivision','FirstRepairDivisionSelectionFilms','DesignerSelectionFilms','RefinedRepairSelectionFilms'";
  22. string StrKey = "摄影师也有前期业绩,化妆师也有前期业绩,引导师也有前期业绩,初修师也有前期业绩,精修师也有前期业绩,设计师也有前期业绩,门市也有选片二销业绩,摄影师也有选片二销业绩,化妆师也有选片二销业绩,引导师也有选片二销业绩,初修师也有选片二销业绩,设计师也有选片二销业绩,精修师也有选片二销业绩";
  23. /// <summary>
  24. /// 窗体加载事件
  25. /// </summary>
  26. /// <param name="sender"></param>
  27. /// <param name="e"></param>
  28. void FrmEarlySecondPin_Load(object sender, EventArgs e)
  29. {
  30. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.RatingsProportionCompetence, CustomAttributes.OperatingAuthority.Add))
  31. {
  32. this.btnSave.Enabled = true;
  33. }
  34. else {
  35. this.btnSave.Enabled = false;
  36. }
  37. DataTable tbl = orbll.GetView_Custom("tb_ErpSystemConfigure", StrWhere: "Sconfig_Code in (" + StrValue + ")", ShowColumnName: "Sconfig_Code").Tables[0];
  38. string[] StrArrayValue = StrValue.Trim().Split(',');
  39. string[] StrArrayKey = StrKey.Trim().Split(',');
  40. if (tbl.Rows.Count < StrArrayValue.Length)
  41. {
  42. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  43. DateTime StrTime = SDateTime.Now;
  44. for (int i = 0; i < StrArrayValue.Length; i++)
  45. {
  46. bool IsFind = false;
  47. string StrArray = StrArrayValue[i].Trim('\'');
  48. for (int j = 0; j < tbl.Rows.Count; j++)
  49. {
  50. if (StrArray == tbl.Rows[j]["Sconfig_Code"].ToString().Trim())
  51. {
  52. IsFind = true;
  53. break;
  54. }
  55. }
  56. if (!IsFind)
  57. {
  58. LYFZ.Model.Model_ErpSystemConfigure model = new Model.Model_ErpSystemConfigure();
  59. model.Sconfig_Code = StrArray;
  60. model.Sconfig_Name = StrArrayKey[i].Trim();
  61. model.Sconfig_Value = "0";
  62. model.Sconfig_IsEnabled = true;
  63. model.Sconfig_Remark = StrArrayKey[i].Trim();
  64. model.Sconfig_Type = "";
  65. model.Sconfig_Order = 0;
  66. model.Sconfig_CreateDatetime = StrTime;
  67. model.Sconfig_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  68. clist.Add(scbll.GetAddCommandInfo(model));
  69. }
  70. }
  71. if (clist.Count > 0)
  72. { LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist); }
  73. }
  74. }
  75. /// <summary>
  76. /// 加载事件
  77. /// </summary>
  78. /// <param name="sender"></param>
  79. /// <param name="e"></param>
  80. protected override void FrmEarlySecondPin_Shown(object sender, EventArgs e)
  81. {
  82. mlist = scbll.GetModelList("Sconfig_Code in (" + StrValue + ")");
  83. for (int i = 0; i < mlist.Count; i++)
  84. {
  85. if (mlist[i].Sconfig_IsEnabled)
  86. {
  87. if (mlist[i].Sconfig_Value.Trim() == "1")
  88. {
  89. // ((CheckBoxEx)this.groupBoxEx1.Controls["chk" + mlist[i].Sconfig_Code]).Checked = true;
  90. CheckBoxEx chk1 = ((CheckBoxEx)this.groupBoxEx1.Controls["chk" + mlist[i].Sconfig_Code]);
  91. if (chk1 != null) {
  92. chk1.Checked = true;
  93. }
  94. CheckBoxEx chk2 = ((CheckBoxEx)this.groupBoxEx2.Controls["chk" + mlist[i].Sconfig_Code]);
  95. if (chk2 != null)
  96. {
  97. chk2.Checked = true;
  98. }
  99. // ((CheckBoxEx)this.groupBoxEx2.Controls["chk" + mlist[i].Sconfig_Code]).Checked = true;
  100. }
  101. }
  102. }
  103. //Bind();
  104. }
  105. /// <summary>
  106. /// 绑定数据
  107. /// </summary>
  108. public void PublicFunctionRows()
  109. {
  110. DataTable dt = scbll.GetAllList().Tables[0];
  111. #region 前期
  112. DataRow[] row = dt.Select("Sconfig_Code='PhotographersEarly' and Sconfig_IsEnabled=1");
  113. if (row.Length > 0)
  114. {
  115. if (row[0]["Sconfig_Value"].ToString() == "1")
  116. { this.chkPhotographersEarly.Checked = true; }
  117. else
  118. { this.chkPhotographersEarly.Checked = false; }
  119. }
  120. row = dt.Select("Sconfig_Code='MakeupArtistEarly' and Sconfig_IsEnabled=1");
  121. if (row.Length > 0)
  122. {
  123. if (row[0]["Sconfig_Value"].ToString() == "1")
  124. { this.chkMakeupArtistEarly.Checked = true; }
  125. else
  126. { this.chkMakeupArtistEarly.Checked = false; }
  127. }
  128. row = dt.Select("Sconfig_Code='BootDivisionEarly' and Sconfig_IsEnabled=1");
  129. if (row.Length > 0)
  130. {
  131. if (row[0]["Sconfig_Value"].ToString() == "1")
  132. { chkBootDivisionEarly.Checked = true; }
  133. else
  134. { chkBootDivisionEarly.Checked = false; }
  135. }
  136. row = dt.Select("Sconfig_Code='FirstRepairDivisionEarly' and Sconfig_IsEnabled=1");
  137. if (row.Length > 0)
  138. {
  139. if (row[0]["Sconfig_Value"].ToString() == "1")
  140. { this.chkFirstRepairDivisionEarly.Checked = true; }
  141. else
  142. { this.chkFirstRepairDivisionEarly.Checked = false; }
  143. }
  144. row = dt.Select("Sconfig_Code='FinishingDivisionEarly' and Sconfig_IsEnabled=1");
  145. if (row.Length > 0)
  146. {
  147. if (row[0]["Sconfig_Value"].ToString() == "1")
  148. { this.chkFinishingDivisionEarly.Checked = true; }
  149. else
  150. { this.chkFinishingDivisionEarly.Checked = false; }
  151. }
  152. row = dt.Select("Sconfig_Code='DesignersEarly' and Sconfig_IsEnabled=1");
  153. if (row.Length > 0)
  154. {
  155. if (row[0]["Sconfig_Value"].ToString() == "1")
  156. { this.chkDesignersEarly.Checked = true; }
  157. else
  158. { this.chkDesignersEarly.Checked = false; }
  159. }
  160. #endregion
  161. #region 选片二销
  162. row = dt.Select("Sconfig_Code='PhotographerSelectionFilms' and Sconfig_IsEnabled=1");
  163. if (row.Length > 0)
  164. {
  165. if (row[0]["Sconfig_Value"].ToString() == "1")
  166. { this.chkPhotographerSelectionFilms.Checked = true; }
  167. else
  168. { this.chkPhotographerSelectionFilms.Checked = false; }
  169. }
  170. row = dt.Select("Sconfig_Code='MakeupArtistSelectionFilms' and Sconfig_IsEnabled=1");
  171. if (row.Length > 0)
  172. {
  173. if (row[0]["Sconfig_Value"].ToString() == "1")
  174. { this.chkMakeupArtistSelectionFilms.Checked = true; }
  175. else
  176. { this.chkMakeupArtistSelectionFilms.Checked = false; }
  177. }
  178. row = dt.Select("Sconfig_Code='GuideSelectionFilmsDivision' and Sconfig_IsEnabled=1");
  179. if (row.Length > 0)
  180. {
  181. if (row[0]["Sconfig_Value"].ToString() == "1")
  182. { this.chkGuideSelectionFilmsDivision.Checked = true; }
  183. else
  184. { this.chkGuideSelectionFilmsDivision.Checked = false; }
  185. }
  186. row = dt.Select("Sconfig_Code='FirstRepairDivisionSelectionFilms' and Sconfig_IsEnabled=1");
  187. if (row.Length > 0)
  188. {
  189. if (row[0]["Sconfig_Value"].ToString() == "1")
  190. { this.chkFirstRepairDivisionSelectionFilms.Checked = true; }
  191. else
  192. { this.chkFirstRepairDivisionSelectionFilms.Checked = false; }
  193. }
  194. row = dt.Select("Sconfig_Code='DesignerSelectionFilms' and Sconfig_IsEnabled=1");
  195. if (row.Length > 0)
  196. {
  197. if (row[0]["Sconfig_Value"].ToString() == "1")
  198. { this.chkDesignerSelectionFilms.Checked = true; }
  199. else
  200. { this.chkDesignerSelectionFilms.Checked = false; }
  201. }
  202. row = dt.Select("Sconfig_Code='RefinedRepairSelectionFilms' and Sconfig_IsEnabled=1");
  203. if (row.Length > 0)
  204. {
  205. if (row[0]["Sconfig_Value"].ToString() == "1")
  206. { this.chkRefinedRepairSelectionFilms.Checked = true; }
  207. else
  208. { this.chkRefinedRepairSelectionFilms.Checked = false; }
  209. }
  210. #endregion
  211. }
  212. /// <summary>
  213. ///保存
  214. /// </summary>
  215. /// <param name="sender"></param>
  216. /// <param name="e"></param>
  217. protected override void btnSave_Click(object sender, EventArgs e)
  218. {
  219. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  220. for (int i = 0; i < mlist.Count; i++)
  221. {
  222. List<Control> controlList = new List<Control>();
  223. foreach (Control control in this.groupBoxEx1.Controls)
  224. {
  225. if (control is CheckBoxEx)
  226. {
  227. CheckBoxEx tmp = (CheckBoxEx)control;
  228. if (tmp.Name.Trim() == ("chk" + mlist[i].Sconfig_Code.Trim()))
  229. {
  230. LYFZ.Model.Model_ErpSystemConfigure model = mlist[i];
  231. string ChkValue = "0";
  232. if (tmp.Checked)
  233. { ChkValue = "1"; }
  234. model.Sconfig_Value = ChkValue;
  235. clist.Add(scbll.GetUpdateCommandInfo(model));
  236. }
  237. }
  238. }
  239. foreach (Control control in this.groupBoxEx2.Controls)
  240. {
  241. if (control is CheckBoxEx)
  242. {
  243. CheckBoxEx tmp = (CheckBoxEx)control;
  244. if (tmp.Name.Trim() == ("chk" + mlist[i].Sconfig_Code.Trim()))
  245. {
  246. LYFZ.Model.Model_ErpSystemConfigure model = mlist[i];
  247. string ChkValue = "0";
  248. if (tmp.Checked)
  249. { ChkValue = "1"; }
  250. model.Sconfig_Value = ChkValue;
  251. clist.Add(scbll.GetUpdateCommandInfo(model));
  252. }
  253. }
  254. }
  255. }
  256. if (clist.Count > 0)
  257. {
  258. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  259. {
  260. MessageBoxCustom.Show("保存成功!");
  261. this.FrmEarlySecondPin_Shown(this, null);
  262. }
  263. else
  264. { MessageBoxCustom.Show("保存失败!"); }
  265. }
  266. //#region 前期
  267. //if (chkPhotographersEarly.Checked)
  268. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "PhotographersEarly"); }
  269. //else
  270. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "PhotographersEarly"); }
  271. //if (chkMakeupArtistEarly.Checked)
  272. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "MakeupArtistEarly"); }
  273. //else
  274. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "MakeupArtistEarly"); }
  275. //if (chkBootDivisionEarly.Checked)
  276. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "BootDivisionEarly"); }
  277. //else
  278. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "BootDivisionEarly"); }
  279. //if (chkFirstRepairDivisionEarly.Checked)
  280. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "FirstRepairDivisionEarly"); }
  281. //else
  282. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "FirstRepairDivisionEarly"); }
  283. //if (chkFinishingDivisionEarly.Checked)
  284. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "FinishingDivisionEarly"); }
  285. //else
  286. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "FinishingDivisionEarly"); }
  287. //if (chkDesignersEarly.Checked)
  288. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "DesignersEarly"); }
  289. //else
  290. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "DesignersEarly"); }
  291. //#endregion
  292. //#region 选片二销
  293. //if (chkPhotographerSelectionFilms.Checked)
  294. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "PhotographerSelectionFilms"); }
  295. //else
  296. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "PhotographerSelectionFilms"); }
  297. //if (chkMakeupArtistSelectionFilms.Checked)
  298. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "MakeupArtistSelectionFilms"); }
  299. //else
  300. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "MakeupArtistSelectionFilms"); }
  301. //if (chkGuideSelectionFilmsDivision.Checked)
  302. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "GuideSelectionFilmsDivision"); }
  303. //else
  304. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "GuideSelectionFilmsDivision"); }
  305. //if (chkFirstRepairDivisionSelectionFilms.Checked)
  306. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=1", "FirstRepairDivisionSelectionFilms"); }
  307. //else
  308. //{ scbll.UpdateErpSystemConfigure("Sconfig_Value=0", "FirstRepairDivisionSelectionFilms"); }
  309. //#endregion
  310. //MessageBoxCustom.Show("保存成功!");
  311. //Bind();
  312. }
  313. }
  314. }