ControlSetSuperSmallForm.cs 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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.CameraControlBook.SuperSmallForm
  10. {
  11. public partial class ControlSetSuperSmallForm : LYFZ.Software.UI.CameraControlBook.SuperSmallForm.ControlSetSuperSmallForm
  12. {
  13. LYFZ.BLL.BLL_ErpSystemConfigure scbll = new LYFZ.BLL.BLL_ErpSystemConfigure();
  14. public ControlSetSuperSmallForm()
  15. {
  16. this.Load += ControlSetSuperSmallForm_Load;
  17. this.btnSaveed.Click += btnSaveed_Click;
  18. this.btnCancel.Click += btnCancel_Click;
  19. this.txtWedding.KeyPress += txtWedding_KeyPress;
  20. this.txtChild.KeyPress += txtChild_KeyPress;
  21. this.txtPortrait.KeyPress += txtPortrait_KeyPress;
  22. this.txtOther.KeyPress += txtOther_KeyPress;
  23. }
  24. /// <summary>
  25. /// 是否保存
  26. /// </summary>
  27. public bool IsSaveed = false;
  28. /// <summary>
  29. /// 加载类型
  30. /// </summary>
  31. public ControlSet enumControlSet;
  32. /// <summary>
  33. /// 加载设置类型
  34. /// </summary>
  35. public enum ControlSet
  36. {
  37. 拍照客人 = 0,
  38. 选片客人 = 1,
  39. 看设计客人 = 2,
  40. 选礼服客人 = 3,
  41. 服务客人
  42. }
  43. LYFZ.Model.Model_ErpSystemConfigure model;
  44. /// <summary>
  45. /// 窗体加载
  46. /// </summary>
  47. /// <param name="sender"></param>
  48. /// <param name="e"></param>
  49. void ControlSetSuperSmallForm_Load(object sender, EventArgs e)
  50. {
  51. switch (enumControlSet)
  52. {
  53. case ControlSet.拍照客人:
  54. this.panelSeparate.Visible = true;
  55. break;
  56. case ControlSet.选片客人:
  57. case ControlSet.看设计客人:
  58. case ControlSet.服务客人:
  59. case ControlSet.选礼服客人:
  60. this.panelOther.Visible = true;
  61. break;
  62. }
  63. model = scbll.GetModel("Sconfig_Code", "DayRemind");
  64. if (model.ID > 0 && !string.IsNullOrEmpty(model.Sconfig_Value))
  65. {
  66. string[] StrArray = model.Sconfig_Value.Trim().Split('|');
  67. switch (enumControlSet)
  68. {
  69. case ControlSet.拍照客人:
  70. string[] StrArray2 = StrArray[0].Trim().Split(',');
  71. if (StrArray2.Length >= 1 && StrArray2[0].Trim().Length > 0)
  72. { this.txtWedding.Text = StrArray2[0].Trim(); }
  73. if (StrArray2.Length >= 2 && StrArray2[1].Trim().Length > 0)
  74. { this.txtChild.Text = StrArray2[1].Trim(); }
  75. else
  76. { this.txtChild.Text = "0"; }
  77. if (StrArray2.Length >= 3 && StrArray2[2].Trim().Length > 0)
  78. { this.txtPortrait.Text = StrArray2[2].Trim(); }
  79. else
  80. { this.txtPortrait.Text = "0"; }
  81. break;
  82. case ControlSet.选片客人:
  83. this.txtOther.Text = StrArray[1].Trim();
  84. break;
  85. case ControlSet.看设计客人:
  86. this.txtOther.Text = StrArray[2].Trim();
  87. break;
  88. case ControlSet.选礼服客人:
  89. this.txtOther.Text = StrArray[3].Trim();
  90. break;
  91. case ControlSet.服务客人:
  92. this.txtOther.Text = StrArray[4].Trim();
  93. break;
  94. }
  95. }
  96. }
  97. /// <summary>
  98. /// 保存
  99. /// </summary>
  100. /// <param name="sender"></param>
  101. /// <param name="e"></param>
  102. void btnSaveed_Click(object sender, EventArgs e)
  103. {
  104. if (model != null)
  105. {
  106. string[] strArray = model.Sconfig_Value.Trim().Split('|');
  107. switch (enumControlSet)
  108. {
  109. case ControlSet.拍照客人:
  110. if (string.IsNullOrEmpty(this.txtWedding.Text.Trim()))
  111. { MessageBoxCustom.Show("婚纱订单数量不能为空!"); return; }
  112. if (string.IsNullOrEmpty(this.txtChild.Text.Trim()))
  113. { MessageBoxCustom.Show("儿童订单数量不能为空!"); return; }
  114. if (string.IsNullOrEmpty(this.txtPortrait.Text.Trim()))
  115. { MessageBoxCustom.Show("写真订单数量不能为空!"); return; }
  116. strArray[0] = Convert.ToInt32(this.txtWedding.Text) + "," + Convert.ToInt32(this.txtChild.Text) + "," + Convert.ToInt32(this.txtPortrait.Text);
  117. break;
  118. case ControlSet.选片客人:
  119. if (string.IsNullOrEmpty(this.txtOther.Text.Trim()))
  120. { MessageBoxCustom.Show("订单数量不能为空!"); return; }
  121. strArray[1] = Convert.ToInt32(this.txtOther.Text).ToString();
  122. break;
  123. case ControlSet.看设计客人:
  124. if (string.IsNullOrEmpty(this.txtOther.Text.Trim()))
  125. { MessageBoxCustom.Show("订单数量不能为空!"); return; }
  126. strArray[2] = Convert.ToInt32(this.txtOther.Text).ToString();
  127. break;
  128. case ControlSet.选礼服客人:
  129. if (string.IsNullOrEmpty(this.txtOther.Text.Trim()))
  130. { MessageBoxCustom.Show("订单数量不能为空!"); return; }
  131. strArray[3] = Convert.ToInt32(this.txtOther.Text).ToString();
  132. break;
  133. case ControlSet.服务客人:
  134. if (string.IsNullOrEmpty(this.txtOther.Text.Trim()))
  135. { MessageBoxCustom.Show("订单数量不能为空!"); return; }
  136. strArray[4] = Convert.ToInt32(this.txtOther.Text).ToString();
  137. break;
  138. }
  139. model.Sconfig_Value = string.Join("|", strArray);
  140. if (!scbll.Update(model))
  141. { MessageBoxCustom.Show("保存失败!"); return; }
  142. this.IsSaveed = true;
  143. this.btnCancel.Text = " 关 闭";
  144. MessageBoxCustom.Show("保存成功!");
  145. }
  146. }
  147. /// <summary>
  148. /// 取消
  149. /// </summary>
  150. /// <param name="sender"></param>
  151. /// <param name="e"></param>
  152. void btnCancel_Click(object sender, EventArgs e)
  153. { this.Close(); }
  154. /// <summary>
  155. /// 文本框限制输入
  156. /// </summary>
  157. /// <param name="sender"></param>
  158. /// <param name="e"></param>
  159. void txtWedding_KeyPress(object sender, KeyPressEventArgs e)
  160. {
  161. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  162. { e.Handled = true; }
  163. }
  164. /// <summary>
  165. /// 文本框限制输入
  166. /// </summary>
  167. /// <param name="sender"></param>
  168. /// <param name="e"></param>
  169. void txtChild_KeyPress(object sender, KeyPressEventArgs e)
  170. {
  171. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  172. { e.Handled = true; }
  173. }
  174. /// <summary>
  175. /// 文本框限制输入
  176. /// </summary>
  177. /// <param name="sender"></param>
  178. /// <param name="e"></param>
  179. void txtPortrait_KeyPress(object sender, KeyPressEventArgs e)
  180. {
  181. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  182. { e.Handled = true; }
  183. }
  184. /// <summary>
  185. /// 文本框限制输入
  186. /// </summary>
  187. /// <param name="sender"></param>
  188. /// <param name="e"></param>
  189. void txtOther_KeyPress(object sender, KeyPressEventArgs e)
  190. {
  191. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  192. { e.Handled = true; }
  193. }
  194. }
  195. }