ServiceKoufeiSuperSmallForm.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. using System;
  2. using System.Collections;
  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.MembershipManage.SuperSmallForm
  11. {
  12. public partial class ServiceKoufeiSuperSmallForm : LYFZ.Software.UI.MembershipManage.SuperSmallForm.ServiceKoufeiSuperSmallForm
  13. {
  14. public ServiceKoufeiSuperSmallForm()
  15. {
  16. }
  17. LYFZ.BLL.BLL_ErpSMSRecord rbll = new BLL.BLL_ErpSMSRecord();
  18. LYFZ.BLL.BLL_ErpMemberCard mcbll = new BLL.BLL_ErpMemberCard();
  19. LYFZ.BLL.BLL_ErpSystemConfigure sgbll = new BLL.BLL_ErpSystemConfigure();
  20. LYFZ.BLL.BLL_ErpMemberCardServiceContent mcscbll = new BLL.BLL_ErpMemberCardServiceContent();
  21. LYFZ.BLL.BLL_ErpMemberCardServiceContentUseLog mcsculog = new BLL.BLL_ErpMemberCardServiceContentUseLog();
  22. /// <summary>
  23. /// 要扣费的数据列表
  24. /// </summary>
  25. public ArrayList Servicelist = new ArrayList();
  26. /// <summary>
  27. /// 是否保存
  28. /// </summary>
  29. public bool IsSaveed = false;
  30. /// <summary>
  31. /// 会员卡号
  32. /// </summary>
  33. private string StrMemberCardNumber = "";
  34. /// <summary>
  35. /// 会员编号
  36. /// </summary>
  37. private string StrNumber = "";
  38. /// <summary>
  39. /// 手机码
  40. /// </summary>
  41. private string StrTelephone = "";
  42. /// <summary>
  43. /// 窗体加载事件
  44. /// </summary>
  45. /// <param name="sender"></param>
  46. /// <param name="e"></param>
  47. protected override void ServiceKoufeiSuperSmallForm_Shown(object sender, EventArgs e)
  48. {
  49. for (int i = 0; i < Servicelist.Count; i++)
  50. {
  51. Hashtable htData = (Hashtable)Servicelist[i];
  52. DataGridViewRow dgvr = new DataGridViewRow();
  53. DataGridViewCell cell = null;
  54. cell = new DataGridViewTextBoxCell();
  55. cell.Value = htData["ServiceNumber"].ToString().Trim();
  56. dgvr.Cells.Add(cell);
  57. cell = new DataGridViewTextBoxCell();
  58. cell.Value = htData["ServiceName"].ToString().Trim();
  59. dgvr.Cells.Add(cell);
  60. cell = new DataGridViewTextBoxCell();
  61. cell.Value = "1";
  62. dgvr.Cells.Add(cell);
  63. cell = new DataGridViewTextBoxCell();
  64. cell.Value = htData["ServiceID"].ToString().Trim();
  65. dgvr.Cells.Add(cell);
  66. this.StrNumber = htData["MemberNumber"].ToString().Trim();
  67. this.StrMemberCardNumber = htData["MemberCardNumber"].ToString().Trim();
  68. this.StrTelephone = htData["strTelephone"].ToString().Trim();
  69. this.dgvData.Rows.Add(dgvr);
  70. }
  71. }
  72. /// <summary>
  73. /// 服务次数离开事件
  74. /// </summary>
  75. /// <param name="sender"></param>
  76. /// <param name="e"></param>
  77. protected override void txtCount_KeyPress(object sender, KeyPressEventArgs e)
  78. {
  79. if (Convert.ToString(e.KeyChar) == "0")
  80. {
  81. if (this.txtCount.Text.Trim() == "")
  82. { e.Handled = true; }
  83. }
  84. else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  85. { this.txtCount.Text = ""; e.Handled = true; }
  86. }
  87. /// <summary>
  88. /// 服务次数离开事件
  89. /// </summary>
  90. /// <param name="sender"></param>
  91. /// <param name="e"></param>
  92. protected override void txtCount_Leave(object sender, EventArgs e)
  93. {
  94. if (this.txtCount.Tag != null)
  95. {
  96. if (this.txtCount.Tag.ToString().Trim() == "A")
  97. {
  98. this.dgvData.CurrentRow.Cells["Column3"].Value = this.txtCount.Text.Trim();
  99. this.dgvData.CurrentRow.Tag = "1";
  100. }
  101. this.txtCount.Visible = false;
  102. }
  103. }
  104. private int Location_X = 0;
  105. private int Location_Y = 0;
  106. private int cellValue = 0;
  107. /// <summary>
  108. /// 数据列表双击事件
  109. /// </summary>
  110. /// <param name="sender"></param>
  111. /// <param name="e"></param>
  112. protected override void dgvData_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
  113. {
  114. if (e.RowIndex != -1 && e.ColumnIndex != -1)
  115. {
  116. if (this.dgvData.Columns[e.ColumnIndex].Name == "Column3")//
  117. {
  118. DataGridViewCell cell = this.dgvData.Rows[e.RowIndex].Cells[e.ColumnIndex];
  119. Rectangle rect = this.dgvData.GetCellDisplayRectangle(cell.ColumnIndex, cell.RowIndex, true);
  120. this.txtCount.Location = new Point(rect.Location.X + this.Location_X, rect.Location.Y + this.Location_Y);
  121. this.txtCount.Size = rect.Size;
  122. this.txtCount.Visible = true;
  123. this.txtCount.Text = cell.Value.ToString().Trim();
  124. if (cell.Value.ToString().Trim() != "")
  125. { this.cellValue = Convert.ToInt32(cell.Value); }
  126. else { this.cellValue = 0; }
  127. this.txtCount.Tag = "A";
  128. this.txtCount.Focus();
  129. }
  130. else
  131. { this.txtCount.Visible = false; }
  132. }
  133. }
  134. /// <summary>
  135. /// 数据列表单击事件
  136. /// </summary>
  137. /// <param name="sender"></param>
  138. /// <param name="e"></param>
  139. protected override void dgvData_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e)
  140. {
  141. this.txtCount.Visible = false;
  142. }
  143. /// <summary>
  144. /// 确定
  145. /// </summary>
  146. /// <param name="sender"></param>
  147. /// <param name="e"></param>
  148. protected override void btnOK_Click(object sender, EventArgs e)
  149. {
  150. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  151. LYFZ.Model.Model_ErpMemberCardServiceContent model = null;
  152. List<LYFZ.Model.Model_ErpMemberCardServiceContent> mlist = mcscbll.GetModelList("Mcse_Number = '" + this.StrNumber.Trim() + "'");
  153. DateTime strTime = SDateTime.Now;
  154. string strUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  155. string strMagess = "";
  156. List<Hashtable> hlist = new List<Hashtable>();
  157. Hashtable htData2 = null;
  158. for (int i = 0; i < this.dgvData.Rows.Count; i++)
  159. {
  160. for (int j = 0; j < mlist.Count; j++)
  161. {
  162. if (this.dgvData.Rows[i].Cells["Column4"].Value.ToString().Trim() == mlist[j].ID.ToString().Trim())
  163. {
  164. model = mlist[j];
  165. model.Mcse_ServiceCount = model.Mcse_ServiceCount - Convert.ToInt32(this.dgvData.Rows[i].Cells["Column3"].Value);
  166. model.Mcse_UpdateDateTime = strTime;
  167. model.Mcse_UpdateName = strUserID;
  168. clist.Add(mcscbll.GetUpdateCommandInfo(model));
  169. LYFZ.Model.Model_ErpMemberCardServiceContentUseLog modelLog = new Model.Model_ErpMemberCardServiceContentUseLog();
  170. modelLog.Mcsl_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  171. modelLog.Mcsl_Number = this.StrNumber;
  172. modelLog.Mcsl_MemberServiceNumber = this.dgvData.Rows[i].Cells["Column1"].Value.ToString().Trim();
  173. modelLog.Mcsl_ServiceContent = this.dgvData.Rows[i].Cells["Column2"].Value.ToString().Trim();
  174. modelLog.Mcsl_ServiceUesNumber = Convert.ToInt32(this.dgvData.Rows[i].Cells["Column3"].Value);
  175. modelLog.Mcsl_ServiceUesAfterNumber = model.Mcse_ServiceCount;
  176. modelLog.Mcsl_UpdateDateTime = strTime;
  177. modelLog.Mcsl_UpdateName = strUserID;
  178. clist.Add(mcsculog.GetAddCommandInfo(modelLog));
  179. strMagess += modelLog.Mcsl_ServiceContent + "(使用" + modelLog.Mcsl_ServiceUesNumber + "次,剩余可使用次数" + model.Mcse_ServiceCount + "次);";
  180. htData2 = new Hashtable();
  181. htData2["ItemName"] = modelLog.Mcsl_ServiceContent;
  182. htData2["UseCount"] = modelLog.Mcsl_ServiceUesNumber;
  183. htData2["UseAfterCount"] = modelLog.Mcsl_ServiceUesAfterNumber;
  184. htData2["UseTime"] = modelLog.Mcsl_UpdateDateTime.ToString("yyyy-MM-dd HH:mm"); ;
  185. htData2["JingShouRen"] = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  186. hlist.Add(htData2);
  187. break;
  188. }
  189. }
  190. }
  191. if (clist.Count > 0)
  192. {
  193. DataTable tbl = sgbll.GetSystemConfigureCustom("Sconfig_IsEnabled", "Sconfig_Code = 'SMSCashSpending'").Tables[0];
  194. if (tbl.Rows.Count > 0)
  195. {
  196. if (Convert.ToBoolean(tbl.Rows[0]["Sconfig_IsEnabled"]))
  197. {
  198. Model.Model_ErpSMSRecord modelsms = new Model.Model_ErpSMSRecord();
  199. modelsms.Smsr_RecipientNumber = this.StrTelephone;
  200. modelsms.Smsr_Content = "您会员卡" + this.StrMemberCardNumber + "于日期" + strTime.ToString("MM-dd HH:mm") + "消费:" + strMagess + "。";
  201. modelsms.Smsr_SendCreateDatetime = strTime;
  202. modelsms.Smsr_Status = "暂未发送";
  203. modelsms.Smsr_SendPeople = strUserID;
  204. modelsms.Smsr_CreateDatetime = strTime;
  205. clist.Add(rbll.GetAddCommandInfo(modelsms));
  206. }
  207. }
  208. if (MessageBoxCustom.Show("确定要消费吗", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No)
  209. { return; }
  210. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) <= 0)
  211. { MessageBoxCustom.Show("消费扣除次数失败"); return; }
  212. this.IsSaveed = true;
  213. LYFZ.Model.Model_ErpMemberCard modelMc = mcbll.GetModel("Mc_Number", this.StrNumber);
  214. LYFZ.BLL.OrderPayment_Member.MemberServiceCardUse(modelMc.Mc_CustomerNumber, modelMc.Mc_CradNumber, strMagess);
  215. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Print))
  216. {
  217. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.RechargePrintMessageSuperSmallForm frmMesg = new RechargePrintMessageSuperSmallForm();
  218. frmMesg.lblNameTip = "扣费成功!";
  219. frmMesg.ShowDialog();
  220. if (frmMesg.IsSaveed)
  221. {
  222. Hashtable htDataX = new Hashtable();
  223. htDataX["hlist"] = hlist;
  224. htDataX["strNumber"] = this.StrNumber;
  225. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintFixedFormat(LYFZ.EnumPublic.PrintTypeEnum.会员服务消费, htDataX);
  226. }
  227. }
  228. this.Close();
  229. }
  230. }
  231. /// <summary>
  232. /// 取消
  233. /// </summary>
  234. /// <param name="sender"></param>
  235. /// <param name="e"></param>
  236. protected override void btnCancel_Click(object sender, EventArgs e)
  237. { this.Close(); }
  238. /// <summary>
  239. /// 关闭
  240. /// </summary>
  241. /// <param name="sender"></param>
  242. /// <param name="e"></param>
  243. protected override void ServiceKoufeiSuperSmallForm_FormClosing(object sender, FormClosingEventArgs e)
  244. {
  245. if (!this.IsSaveed)
  246. {
  247. if (MessageBoxCustom.Show("确定要关闭吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No)
  248. { e.Cancel = true; }
  249. }
  250. }
  251. }
  252. }