DataSetCashBackSmallForm.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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.MembershipManage.SetSmallForm
  10. {
  11. public partial class DataSetCashBackSmallForm : LYFZ.Software.UI.MembershipManage.SetSmallForm.DataSetCashBackSmallForm
  12. {
  13. public DataSetCashBackSmallForm()
  14. {
  15. this.txtBackCashCoefficient.KeyPress += txtBackCashCoefficient_KeyPress;
  16. }
  17. LYFZ.BLL.BLL_ErpSystemConfigure bll = new LYFZ.BLL.BLL_ErpSystemConfigure();
  18. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  19. /// <summary>
  20. /// 窗体加载事件
  21. /// </summary>
  22. /// <param name="sender"></param>
  23. /// <param name="e"></param>
  24. protected override void CashBackCardCashBackProportionSuperSmallForm_Shown(object sender, EventArgs e)
  25. {
  26. this.AllEnabledFalse();
  27. string ExecuteSql = orbll.GetView_CustomReturnExecuteSql("tb_ErpSystemConfigure", StrWhere: " Sconfig_Code = 'BackCashCoefficient'", ShowColumnName: "Sconfig_Value");
  28. ExecuteSql += ";" + orbll.GetView_CustomReturnExecuteSql("tb_ErpSystemConfigure", StrWhere: " Sconfig_Code = 'Proportion'", ShowColumnName: "Sconfig_Value");
  29. DataSet dtSet = orbll.GetView_Custom(ExecuteSql);
  30. DataTable tbl2 = dtSet.Tables["ds"];
  31. DataTable tbl3 = dtSet.Tables["ds1"];
  32. string[] Sconfig_Value = tbl3.Rows[0]["Sconfig_Value"].ToString().Trim().Split('|');
  33. this.txtCardsNo.Text = Sconfig_Value[0].Trim();
  34. string[] tmpValue = Sconfig_Value[1].Trim().Split(',');
  35. for (int i = 1; i <= Convert.ToInt32(Sconfig_Value[0].Trim()); i++)
  36. {
  37. switch (i)
  38. {
  39. case 1: this.txtOne.Text = tmpValue[0].Trim(); this.txtOne.Enabled = true; break;
  40. case 2: this.txtTwo.Text = tmpValue[1].Trim(); this.txtTwo.Enabled = true; break;
  41. case 3: this.txtThree.Text = tmpValue[2].Trim(); this.txtThree.Enabled = true; break;
  42. case 4: this.txtFour.Text = tmpValue[3].Trim(); this.txtFour.Enabled = true; break;
  43. case 5: this.txtFive.Text = tmpValue[4].Trim(); this.txtFive.Enabled = true; break;
  44. case 6: this.txtSix.Text = tmpValue[5].Trim(); this.txtSix.Enabled = true; break;
  45. case 7: this.txtSeven.Text = tmpValue[6].Trim(); this.txtSeven.Enabled = true; break;
  46. case 8: this.txtEight.Text = tmpValue[7].Trim(); this.txtEight.Enabled = true; break;
  47. case 9: this.txtNine.Text = tmpValue[8].Trim(); this.txtNine.Enabled = true; break;
  48. case 10: this.txtTen.Text = tmpValue[9].Trim(); this.txtTen.Enabled = true; break;
  49. }
  50. }
  51. if (tbl2.Rows.Count > 0)
  52. {
  53. if (tbl2.Rows[0]["Sconfig_Value"].ToString().Trim() != "")
  54. { this.txtBackCashCoefficient.Text = tbl2.Rows[0]["Sconfig_Value"].ToString().Trim(); }
  55. else
  56. { this.txtBackCashCoefficient.Text = "1"; }
  57. }
  58. else
  59. {
  60. LYFZ.Model.Model_ErpSystemConfigure model = new Model.Model_ErpSystemConfigure();
  61. model.Sconfig_Code = "BackCashCoefficient";
  62. model.Sconfig_Name = "返现系数";
  63. model.Sconfig_Value = "1";
  64. model.Sconfig_IsEnabled = true;
  65. model.Sconfig_Type = "";
  66. model.Sconfig_Remark = "返现系数(实现返现范围)";
  67. model.Sconfig_Order = 0;
  68. model.Sconfig_CreateDatetime = SDateTime.Now;
  69. model.Sconfig_CreateName = "";
  70. bll.Add(model);
  71. }
  72. }
  73. private void AllEnabledFalse()
  74. {
  75. this.txtOne.Enabled = false; this.txtOne.Text = "0";
  76. this.txtTwo.Enabled = false; this.txtTwo.Text = "0";
  77. this.txtThree.Enabled = false; this.txtThree.Text = "0";
  78. this.txtFour.Enabled = false; this.txtFour.Text = "0";
  79. this.txtFive.Enabled = false; this.txtFive.Text = "0";
  80. this.txtSix.Enabled = false; this.txtSix.Text = "0";
  81. this.txtSeven.Enabled = false; this.txtSeven.Text = "0";
  82. this.txtEight.Enabled = false; this.txtEight.Text = "0";
  83. this.txtNine.Enabled = false; this.txtNine.Text = "0";
  84. this.txtTen.Enabled = false; this.txtTen.Text = "0";
  85. }
  86. /// <summary>
  87. /// 消费次数
  88. /// </summary>
  89. /// <param name="sender"></param>
  90. /// <param name="e"></param>
  91. protected override void txtCardsNo_Leave(object sender, EventArgs e)
  92. {
  93. if (this.txtCardsNo.Text.Trim() != "")
  94. {
  95. try
  96. {
  97. if (10 >= Convert.ToInt32(this.txtCardsNo.Text.Trim()) && Convert.ToInt32(this.txtCardsNo.Text.Trim()) > 0)
  98. {
  99. int ForCount = 10;
  100. while (ForCount > Convert.ToInt32(this.txtCardsNo.Text.Trim()))
  101. {
  102. switch (ForCount)
  103. {
  104. case 1: this.txtOne.Enabled = false; this.txtOne.Text = "0"; break;
  105. case 2: this.txtTwo.Enabled = false; this.txtTwo.Text = "0"; break;
  106. case 3: this.txtThree.Enabled = false; this.txtThree.Text = "0"; break;
  107. case 4: this.txtFour.Enabled = false; this.txtFour.Text = "0"; break;
  108. case 5: this.txtFive.Enabled = false; this.txtFive.Text = "0"; break;
  109. case 6: this.txtSix.Enabled = false; this.txtSix.Text = "0"; break;
  110. case 7: this.txtSeven.Enabled = false; this.txtSeven.Text = "0"; break;
  111. case 8: this.txtEight.Enabled = false; this.txtEight.Text = "0"; break;
  112. case 9: this.txtNine.Enabled = false; this.txtNine.Text = "0"; break;
  113. case 10: this.txtTen.Enabled = false; this.txtTen.Text = "0"; break;
  114. }
  115. ForCount--;
  116. }
  117. int ForCount2 = Convert.ToInt32(this.txtCardsNo.Text.Trim());
  118. while (ForCount2 > 0)
  119. {
  120. switch (ForCount2)
  121. {
  122. case 1: this.txtOne.Enabled = true; break;
  123. case 2: this.txtTwo.Enabled = true; break;
  124. case 3: this.txtThree.Enabled = true; break;
  125. case 4: this.txtFour.Enabled = true; break;
  126. case 5: this.txtFive.Enabled = true; break;
  127. case 6: this.txtSix.Enabled = true; break;
  128. case 7: this.txtSeven.Enabled = true; break;
  129. case 8: this.txtEight.Enabled = true; break;
  130. case 9: this.txtNine.Enabled = true; break;
  131. case 10: this.txtTen.Enabled = true; break;
  132. }
  133. ForCount2--;
  134. }
  135. }
  136. else if (Convert.ToInt32(this.txtCardsNo.Text.Trim()) == 0)
  137. { this.AllEnabledFalse(); }
  138. }
  139. catch
  140. { this.AllEnabledFalse(); }
  141. }
  142. else
  143. { this.txtCardsNo.Text = "0"; }
  144. }
  145. /// <summary>
  146. /// 确定
  147. /// </summary>
  148. /// <param name="sender"></param>
  149. /// <param name="e"></param>
  150. protected override void btnOK_Click(object sender, EventArgs e)
  151. {
  152. if (Convert.ToInt32(txtCardsNo.Text.Trim()) > 0)
  153. {
  154. if (this.txtBackCashCoefficient.Text.Trim() == "")
  155. { MessageBoxCustom.Show("返现系数不能为空!"); return; }
  156. if (Convert.ToDecimal(this.txtBackCashCoefficient.Text) < 0 || Convert.ToDecimal(this.txtBackCashCoefficient.Text) > 100)
  157. { MessageBoxCustom.Show("返现系数设置的值范围在 0 至 100 之间!"); return; }
  158. int ForCount = 1;
  159. decimal ForDecimal = 0;
  160. string Serial = "";
  161. while (ForCount <= Convert.ToInt32(this.txtCardsNo.Text.Trim()))
  162. {
  163. switch (ForCount)
  164. {
  165. case 1: ForDecimal += Convert.ToDecimal(this.txtOne.Text.Trim()); Serial = this.txtOne.Text.Trim(); break;
  166. case 2: ForDecimal += Convert.ToDecimal(this.txtTwo.Text.Trim()); Serial = Serial + "," + this.txtTwo.Text.Trim(); break;
  167. case 3: ForDecimal += Convert.ToDecimal(this.txtThree.Text.Trim()); Serial = Serial + "," + this.txtThree.Text.Trim(); break;
  168. case 4: ForDecimal += Convert.ToDecimal(this.txtFour.Text.Trim()); Serial = Serial + "," + this.txtFour.Text.Trim(); break;
  169. case 5: ForDecimal += Convert.ToDecimal(this.txtFive.Text.Trim()); Serial = Serial + "," + this.txtFive.Text.Trim(); break;
  170. case 6: ForDecimal += Convert.ToDecimal(this.txtSix.Text.Trim()); Serial = Serial + "," + this.txtSix.Text.Trim(); break;
  171. case 7: ForDecimal += Convert.ToDecimal(this.txtSeven.Text.Trim()); Serial = Serial + "," + this.txtSeven.Text.Trim(); break;
  172. case 8: ForDecimal += Convert.ToDecimal(this.txtEight.Text.Trim()); Serial = Serial + "," + this.txtEight.Text.Trim(); break;
  173. case 9: ForDecimal += Convert.ToDecimal(this.txtNine.Text.Trim()); Serial = Serial + "," + this.txtNine.Text.Trim(); break;
  174. case 10: ForDecimal += Convert.ToDecimal(this.txtTen.Text.Trim()); Serial = Serial + "," + this.txtTen.Text.Trim(); break;
  175. }
  176. ForCount++;
  177. }
  178. if (ForDecimal != 100)
  179. { MessageBoxCustom.Show("套系返现每次消费返现比例之和必须等于100%"); return; }
  180. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  181. LYFZ.Model.Model_ErpSystemConfigure model = bll.GetModel("Sconfig_Code", "Proportion");
  182. model.Sconfig_Value = this.txtCardsNo.Text.Trim() + "|" + Serial;
  183. clist.Add(bll.GetUpdateCommandInfo(model));
  184. LYFZ.Model.Model_ErpSystemConfigure model2 = bll.GetModel("Sconfig_Code", "BackCashCoefficient");
  185. model2.Sconfig_Value = this.txtBackCashCoefficient.Text.Trim();
  186. clist.Add(bll.GetUpdateCommandInfo(model2));
  187. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) <= 0)
  188. { MessageBoxCustom.Show("保存失败"); return; }
  189. MessageBoxCustom.Show("保存成功"); this.Close();
  190. }
  191. }
  192. /// <summary>
  193. /// 返现系数限制输入
  194. /// </summary>
  195. /// <param name="sender"></param>
  196. /// <param name="e"></param>
  197. void txtBackCashCoefficient_KeyPress(object sender, KeyPressEventArgs e)
  198. {
  199. if (Convert.ToString(e.KeyChar) == ".")
  200. { }
  201. else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  202. { e.Handled = true; }
  203. if (this.txtBackCashCoefficient.Text.Trim().Length >= 3 && Convert.ToInt32(e.KeyChar) != 8)
  204. { e.Handled = true; }
  205. }
  206. /// <summary>
  207. /// 取消
  208. /// </summary>
  209. /// <param name="sender"></param>
  210. /// <param name="e"></param>
  211. protected override void btnCancel_Click(object sender, EventArgs e)
  212. { this.Close(); }
  213. }
  214. }