FrmPhaseCommissionScheme.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.MainBusiness.InitialSet.WageSet
  10. {
  11. public partial class FrmPhaseCommissionScheme : LYFZ.Software.UI.InitialSet.WageSet.FrmPhaseCommissionScheme
  12. {
  13. public string Wcs_TypeName;
  14. public string Wcs_TypeCode;
  15. public string Wcs_Type;
  16. public FrmPhaseCommissionScheme()
  17. {
  18. }
  19. #region 加载
  20. protected override void FrmPhaseCommissionScheme_Load(object sender, EventArgs e)
  21. {
  22. try
  23. {
  24. if (!string.IsNullOrEmpty(Wcs_TypeName))
  25. {
  26. this.Text = "阶梯提成方案-" + Wcs_TypeName;
  27. bind();
  28. }
  29. }
  30. catch (Exception ex)
  31. {
  32. MessageBoxCustom.Show(ex.Message);
  33. }
  34. }
  35. public void bind()
  36. {
  37. dgv.Rows.Clear();
  38. LYFZ.BLL.BLL_ErpWageCommissionSet bll = new BLL.BLL_ErpWageCommissionSet();
  39. DataTable dt = bll.GetList("Wcs_TypeCode='" + Wcs_TypeCode + "'", "ID asc").Tables[0];
  40. if (dt.Rows.Count > 0)
  41. {
  42. Boolean Wcs_PerformanceHight = Convert.ToBoolean(dt.Rows[0]["Wcs_PerformanceHight"]);
  43. if (Wcs_PerformanceHight == true)
  44. {
  45. chkWcs_PerformanceHight.Checked = true;
  46. }
  47. else { chkWcs_PerformanceHight.Checked = false; }
  48. for (int t = 0; t < dt.Rows.Count; t++)
  49. {
  50. DataGridViewRow dgvr = new DataGridViewRow();
  51. DataGridViewCell cell = null;
  52. cell = new DataGridViewTextBoxCell();
  53. cell.Value = dt.Rows[t]["Wcs_TypeCode"].ToString().Trim();
  54. dgvr.Cells.Add(cell);
  55. cell = new DataGridViewTextBoxCell();
  56. cell.Value = Convert.ToInt32(dt.Rows[t]["Wcs_PerformanceBeginValue"]) + "-" + Convert.ToInt32(dt.Rows[t]["Wcs_PerformanceEndValue"]) + " 提:" + Convert.ToDecimal(dt.Rows[t]["Wcs_Percentage"]) + "%"; ;
  57. dgvr.Cells.Add(cell);
  58. cell = new DataGridViewTextBoxCell();
  59. cell.Value = dt.Rows[t]["Wcs_PerformanceBeginValue"].ToString().Trim();
  60. dgvr.Cells.Add(cell);
  61. this.dgv.Rows.Add(dgvr);
  62. }
  63. dgv.ClearSelection();
  64. }
  65. }
  66. #endregion
  67. #region 输入框设置
  68. protected override void txtWcs_PerformanceBeginValue_KeyPress(object sender, KeyPressEventArgs e)
  69. {
  70. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  71. {
  72. e.Handled = true;
  73. }
  74. }
  75. protected override void txtWcs_PerformanceEndValue_KeyPress(object sender, KeyPressEventArgs e)
  76. {
  77. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  78. {
  79. e.Handled = true;
  80. }
  81. }
  82. protected override void txtWcs_Percentage_KeyPress(object sender, KeyPressEventArgs e)
  83. {
  84. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  85. {
  86. e.Handled = true; //获取或设置一个值,指示是否处理过System.Windows.Forms.Control.KeyPress事件
  87. }
  88. else if (Char.IsPunctuation(e.KeyChar))
  89. {
  90. if (e.KeyChar == '.')
  91. {
  92. if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1)
  93. {
  94. e.Handled = true;
  95. }
  96. }
  97. else
  98. {
  99. e.Handled = true;
  100. }
  101. }
  102. }
  103. protected override void txtValue_KeyPress(object sender, KeyPressEventArgs e)
  104. {
  105. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  106. {
  107. e.Handled = true; //获取或设置一个值,指示是否处理过System.Windows.Forms.Control.KeyPress事件
  108. }
  109. else if (Char.IsPunctuation(e.KeyChar))
  110. {
  111. if (e.KeyChar == '.')
  112. {
  113. if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1)
  114. {
  115. e.Handled = true;
  116. }
  117. }
  118. else
  119. {
  120. e.Handled = true;
  121. }
  122. }
  123. }
  124. #endregion
  125. #region 添加到规则列表
  126. protected override void btnAdd_Click(object sender, EventArgs e)
  127. {
  128. try
  129. {
  130. if (string.IsNullOrEmpty(txtWcs_PerformanceBeginValue.Text) || string.IsNullOrEmpty(txtWcs_PerformanceEndValue.Text) || string.IsNullOrEmpty(txtWcs_Percentage.Text))
  131. {
  132. MessageBoxCustom.Show("请输入数字!");
  133. return;
  134. }
  135. if (txtWcs_PerformanceBeginValue.Text.Length >= 11)
  136. {
  137. string Wcs_PerformanceBeginValue = txtWcs_PerformanceBeginValue.Text;
  138. txtWcs_PerformanceBeginValue.Text = Wcs_PerformanceBeginValue.Substring(0, 10);
  139. }
  140. if (txtWcs_PerformanceEndValue.Text.Length >= 11)
  141. {
  142. string Wcs_PerformanceEndValue = txtWcs_PerformanceEndValue.Text;
  143. txtWcs_PerformanceEndValue.Text = Wcs_PerformanceEndValue.Substring(0, 10);
  144. }
  145. DataTable dt = new DataTable();
  146. LYFZ.BLL.BLL_ErpWageCommissionSet bll = new BLL.BLL_ErpWageCommissionSet();
  147. LYFZ.Model.Model_ErpWageCommissionSet model = new Model.Model_ErpWageCommissionSet();
  148. dt = bll.GetList("Wcs_TypeCode='" + Wcs_TypeCode + "'", "ID asc").Tables[0];
  149. if (dt.Rows.Count <= 0)
  150. {
  151. if (Convert.ToInt32(txtWcs_PerformanceBeginValue.Text) != 0)
  152. {
  153. MessageBoxCustom.Show("业绩范围出错!");
  154. return;
  155. }
  156. if (Convert.ToInt32(txtWcs_PerformanceEndValue.Text) == 0)
  157. {
  158. MessageBoxCustom.Show("业绩范围出错!");
  159. return;
  160. }
  161. }
  162. else
  163. {
  164. //判断是否合法范围
  165. for (int i = 0; i < dt.Rows.Count; i++)
  166. {
  167. int Range = Convert.ToInt32(dt.Rows[i]["Wcs_PerformanceEndValue"]);
  168. if (Convert.ToInt32(txtWcs_PerformanceBeginValue.Text) <= Range)
  169. {
  170. MessageBoxCustom.Show("起始业绩已包含在已有的规则中");
  171. return;
  172. }
  173. if (Convert.ToInt32(txtWcs_PerformanceEndValue.Text) <= Range)
  174. {
  175. MessageBoxCustom.Show("终止业绩已包含在已有的规则中");
  176. return;
  177. }
  178. }
  179. dt = bll.MaxValue("Wcs_PerformanceEndValue", "Wcs_TypeCode='" + Wcs_TypeCode + "'").Tables[0];
  180. int RangeOne = Convert.ToInt32(dt.Rows[0]["value"]) + 1;
  181. if (Convert.ToInt32(txtWcs_PerformanceBeginValue.Text) != RangeOne)
  182. {
  183. MessageBoxCustom.Show("业绩段不连续,起始业绩应比上一规则段终止业绩大1");
  184. return;
  185. }
  186. }
  187. #region 增加
  188. if (Wcs_Type == "提成点")
  189. {
  190. model.Wcs_Type = "提成点";
  191. }
  192. if (Wcs_Type == "后期方案")
  193. {
  194. model.Wcs_Type = "后期方案";
  195. }
  196. model.Wcs_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  197. model.Wcs_TypeCode = Wcs_TypeCode;
  198. model.Wcs_PerformanceBeginValue = Convert.ToInt32(txtWcs_PerformanceBeginValue.Text);
  199. model.Wcs_PerformanceEndValue = Convert.ToInt32(txtWcs_PerformanceEndValue.Text);
  200. model.Wcs_Percentage = Convert.ToDecimal(txtWcs_Percentage.Text);
  201. model.Wcs_PerformanceHight = false;
  202. // model.Wcs_Rule = ""; Convert.ToInt32(model.Wcs_PerformanceBeginValue) + "-" + Convert.ToInt32(model.Wcs_PerformanceEndValue) + " 提:" + Convert.ToDecimal(model.Wcs_Percentage)+"%";
  203. model.Wcs_CreateTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  204. bll.Add(model);
  205. bind();
  206. #endregion
  207. }
  208. catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
  209. }
  210. #endregion
  211. #region 删除
  212. protected override void btnDelete_Click(object sender, EventArgs e)
  213. {
  214. try
  215. {
  216. if (this.dgv.Rows.Count > 0)
  217. {
  218. if (dgv.SelectedRows.Count == 0)
  219. {
  220. MessageBoxCustom.Show("请选择你要删除的数据!");
  221. return;
  222. }
  223. if(dgv.CurrentRow.Index!= dgv.Rows.Count-1)
  224. {
  225. MessageBoxCustom.Show("此条规则不能删除,请删除最后一条(从后往前删)!");
  226. return;
  227. }
  228. if (MessageBoxCustom.Show("你确定要删除此规则吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  229. {
  230. LYFZ.BLL.BLL_ErpWageCommissionSet bllwage = new BLL.BLL_ErpWageCommissionSet();
  231. bllwage.DeleteWageCommissionSet("Wcs_TypeCode='" + Wcs_TypeCode + "' and Wcs_PerformanceBeginValue='" + dgv.CurrentRow.Cells["Wcs_PerformanceBeginValue"].Value + "'");
  232. MessageBoxCustom.Show("删除成功!");
  233. bind();
  234. }
  235. }
  236. }
  237. catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
  238. }
  239. #endregion
  240. #region 业绩超出部分才按高提成
  241. protected override void chkWcs_PerformanceHight_Click(object sender, EventArgs e)
  242. {
  243. try
  244. {
  245. if (chkWcs_PerformanceHight.Checked)
  246. {
  247. LYFZ.BLL.BLL_ErpWageCommissionSet bll = new BLL.BLL_ErpWageCommissionSet();
  248. bll.UpdateWageCommissionSet(1, "Wcs_TypeCode='" + Wcs_TypeCode + "'");
  249. bind();
  250. }
  251. else
  252. {
  253. LYFZ.BLL.BLL_ErpWageCommissionSet bll = new BLL.BLL_ErpWageCommissionSet();
  254. bll.UpdateWageCommissionSet(0, "Wcs_TypeCode='" + Wcs_TypeCode + "'");
  255. bind();
  256. }
  257. }
  258. catch (Exception ex)
  259. {
  260. MessageBoxCustom.Show(ex.Message);
  261. }
  262. }
  263. #endregion
  264. #region 规则试算
  265. protected override void btnResults_Click(object sender, EventArgs e)
  266. {
  267. try
  268. {
  269. if (dgv.Rows.Count == 0)
  270. {
  271. MessageBoxCustom.Show("请设置规则!");
  272. return;
  273. }
  274. if (string.IsNullOrEmpty(txtValue.Text))
  275. {
  276. MessageBoxCustom.Show("请输入数字!");
  277. return;
  278. }
  279. if (txtValue.Text.Length >= 11)
  280. {
  281. string Value = txtValue.Text;
  282. txtValue.Text = Value.Substring(0, 10);
  283. }
  284. LYFZ.BLL.BLL_ErpWageCommissionSet bll = new BLL.BLL_ErpWageCommissionSet();
  285. txtResults.Text = bll.GetCommissionSpecifications(Wcs_TypeCode, Convert.ToDecimal(txtValue.Text)).ToString("N2");
  286. }
  287. catch (Exception ex)
  288. {
  289. MessageBoxCustom.Show(ex.Message);
  290. }
  291. }
  292. #endregion
  293. }
  294. }