MemberExpiresRemindForm.cs 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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.StatisticsForm
  10. {
  11. public partial class MemberExpiresRemindForm : LYFZ.Software.UI.MembershipManage.StatisticsForm.MemberExpiresRemindForm
  12. {
  13. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  14. LYFZ.BLL.BLL_ErpSystemConfigure sgbll = new BLL.BLL_ErpSystemConfigure();
  15. public MemberExpiresRemindForm()
  16. {
  17. this.Load += MemberExpiresRemindForm_Load;
  18. this.Shown += MemberExpiresRemindForm_Shown;
  19. this.btnQuery.Click += btnQuery_Click;
  20. this.btnSet.Click += btnSet_Click;
  21. this.btnClose.Click += btnClose_Click;
  22. this.txtDay.KeyPress += txtDay_KeyPress;
  23. this.chkPoints.Click += chkPoints_Click;
  24. this.chkStoredValue.Click += chkStoredValue_Click;
  25. this.chkBackCash.Click += chkBackCash_Click;
  26. this.chkService.Click += chkService_Click;
  27. this.chkPhotographer.Click += chkPhotographer_Click;
  28. }
  29. DataTable dtSet = new DataTable();
  30. /// <summary>
  31. /// 窗体加载事件
  32. /// </summary>
  33. /// <param name="sender"></param>
  34. /// <param name="e"></param>
  35. void MemberExpiresRemindForm_Load(object sender, EventArgs e)
  36. {
  37. this.PublicFunctionRows();
  38. }
  39. /// <summary>
  40. /// 窗体加载事件
  41. /// </summary>
  42. /// <param name="sender"></param>
  43. /// <param name="e"></param>
  44. void MemberExpiresRemindForm_Shown(object sender, EventArgs e)
  45. {
  46. this.PublicFunctionRows();
  47. this.GetCongfig();
  48. }
  49. /// <summary>
  50. /// 查询
  51. /// </summary>
  52. /// <param name="sender"></param>
  53. /// <param name="e"></param>
  54. void btnQuery_Click(object sender, EventArgs e)
  55. {
  56. this.PublicFunctionRows();
  57. }
  58. /// <summary>
  59. /// 设置
  60. /// </summary>
  61. /// <param name="sender"></param>
  62. /// <param name="e"></param>
  63. void btnSet_Click(object sender, EventArgs e)
  64. {
  65. LYFZ.Software.MainBusiness.MembershipManage.StatisticsForm.MemberExpiresRemindSetForm frm = new MemberExpiresRemindSetForm();
  66. frm.ShowDialog();
  67. if (frm.IsSaveed)
  68. {
  69. this.dtSet = new Json.JsontoDataTable().toObject(frm.StrJosnData);
  70. this.PublicFunctionRows();
  71. this.GetCongfig();
  72. }
  73. }
  74. /// <summary>
  75. /// 关闭
  76. /// </summary>
  77. /// <param name="sender"></param>
  78. /// <param name="e"></param>
  79. void btnClose_Click(object sender, EventArgs e)
  80. {
  81. this.Close();
  82. }
  83. /// <summary>
  84. /// 输入限制
  85. /// </summary>
  86. /// <param name="sender"></param>
  87. /// <param name="e"></param>
  88. void txtDay_KeyPress(object sender, KeyPressEventArgs e)
  89. {
  90. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  91. { e.Handled = true; }
  92. }
  93. /// <summary>
  94. /// 积分选择
  95. /// </summary>
  96. /// <param name="sender"></param>
  97. /// <param name="e"></param>
  98. void chkPoints_Click(object sender, EventArgs e)
  99. {
  100. this.chkPoints.Checked = true;
  101. this.chkStoredValue.Checked = false;
  102. this.chkBackCash.Checked = false;
  103. this.chkService.Checked = false;
  104. this.chkPhotographer.Checked = false;
  105. this.PublicFunctionRows();
  106. this.GetCongfig();
  107. }
  108. /// <summary>
  109. /// 领会选择
  110. /// </summary>
  111. /// <param name="sender"></param>
  112. /// <param name="e"></param>
  113. void chkStoredValue_Click(object sender, EventArgs e)
  114. {
  115. this.chkPoints.Checked = false;
  116. this.chkStoredValue.Checked = true;
  117. this.chkBackCash.Checked = false;
  118. this.chkService.Checked = false;
  119. this.chkPhotographer.Checked = false;
  120. this.PublicFunctionRows();
  121. this.GetCongfig();
  122. }
  123. /// <summary>
  124. /// 返现选择
  125. /// </summary>
  126. /// <param name="sender"></param>
  127. /// <param name="e"></param>
  128. void chkBackCash_Click(object sender, EventArgs e)
  129. {
  130. this.chkPoints.Checked = false;
  131. this.chkStoredValue.Checked = false;
  132. this.chkBackCash.Checked = true;
  133. this.chkService.Checked = false;
  134. this.chkPhotographer.Checked = false;
  135. this.PublicFunctionRows();
  136. this.GetCongfig();
  137. }
  138. /// <summary>
  139. /// 服务选择
  140. /// </summary>
  141. /// <param name="sender"></param>
  142. /// <param name="e"></param>
  143. void chkService_Click(object sender, EventArgs e)
  144. {
  145. this.chkPoints.Checked = false;
  146. this.chkStoredValue.Checked = false;
  147. this.chkBackCash.Checked = false;
  148. this.chkService.Checked = true;
  149. this.chkPhotographer.Checked = false;
  150. this.PublicFunctionRows();
  151. this.GetCongfig();
  152. }
  153. /// <summary>
  154. /// 新摄会选择
  155. /// </summary>
  156. /// <param name="sender"></param>
  157. /// <param name="e"></param>
  158. void chkPhotographer_Click(object sender, EventArgs e)
  159. {
  160. this.chkPoints.Checked = false;
  161. this.chkStoredValue.Checked = false;
  162. this.chkBackCash.Checked = false;
  163. this.chkService.Checked = false;
  164. this.chkPhotographer.Checked = true;
  165. this.PublicFunctionRows();
  166. this.GetCongfig();
  167. }
  168. /// <summary>
  169. /// 获取配置文件数据
  170. /// </summary>
  171. void GetCongfig()
  172. {
  173. if (this.dtSet.Rows.Count <= 0)
  174. {
  175. DataTable dt = sgbll.GetList("Sconfig_Code in ('MemberExpiresSet')").Tables[0];
  176. if (dt.Rows.Count > 0)
  177. {
  178. this.dtSet = new Json.JsontoDataTable().toObject(dt.Rows[0]["Sconfig_Value"].ToString().Trim());
  179. }
  180. }
  181. if (this.dtSet.Rows.Count > 0)
  182. {
  183. if (this.chkPoints.Checked)
  184. {
  185. DataRow[] dtRow = this.dtSet.Select("StrName='Points'");
  186. if (dtRow.Length > 0)
  187. { this.txtDay.Text = dtRow[0]["StrValue"].ToString().Trim(); }
  188. }
  189. else if (this.chkStoredValue.Checked)
  190. {
  191. DataRow[] dtRow = this.dtSet.Select("StrName='StoredValue'");
  192. if (dtRow.Length > 0)
  193. { this.txtDay.Text = dtRow[0]["StrValue"].ToString().Trim(); }
  194. }
  195. else if (this.chkBackCash.Checked)
  196. {
  197. DataRow[] dtRow = this.dtSet.Select("StrName='BackCash'");
  198. if (dtRow.Length > 0)
  199. { this.txtDay.Text = dtRow[0]["StrValue"].ToString().Trim(); }
  200. }
  201. else if (this.chkService.Checked)
  202. {
  203. DataRow[] dtRow = this.dtSet.Select("StrName='Service'");
  204. if (dtRow.Length > 0)
  205. { this.txtDay.Text = dtRow[0]["StrValue"].ToString().Trim(); }
  206. }
  207. else if (this.chkPhotographer.Checked)
  208. {
  209. DataRow[] dtRow = this.dtSet.Select("StrName='Photographer'");
  210. if (dtRow.Length > 0)
  211. { this.txtDay.Text = dtRow[0]["StrValue"].ToString().Trim(); }
  212. }
  213. }
  214. }
  215. /// <summary>
  216. /// 创建行数据
  217. /// </summary>
  218. void PublicFunctionRows()
  219. {
  220. this.dgvData.Rows.Clear();
  221. string StrWhere = "";
  222. if (this.chkPoints.Checked)
  223. { StrWhere = " And Mcvy_Type = 2"; }
  224. else if (this.chkStoredValue.Checked)
  225. { StrWhere = " And Mcvy_Type = 1"; }
  226. else if (this.chkBackCash.Checked)
  227. { StrWhere = " And Mcvy_Type = 3"; }
  228. else if (this.chkService.Checked)
  229. { StrWhere = " And Mcvy_Type = 4"; }
  230. else if (this.chkPhotographer.Checked)
  231. { StrWhere = " And Mcvy_Type = 5"; }
  232. string StrTableName = "with t as " +
  233. "(" +
  234. "SELECT tb_ErpMemberCardValidity.ID," +
  235. "Mcvy_Number AS 会员编号," +
  236. "Mc_CradNumber AS 会员卡号," +
  237. "(Cus_Name+'/'+Mc_SecondQueryName) AS 姓名," +
  238. "Cus_Telephone AS 电话," +
  239. "case Mcvy_Type when 1 then '储值卡' " +
  240. "when 2 then '积分卡' " +
  241. "when 3 then '返现卡' " +
  242. "when 4 then '服务卡' " +
  243. "when 5 then '新摄会卡' end AS 类型," +
  244. "Mcvy_ValidityTime AS 到期时间," +
  245. "DATEDIFF(day, GETDATE(), Mcvy_ValidityTime) AS 几天未完 " +
  246. "from tb_ErpMemberCardValidity " +
  247. "Left Join tb_ErpMemberCard on Mc_Number = Mcvy_Number " +
  248. "Left Join tb_ErpCustomer on Cus_CustomerNumber = Mc_CustomerNumber " +
  249. "where Mcvy_ValidityTime is not null" + StrWhere +
  250. ")" +
  251. "select * from t where 几天未完 <= " + this.txtDay.Text.Trim() + " order by 几天未完";
  252. DataTable dt = orbll.GetView_Custom(StrTableName).Tables[0];
  253. this.dgvData.DataSource(dt, strHideField: "ID");
  254. }
  255. }
  256. }