AddGoldCardMemberSmallForm.cs 64 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232
  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. using System.Collections;
  10. using LYFZ.Software.MainBusiness.DoorCityProcess;
  11. using LYFZ.Helper;
  12. namespace LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm
  13. {
  14. public partial class AddGoldCardMemberSmallForm : LYFZ.Software.UI.MembershipManage.SetSmallForm.AddGoldCardMemberSmallForm
  15. {
  16. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  17. LYFZ.BLL.BLL_ErpCustomer ctbll = new BLL.BLL_ErpCustomer();
  18. LYFZ.BLL.BLL_ErpSMSRecord smsbll = new BLL.BLL_ErpSMSRecord();
  19. LYFZ.BLL.BLL_ErpMemberCard mcbll = new BLL.BLL_ErpMemberCard();
  20. LYFZ.BLL.BLL_ErpCustomerGroup ctgpbll = new BLL.BLL_ErpCustomerGroup();
  21. LYFZ.BLL.BLL_ErpSystemConfigure sgbll = new BLL.BLL_ErpSystemConfigure();
  22. LYFZ.BLL.BLL_ErpMemberCardPoints mcpsbll = new BLL.BLL_ErpMemberCardPoints();
  23. LYFZ.BLL.BLL_ErpMemberCardDiscount mcdbll = new BLL.BLL_ErpMemberCardDiscount();
  24. LYFZ.BLL.BLL_ErpMemberCardValidity mcvybll = new BLL.BLL_ErpMemberCardValidity();
  25. LYFZ.BLL.BLL_ErpCustomerGroupMembers ctgmbll = new BLL.BLL_ErpCustomerGroupMembers();
  26. LYFZ.BLL.BLL_ErpMemberCardInterfaceManagement mcimbll = new BLL.BLL_ErpMemberCardInterfaceManagement();
  27. public AddGoldCardMemberSmallForm()
  28. {
  29. this.txtCradNO.KeyPress += txtCradNO_KeyPress;
  30. this.txtCradNO.EventTextBoxEx_TextChanged += txtCradNO_EventTextBoxEx_TextChanged;
  31. this.chkMan.Click += chkMan_Click;
  32. this.chkWoman.Click += chkWoman_Click;
  33. this.txtSecondQueryName.KeyPress += txtSecondQueryName_KeyPress;
  34. this.chkBackCash.CheckedChanged += chkBackCash_CheckedChanged;
  35. this.chkBackCash_Perpetual.CheckedChanged += chkBackCash_Perpetual_CheckedChanged;
  36. this.chkNewTaken.CheckedChanged += chkNewTaken_CheckedChanged;
  37. this.chkNewTaken_Perpetual.CheckedChanged += chkNewTaken_Perpetual_CheckedChanged;
  38. this.chkPoints.CheckedChanged += chkPoints_CheckedChanged;
  39. this.chkPoints_Perpetual.CheckedChanged += chkPoints_Perpetual_CheckedChanged;
  40. this.chkService.CheckedChanged += chkService_CheckedChanged;
  41. this.chkService_Perpetual.CheckedChanged += chkService_Perpetual_CheckedChanged;
  42. this.chkStoredValue.CheckedChanged += chkStoredValue_CheckedChanged;
  43. this.chkStoredValue_Perpetual.CheckedChanged += chkStoredValue_Perpetual_CheckedChanged;
  44. }
  45. public bool bDisInfo = false;
  46. /// <summary>
  47. /// 会员卡编号
  48. /// </summary>
  49. public string StrNumber = "";
  50. /// <summary>
  51. /// 是否点保存
  52. /// </summary>
  53. public bool IsSaveed = false;
  54. /// <summary>
  55. /// 客户编号
  56. /// </summary>
  57. public string StrClientNumber = "";
  58. bool isFirstLoad = true;
  59. List<LYFZ.Model.Model_ErpMemberCardValidity> mlsitValidity = new List<Model.Model_ErpMemberCardValidity>();
  60. /// <summary>
  61. /// 窗体加载事件
  62. /// </summary>
  63. /// <param name="sender"></param>
  64. /// <param name="e"></param>
  65. protected override void AddGoldCardMemberSmallForm_Load(object sender, EventArgs e)
  66. {
  67. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.HidePhoneControls(this.txtTelephone);
  68. this.isFirstLoad = false;
  69. bool IsValidity = false;
  70. if (this.StrNumber != "")
  71. {
  72. string StrTabelName = "SELECT Cus_CustomerNumber,Mc_SecondQueryName,Mc_Remark,Cus_BirthdayLunar,Cus_Birthday,Cus_WorkUnit,Cus_Address,Cus_MicroSignal,Cus_QQ,Cus_Telephone,Cus_Sex,Cus_Name,Mc_CradNumber " +
  73. "FROM dbo.tb_ErpMemberCard " +
  74. "Left Join dbo.tb_ErpCustomer ON Cus_CustomerNumber = Mc_CustomerNumber Where Mc_Number='" + this.StrNumber + "'";
  75. DataTable tbl = orbll.GetView_Custom(StrTabelName).Tables[0];
  76. if (tbl.Rows.Count > 0)
  77. {
  78. this.txtCradNO.Text = tbl.Rows[0]["Mc_CradNumber"].ToString().Trim();
  79. this.txtCradName.Text = tbl.Rows[0]["Cus_Name"].ToString().Trim();
  80. if (!Convert.ToBoolean(tbl.Rows[0]["Cus_Sex"]))
  81. {
  82. this.chkMan.Checked = true;
  83. this.chkWoman.Checked = false;
  84. }
  85. else
  86. {
  87. this.chkWoman.Checked = true;
  88. this.chkMan.Checked = false;
  89. }
  90. this.txtTelephone.Text = tbl.Rows[0]["Cus_Telephone"].ToString().Trim();
  91. this.txtQQ.Text = tbl.Rows[0]["Cus_QQ"].ToString().Trim();
  92. this.txtMicroSignal.Text = tbl.Rows[0]["Cus_MicroSignal"].ToString().Trim();
  93. this.txtAddress.Text = tbl.Rows[0]["Cus_Address"].ToString().Trim();
  94. this.txtUnit.Text = tbl.Rows[0]["Cus_WorkUnit"].ToString().Trim();
  95. this.maskBirthday.StrValue = Command.Command_Validate.DateTimeToString(tbl.Rows[0]["Cus_Birthday"]);
  96. if (tbl.Rows[0]["Cus_BirthdayLunar"].ToString().Trim() == "1")
  97. { this.chkBirthdayLunar.Checked = true; }
  98. this.txtRemark.Text = tbl.Rows[0]["Mc_Remark"].ToString().Trim();
  99. this.txtSecondQueryName.Text = tbl.Rows[0]["Mc_SecondQueryName"].ToString().Trim();
  100. //this.txtCradNO.Enabled = false;
  101. //this.txtCradName.Enabled = false;
  102. this.btnFind.Visible = false;
  103. this.chkMan.Enabled = false;
  104. this.chkWoman.Enabled = false;
  105. this.txtCradName.Width = 140;
  106. this.StrClientNumber = tbl.Rows[0]["Cus_CustomerNumber"].ToString().Trim();
  107. tbl = mcimbll.GetList("Mcim_Number = '" + this.StrNumber + "'").Tables[0];
  108. if (tbl.Rows.Count > 0)
  109. {
  110. tbl = new Json.JsontoDataTable().toObject(tbl.Rows[0]["Mcim_InterfaceName"].ToString());
  111. try { this.chkPoints.Checked = Convert.ToBoolean(tbl.Rows[0]["Points"]); }
  112. catch
  113. { this.chkPoints.Checked = false; }
  114. try
  115. { this.chkStoredValue.Checked = Convert.ToBoolean(tbl.Rows[0]["StoredValue"]); }
  116. catch
  117. { this.chkStoredValue.Checked = false; }
  118. try
  119. { this.chkBackCash.Checked = Convert.ToBoolean(tbl.Rows[0]["BackCash"]); }
  120. catch
  121. { this.chkBackCash.Checked = false; }
  122. try
  123. { this.chkService.Checked = Convert.ToBoolean(tbl.Rows[0]["Service"]); }
  124. catch
  125. { this.chkService.Checked = false; }
  126. try
  127. { this.chkNewTaken.Checked = Convert.ToBoolean(tbl.Rows[0]["NewTaken"]); }
  128. catch
  129. { this.chkNewTaken.Checked = false; }
  130. }
  131. else
  132. {
  133. this.chkPoints.Checked = true;
  134. }
  135. #region 有效期
  136. mlsitValidity = mcvybll.GetModelList("Mcvy_Number = '" + this.StrNumber + "'");
  137. if (mlsitValidity.Count > 0)
  138. {
  139. IsValidity = true;
  140. for (int i = 0; i < mlsitValidity.Count; i++)
  141. {
  142. switch ((LYFZ.EnumPublic.MemberFunctionAttribute)Enum.ToObject(typeof(LYFZ.EnumPublic.MemberFunctionAttribute), mlsitValidity[i].Mcvy_Type))
  143. //switch (mlsitValidity[i].Mcvy_Type)
  144. {
  145. case EnumPublic.MemberFunctionAttribute.储值:
  146. this.chkStoredValue.Tag = mlsitValidity[i].ID;
  147. if (!string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(mlsitValidity[i].Mcvy_ValidityTime)))
  148. {
  149. this.dtpStoredValue.DateValue = LYFZ.Command.Command_Validate.DateTimeToString(mlsitValidity[i].Mcvy_ValidityTime);
  150. this.chkStoredValue_Perpetual.Checked = false;
  151. }
  152. else
  153. {
  154. this.dtpStoredValue.Enabled = false;
  155. this.chkStoredValue_Perpetual.Checked = true;
  156. }
  157. break;
  158. case EnumPublic.MemberFunctionAttribute.积分:
  159. this.chkPoints.Tag = mlsitValidity[i].ID;
  160. if (!string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(mlsitValidity[i].Mcvy_ValidityTime)))
  161. {
  162. this.dtpPoints.DateValue = LYFZ.Command.Command_Validate.DateTimeToString(mlsitValidity[i].Mcvy_ValidityTime);
  163. this.chkPoints_Perpetual.Checked = false;
  164. }
  165. else
  166. {
  167. this.dtpPoints.Enabled = false;
  168. this.chkPoints_Perpetual.Checked = true;
  169. }
  170. break;
  171. case EnumPublic.MemberFunctionAttribute.返现:
  172. this.chkBackCash.Tag = mlsitValidity[i].ID;
  173. if (!string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(mlsitValidity[i].Mcvy_ValidityTime)))
  174. {
  175. this.dtpBackCash.DateValue = LYFZ.Command.Command_Validate.DateTimeToString(mlsitValidity[i].Mcvy_ValidityTime);
  176. this.chkBackCash_Perpetual.Checked = false;
  177. }
  178. else
  179. {
  180. this.dtpBackCash.Enabled = false;
  181. this.chkBackCash_Perpetual.Checked = true;
  182. }
  183. break;
  184. case EnumPublic.MemberFunctionAttribute.服务:
  185. this.chkService.Tag = mlsitValidity[i].ID;
  186. if (!string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(mlsitValidity[i].Mcvy_ValidityTime)))
  187. {
  188. this.dtpService.DateValue = LYFZ.Command.Command_Validate.DateTimeToString(mlsitValidity[i].Mcvy_ValidityTime);
  189. this.chkService_Perpetual.Checked = false;
  190. }
  191. else
  192. {
  193. this.dtpService.Enabled = false;
  194. this.chkService_Perpetual.Checked = true;
  195. }
  196. break;
  197. case EnumPublic.MemberFunctionAttribute.新摄会:
  198. this.chkNewTaken.Tag = mlsitValidity[i].ID;
  199. if (!string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(mlsitValidity[i].Mcvy_ValidityTime)))
  200. {
  201. this.dtpNewTaken.DateValue = LYFZ.Command.Command_Validate.DateTimeToString(mlsitValidity[i].Mcvy_ValidityTime);
  202. this.chkNewTaken_Perpetual.Checked = false;
  203. }
  204. else
  205. {
  206. this.dtpNewTaken.Enabled = false;
  207. this.chkNewTaken_Perpetual.Checked = true;
  208. }
  209. break;
  210. }
  211. }
  212. }
  213. #endregion
  214. if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.ValidityDateTime))
  215. {
  216. this.chkStoredValue_Perpetual.Enabled = false;
  217. this.chkPoints_Perpetual.Enabled = false;
  218. this.chkBackCash_Perpetual.Enabled = false;
  219. this.chkService_Perpetual.Enabled = false;
  220. this.chkNewTaken_Perpetual.Enabled = false;
  221. this.dtpStoredValue.Enabled = false;
  222. this.dtpPoints.Enabled = false;
  223. this.dtpBackCash.Enabled = false;
  224. this.dtpService.Enabled = false;
  225. this.dtpNewTaken.Enabled = false;
  226. }
  227. }
  228. else
  229. { this.btnCancel.Visible = false; MessageBoxCustom.Show("非法进入"); this.Close(); }
  230. }
  231. else
  232. {
  233. if (!string.IsNullOrEmpty(this.StrClientNumber))
  234. {
  235. this.GetClientData();
  236. }
  237. this.chkPoints.Checked = true;
  238. }
  239. if (!IsValidity)
  240. {
  241. this.chkBackCash_Perpetual.Checked = true;
  242. this.chkNewTaken_Perpetual.Checked = true;
  243. this.chkPoints_Perpetual.Checked = true;
  244. this.chkService_Perpetual.Checked = true;
  245. this.chkStoredValue_Perpetual.Checked = true;
  246. }
  247. else
  248. {
  249. if (this.chkStoredValue.Tag == null)
  250. { this.chkStoredValue_Perpetual.Checked = true; }
  251. if (this.chkPoints.Tag == null)
  252. { this.chkPoints_Perpetual.Checked = true; }
  253. if (this.chkBackCash.Tag == null)
  254. { this.chkBackCash_Perpetual.Checked = true; }
  255. if (this.chkService.Tag == null)
  256. { this.chkService_Perpetual.Checked = true; }
  257. if (this.chkNewTaken.Tag == null)
  258. { this.chkNewTaken_Perpetual.Checked = true; }
  259. }
  260. this.isFirstLoad = true;
  261. ///会员管理服务卡会员的版本权限
  262. List<Control> hideControl = new List<Control>();
  263. //LYFZSS.SystemSpecterPossessed.ISystemSpecterPossessed.GetMySystemSpecter = LYFZSS.SystemSpecterType.SST_D;
  264. hideControl.Add(this.chkService);
  265. hideControl.Add(this.labelEx16);
  266. hideControl.Add(this.dtpService);
  267. hideControl.Add(this.chkService_Perpetual);
  268. LYFZ.Software.MainBusiness.VersionControl.StaticVersion.BindVersionShowHideControl(
  269. VersionControl.VersionFunctionEnum.会员管理服务卡会员, hideControl, null, null);
  270. ///会员管理服务卡会员的版本权限
  271. hideControl = new List<Control>();
  272. //LYFZSS.SystemSpecterPossessed.ISystemSpecterPossessed.GetMySystemSpecter = LYFZSS.SystemSpecterType.SST_D;
  273. hideControl.Add(this.chkNewTaken);
  274. hideControl.Add(this.labelEx17);
  275. hideControl.Add(this.dtpNewTaken);
  276. hideControl.Add(this.chkNewTaken_Perpetual);
  277. LYFZ.Software.MainBusiness.VersionControl.StaticVersion.BindVersionShowHideControl(
  278. VersionControl.VersionFunctionEnum.会员管理摄友会会员, hideControl, null, null);
  279. if(bDisInfo)
  280. {
  281. InitInputData();
  282. }
  283. }
  284. public void InitInputData()
  285. {
  286. this.txtCradNO.Enabled = false;
  287. this.txtCradName.Enabled = false;
  288. this.btnFind.Enabled = false;
  289. this.txtSecondQueryName.Enabled = false;
  290. this.txtTelephone.Enabled = false;
  291. this.txtQQ.Enabled = false;
  292. this.maskBirthday.Enabled = false;
  293. this.chkBirthdayLunar.Enabled = false;
  294. this.txtMicroSignal.Enabled = false;
  295. this.chkMan.Enabled = false;
  296. this.chkWoman.Enabled = false;
  297. this.txtUnit.Enabled = false;
  298. this.chkPoints.Enabled = false;
  299. this.chkStoredValue.Enabled = false;
  300. this.chkBackCash.Enabled = false;
  301. this.chkService.Enabled = false;
  302. this.chkNewTaken.Enabled = false;
  303. this.txtAddress.Enabled = false;
  304. this.dtpPoints.Enabled = false;
  305. this.dtpStoredValue.Enabled = false;
  306. this.dtpBackCash.Enabled = false;
  307. this.dtpService.Enabled = false;
  308. this.dtpNewTaken.Enabled = false;
  309. this.chkPoints_Perpetual.Enabled = false;
  310. this.chkStoredValue_Perpetual.Enabled = false;
  311. this.chkBackCash_Perpetual.Enabled = false;
  312. this.chkService_Perpetual.Enabled = false;
  313. this.chkNewTaken_Perpetual.Enabled = false;
  314. }
  315. /// <summary>
  316. /// 关闭窗体后发生事件
  317. /// </summary>
  318. /// <param name="sender"></param>
  319. /// <param name="e"></param>
  320. protected override void AddGoldCardMemberSmallForm_FormClosing(object sender, FormClosingEventArgs e)
  321. {
  322. try
  323. {
  324. if (this.Owner != null)
  325. {
  326. GoldManagementSmallForm frm1 = (GoldManagementSmallForm)this.Owner;
  327. if (frm1 != null)
  328. { frm1.RefreshParentForm = IsSaveed; }
  329. }
  330. }
  331. catch
  332. { }
  333. }
  334. /// <summary>
  335. /// 查找
  336. /// </summary>
  337. /// <param name="sender"></param>
  338. /// <param name="e"></param>
  339. protected override void btnFind_Click(object sender, EventArgs e)
  340. {
  341. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.FindGuestSuperSmallForm frm = new SuperSmallForm.FindGuestSuperSmallForm();
  342. //frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  343. //this.Location = new Point(System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Width / 2 - (this.Width + frm.Width) / 2, this.Location.Y);
  344. //frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  345. frm.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  346. frm.ShowDialog();
  347. if (frm.IsSaveed)
  348. {
  349. this.StrClientNumber = frm.GuestsCustomerNumber;
  350. this.GetClientData();
  351. }
  352. else
  353. {
  354. if (this.StrClientNumber.Trim() == "")
  355. { this.txtCradName.ReadOnly = false; }
  356. }
  357. }
  358. /// <summary>
  359. ///
  360. /// </summary>
  361. void GetClientData()
  362. {
  363. this.isFirstLoad = false;
  364. DataTable tbl = ctbll.GetListCustomer("Cus_Name,Cus_Sex,Cus_Telephone,Cus_Birthday,Cus_BirthdayLunar,Cus_QQ,Cus_MicroSignal,Cus_Address,Cus_WorkUnit", " Cus_CustomerNumber = '" + this.StrClientNumber + "'").Tables[0];
  365. this.txtCradName.Text = tbl.Rows[0]["Cus_Name"].ToString().Trim();
  366. this.txtCradName.ReadOnly = true;
  367. this.txtTelephone.Text = tbl.Rows[0]["Cus_Telephone"].ToString().Trim();
  368. if (!Convert.ToBoolean(tbl.Rows[0]["Cus_Sex"]))
  369. { this.chkMan.Checked = true; }
  370. else
  371. { this.chkWoman.Checked = true; }
  372. this.maskBirthday.StrValue = Command.Command_Validate.DateTimeToString(tbl.Rows[0]["Cus_Birthday"]);
  373. this.chkBirthdayLunar.Checked = LYFZ.Command.Command_Validate.DateLunar(tbl.Rows[0]["Cus_BirthdayLunar"]);
  374. this.txtQQ.Text = tbl.Rows[0]["Cus_QQ"].ToString().Trim();
  375. this.txtMicroSignal.Text = tbl.Rows[0]["Cus_MicroSignal"].ToString().Trim();
  376. this.txtAddress.Text = tbl.Rows[0]["Cus_Address"].ToString().Trim();
  377. this.txtUnit.Text = tbl.Rows[0]["Cus_WorkUnit"].ToString().Trim();
  378. this.GetMemberNumber();
  379. this.txtSecondQueryName.Text = LYFZ.DAL.DAL_ErpCustomer.ClientNumberGetClientAllChildName(this.StrClientNumber);
  380. this.isFirstLoad = true;
  381. }
  382. /// <summary>
  383. /// 电话号码发生改变时
  384. /// </summary>
  385. /// <param name="sender"></param>
  386. /// <param name="e"></param>
  387. protected override void txtTelephone_TextChanged(object sender, EventArgs e)
  388. {
  389. if (this.isFirstLoad)
  390. {
  391. string StrTelephone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtTelephone);
  392. DataTable tblClient = mcbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_Telephone='" + StrTelephone + "'", ShowColumnName: "Cus_CustomerNumber,Cus_Name,Cus_Sex,Cus_Birthday,Cus_BirthdayLunar,Cus_QQ,Cus_MicroSignal,Cus_Address,Cus_WorkUnit").Tables[0];// tblClient.Select("Cus_Telephone Like '" + CusTelephone + "%'");
  393. if (StrTelephone.Length == 11)
  394. {
  395. if (tblClient.Rows.Count > 0)
  396. {
  397. if (this.StrClientNumber.Trim() != tblClient.Rows[0]["Cus_CustomerNumber"].ToString().Trim())
  398. {
  399. this.isFirstLoad = false;
  400. if (MessageBoxCustom.Show("根据电话<" + StrTelephone + ">查找到1位相同客户,是否要加载此客户资料?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No)
  401. {
  402. this.txtTelephone.Text = StrTelephone.Substring(0, StrTelephone.Length - 1);
  403. this.txtTelephone.ForCharMaskedTextBox();
  404. }
  405. else
  406. {
  407. this.txtCradName.Text = tblClient.Rows[0]["Cus_Name"].ToString().Trim();
  408. this.txtTelephone.Text = StrTelephone;
  409. if (tblClient.Rows[0]["Cus_Sex"].ToString().Trim() == "0")
  410. { this.chkMan.Checked = true; }
  411. else
  412. { this.chkWoman.Checked = true; }
  413. this.maskBirthday.StrValue = Command.Command_Validate.DateTimeToString(tblClient.Rows[0]["Cus_Birthday"]);
  414. if (tblClient.Rows[0]["Cus_BirthdayLunar"].ToString().Trim() != "")
  415. {
  416. if (tblClient.Rows[0]["Cus_BirthdayLunar"].ToString().Trim() == "1")
  417. { this.chkBirthdayLunar.Checked = true; }
  418. }
  419. this.txtQQ.Text = tblClient.Rows[0]["Cus_QQ"].ToString().Trim();
  420. this.txtMicroSignal.Text = tblClient.Rows[0]["Cus_MicroSignal"].ToString().Trim();
  421. this.txtAddress.Text = tblClient.Rows[0]["Cus_Address"].ToString().Trim();
  422. this.txtUnit.Text = tblClient.Rows[0]["Cus_WorkUnit"].ToString().Trim();
  423. this.StrClientNumber = tblClient.Rows[0]["Cus_CustomerNumber"].ToString().Trim();
  424. this.GetMemberNumber();
  425. }
  426. this.isFirstLoad = true;
  427. }
  428. }
  429. }
  430. }
  431. //else { isFirstLoad = true; }
  432. }
  433. /// <summary>
  434. /// 获取会员编号
  435. /// </summary>
  436. void GetMemberNumber()
  437. {
  438. DataTable tbl_Card = mcbll.GetMemberCrad_TopOne("Mc_Number,Mc_CradNumber,Mc_CreateDatetime", "Mc_CustomerNumber = '" + this.StrClientNumber + "' and Mc_Status ='1' ").Tables[0];
  439. if (tbl_Card.Rows.Count > 0)
  440. {
  441. if (tbl_Card.Rows[0]["Mc_CradNumber"].ToString().Trim() == "")
  442. { this.StrNumber = tbl_Card.Rows[0]["Mc_Number"].ToString().Trim(); }
  443. }
  444. }
  445. /// <summary>
  446. /// 保存
  447. /// </summary>
  448. /// <param name="sender"></param>
  449. /// <param name="e"></param>
  450. protected override void btnSave_Click(object sender, EventArgs e)
  451. {
  452. #region 验证
  453. //卡号
  454. if (this.txtCradNO.Text.Trim() == "")
  455. { MessageBoxCustom.Show("卡号不能为空"); return; }
  456. //用户姓名
  457. if (this.txtCradName.Text.Trim() == "")
  458. { MessageBoxCustom.Show("客户姓名不能为空"); return; }
  459. string StrTelephone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtTelephone);
  460. //电话
  461. if (StrTelephone != "")
  462. {
  463. if (LYFZ.Command.Command_Validate.IsMobilePhone(StrTelephone) == false)
  464. { MessageBoxCustom.Show("电话格式输入错误"); this.txtTelephone.Text = ""; return; }
  465. }
  466. else
  467. { MessageBoxCustom.Show("请输入电话号码"); return; }
  468. //QQ
  469. if (this.txtQQ.Text.Trim() != "")
  470. {
  471. if (LYFZ.Command.Command_Validate.IsNumber(this.txtQQ.Text.Trim()) == false)
  472. { MessageBoxCustom.Show("QQ号只能输入整数"); this.txtQQ.Text = ""; return; }
  473. }
  474. //生日
  475. int intMasse = this.maskBirthday.CheckDateValue(this.maskBirthday, this.chkBirthdayLunar);
  476. if (intMasse == 1)
  477. { MessageBoxCustom.Show("客户生日日期格式输入错误!"); return; }
  478. else if (intMasse == 2)
  479. { MessageBoxCustom.Show("客户生日:" + this.maskBirthday.StrValue.Trim() + "不是公历日期,若要保存请勾上农历!"); return; }
  480. if (!this.chkStoredValue_Perpetual.Checked)
  481. {
  482. if (string.IsNullOrEmpty(this.dtpStoredValue.DateValue.Trim()))
  483. { MessageBoxCustom.Show("储值功能没有选择永久,请输入有效期!"); return; }
  484. }
  485. if (!this.chkPoints_Perpetual.Checked)
  486. {
  487. if (string.IsNullOrEmpty(this.dtpPoints.DateValue.Trim()))
  488. { MessageBoxCustom.Show("积分功能没有选择永久,请输入有效期!"); return; }
  489. }
  490. if (!this.chkBackCash_Perpetual.Checked)
  491. {
  492. if (string.IsNullOrEmpty(this.dtpBackCash.DateValue.Trim()))
  493. { MessageBoxCustom.Show("返现功能没有选择永久,请输入有效期!"); return; }
  494. }
  495. if (!this.chkService_Perpetual.Checked)
  496. {
  497. if (string.IsNullOrEmpty(this.dtpService.DateValue.Trim()))
  498. { MessageBoxCustom.Show("服务功能没有选择永久,请输入有效期!"); return; }
  499. }
  500. if (!this.chkNewTaken_Perpetual.Checked)
  501. {
  502. if (string.IsNullOrEmpty(this.dtpNewTaken.DateValue.Trim()))
  503. { MessageBoxCustom.Show("新摄会功能没有选择永久,请输入有效期!"); return; }
  504. }
  505. #endregion
  506. DateTime strTime = SDateTime.Now;
  507. string strUserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  508. List<CommandInfo> clist = new List<CommandInfo>();
  509. LYFZ.Model.Model_ErpCustomer ModelCustomer = null;
  510. LYFZ.Model.Model_ErpCustomerGroup modelClientGroup = null;
  511. if (string.IsNullOrEmpty(this.StrClientNumber))
  512. {
  513. DataTable tbl = ctbll.GetListCustomer("Cus_CustomerNumber", "Cus_Telephone = '" + StrTelephone + "'").Tables[0];
  514. if (tbl.Rows.Count == 0)
  515. {
  516. this.StrClientNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber();
  517. #region 新增
  518. //客户表
  519. ModelCustomer = new Model.Model_ErpCustomer();
  520. ModelCustomer.Cus_CustomerNumber = this.StrClientNumber;
  521. ModelCustomer.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  522. ModelCustomer.Cus_Type = "";
  523. ModelCustomer.Cus_Name = LYFZ.BLL.OtherCommonModel.ClearSpecialCharacter(this.txtCradName.Text.Trim());
  524. ModelCustomer.Cus_NamePinyin = LYFZ.Command.Command_ChineseToPinyin.GetChineseSpellPinyin(this.txtCradName.Text).ToLower();
  525. ModelCustomer.Cus_Sex = this.chkMan.Checked ? false : true;
  526. ModelCustomer.Cus_Telephone = StrTelephone;
  527. ModelCustomer.Cus_QQ = this.txtQQ.Text.Trim();
  528. ModelCustomer.Cus_MicroSignal = this.txtMicroSignal.Text.Trim();
  529. ModelCustomer.Cus_Birthday = "";
  530. ModelCustomer.Cus_BirthdayLunar = "";
  531. ModelCustomer.Cus_Zodiac = "";
  532. if (this.maskBirthday.StrValue.Trim() != "")
  533. {
  534. ModelCustomer.Cus_Birthday = this.maskBirthday.StrValue;
  535. ModelCustomer.Cus_BirthdayLunar = this.chkBirthdayLunar.Checked ? "1" : "0";
  536. ModelCustomer.Cus_Zodiac = LYFZ.Command.Command_CalendarTurnLunar.GetZodiac(ModelCustomer.Cus_Birthday, this.chkBirthdayLunar.Checked);
  537. }
  538. else
  539. { ModelCustomer.Cus_BirthdayLunar = ""; }
  540. ModelCustomer.Cus_Address = this.txtAddress.Text.Trim();
  541. ModelCustomer.Cus_WorkUnit = this.txtUnit.Text.Trim();
  542. ModelCustomer.Cus_CreateName = strUserName;
  543. ModelCustomer.Cus_CreateDateTime = strTime;
  544. clist.Add(ctbll.GetAddCommandInfo(ModelCustomer));
  545. //客户组表
  546. modelClientGroup = new Model.Model_ErpCustomerGroup();
  547. modelClientGroup.GP_OrderNumber = "";
  548. modelClientGroup.GP_CustomerGroupID = LYFZ.BLL.BLL_ErpCustomer.GetNewClientGroupNumber();
  549. modelClientGroup.GP_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  550. modelClientGroup.GP_GroupType = 1;
  551. modelClientGroup.GP_CustomerType = -1;
  552. modelClientGroup.GP_CustomerStatus = "正常";
  553. modelClientGroup.GP_LossReason = "";
  554. modelClientGroup.GP_DegreeOfIntent = "";
  555. modelClientGroup.GP_CustomerSource = "";
  556. modelClientGroup.GP_IntroducerCustomerID = "";
  557. modelClientGroup.GP_Remark = "";
  558. modelClientGroup.GP_BelongsPersonID = "";
  559. modelClientGroup.GP_CreateDatetime = strTime;
  560. modelClientGroup.GP_CreateName = strUserName;
  561. modelClientGroup.GP_ISIntentionCustomer = 0;
  562. modelClientGroup.GP_RemindEvent = "";
  563. clist.Add(ctgpbll.GetAddCommandInfo(modelClientGroup));
  564. //客户成员表
  565. LYFZ.Model.Model_ErpCustomerGroupMembers modelClientMember = new Model.Model_ErpCustomerGroupMembers();
  566. modelClientMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  567. modelClientMember.GM_CustomerGroupID = modelClientGroup.GP_CustomerGroupID;
  568. modelClientMember.GM_CustomerID = ModelCustomer.Cus_CustomerNumber;
  569. modelClientMember.GM_Master = 1;
  570. modelClientMember.GM_ProtagonistCustomer = 1;
  571. modelClientMember.GM_RelatedPersonID = modelClientMember.GM_CustomerID;
  572. modelClientMember.GM_Relation = "本人";
  573. modelClientMember.GM_IsOrder = 0;
  574. modelClientMember.GM_IsOrderNumber = "";
  575. clist.Add(ctgmbll.GetAddCommandInfo(modelClientMember));
  576. #endregion
  577. }
  578. else
  579. { this.StrClientNumber = tbl.Rows[0]["Cus_CustomerNumber"].ToString().Trim(); }
  580. }
  581. else
  582. {
  583. #region 修改
  584. ModelCustomer = ctbll.GetModel("Cus_CustomerNumber", this.StrClientNumber);
  585. ModelCustomer.Cus_Name = this.txtCradName.Text.Trim();
  586. ModelCustomer.Cus_Telephone = StrTelephone;
  587. ModelCustomer.Cus_QQ = this.txtQQ.Text.Trim();
  588. ModelCustomer.Cus_MicroSignal = this.txtMicroSignal.Text.Trim();
  589. ModelCustomer.Cus_Birthday = "";
  590. ModelCustomer.Cus_BirthdayLunar = "";
  591. ModelCustomer.Cus_Zodiac = "";
  592. if (this.maskBirthday.StrValue.Trim() != "")
  593. {
  594. ModelCustomer.Cus_Birthday = this.maskBirthday.StrValue;
  595. ModelCustomer.Cus_BirthdayLunar = this.chkBirthdayLunar.Checked ? "1" : "0";
  596. ModelCustomer.Cus_Zodiac = LYFZ.Command.Command_CalendarTurnLunar.GetZodiac(ModelCustomer.Cus_Birthday, this.chkBirthdayLunar.Checked);
  597. }
  598. else { ModelCustomer.Cus_BirthdayLunar = ""; }
  599. ModelCustomer.Cus_Address = this.txtAddress.Text.Trim();
  600. ModelCustomer.Cus_WorkUnit = this.txtUnit.Text.Trim();
  601. ModelCustomer.Cus_UpdateDateTime = strTime;
  602. ModelCustomer.Cus_UpdateName = strUserName;
  603. clist.Add(ctbll.GetUpdateCommandInfo(ModelCustomer));
  604. #endregion
  605. }
  606. bool IsSendSMS = false;
  607. bool IsUpdateClient = false;
  608. LYFZ.Model.Model_ErpMemberCard ModelCard = null;
  609. DataTable dtmcv = mcbll.GetView_Custom("(SELECT Mvc_ViceCardNumber,Mvc_ViceCardType,Mc_CradNumber FROM tb_ErpMemberCardViceCard Left Join tb_ErpMemberCard on Mvc_Number = Mc_Number where Mvc_Status = '1') as tb", StrWhere: "tb.Mvc_ViceCardNumber = '" + txtCradNO.Text.Trim() + "'", ShowColumnName: "Mvc_ViceCardNumber,Mvc_ViceCardType,Mc_CradNumber").Tables[0];
  610. if (dtmcv.Rows.Count > 0)
  611. { MessageBoxCustom.Show("此卡号有在作副卡使用,使用状况(副卡类型:" + dtmcv.Rows[0]["Mvc_ViceCardType"].ToString().Trim() + ";所在主卡号:" + dtmcv.Rows[0]["Mc_CradNumber"].ToString().Trim() + ")"); return; }
  612. if (string.IsNullOrEmpty(this.StrNumber))
  613. {
  614. if (mcbll.GetList("Mc_CradNumber = '" + txtCradNO.Text.Trim() + "' and Mc_Status = '1'").Tables[0].Rows.Count > 0)
  615. { MessageBoxCustom.Show("此卡号有在使用,不能重复开卡"); return; }
  616. DataTable tbl_Card = mcbll.GetMemberCrad_TopOne("Mc_CradNumber,Mc_CreateDatetime", "Mc_CustomerNumber = '" + this.StrClientNumber + "' and Mc_Status ='1' ").Tables[0];
  617. if (tbl_Card.Rows.Count > 0)
  618. {
  619. if (tbl_Card.Rows[0]["Mc_CradNumber"].ToString().Trim() != "")
  620. {
  621. if (MessageBoxCustom.Show("客户" + this.txtCradName.Text.Trim() + "已办理有会员卡,是否要再办理新卡?", "温馨提示", MessageBoxButtons.OKCancel) == DialogResult.Cancel)
  622. { return; }
  623. //MessageBoxCustom.Show("此客户已开有会员卡号,请核对!"); return;
  624. }
  625. }
  626. #region 保存会员资料
  627. LYFZ.Model.Model_ErpSystemConfigure sgModel = LYFZ.BLL.OrderPayment_Member.GetNewMenberNumber();
  628. clist.Add(sgbll.GetUpdateCommandInfo(sgModel));
  629. ModelCard = new Model.Model_ErpMemberCard();
  630. ModelCard.Mc_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  631. ModelCard.Mc_Number = sgModel.Sconfig_Value;
  632. ModelCard.Mc_CradNumber = this.txtCradNO.Text.Trim();
  633. ModelCard.Mc_CustomerNumber = this.StrClientNumber;
  634. ModelCard.Mc_SecondQueryName = this.txtSecondQueryName.Text.Trim();
  635. DataTable tbl_Grade = mcbll.GetView_Custom("tb_ErpMemberCardGradeSet", "ID = 1", "Mcgs_GradeName").Tables[0];
  636. if (tbl_Grade.Rows.Count > 0)
  637. { ModelCard.Mc_CardType = tbl_Grade.Rows[0]["Mcgs_GradeName"].ToString().Trim(); }
  638. else
  639. {
  640. //ModelCard.Mc_CardType = "积分卡";
  641. ModelCard.Mc_CardType = "无";
  642. }
  643. ModelCard.Mc_TraderPassword = "";
  644. ModelCard.Mc_UsedNumber = "";
  645. ModelCard.Mc_Status = "1";
  646. ModelCard.Mc_Remark = this.txtRemark.Text.Trim();
  647. ModelCard.Mc_OpenCardSource = "会员开卡," + new System.Diagnostics.StackTrace(new System.Diagnostics.StackFrame(true)).ToString();
  648. ModelCard.Mc_CreateDatetime = strTime;
  649. ModelCard.Mc_CreateName = strUserName;
  650. clist.Add(mcbll.GetAddCommandInfo(ModelCard));
  651. LYFZ.Model.Model_ErpMemberCardPoints modelPoints = new Model.Model_ErpMemberCardPoints();
  652. modelPoints.Mcps_Number = ModelCard.Mc_Number;
  653. modelPoints.Mcps_TotalPoints = 0;
  654. modelPoints.Mcps_AvailablePoints = 0;
  655. modelPoints.Mcps_OpenCardSource = "会员开卡," + new System.Diagnostics.StackTrace(new System.Diagnostics.StackFrame(true)).ToString();
  656. modelPoints.Mcps_UpdateDateTime = strTime;
  657. modelPoints.Mcps_UpdateName = strUserName;
  658. clist.Add(mcpsbll.GetAddCommandInfo(modelPoints));
  659. #endregion
  660. #region 界面管理
  661. DataTable newdtb = new DataTable();
  662. newdtb.Columns.Add("Points", typeof(bool));
  663. newdtb.Columns.Add("StoredValue", typeof(bool));
  664. newdtb.Columns.Add("BackCash", typeof(bool));
  665. newdtb.Columns.Add("Service", typeof(bool));
  666. newdtb.Columns.Add("NewTaken", typeof(bool));
  667. DataRow newRow = newdtb.NewRow();
  668. newRow["Points"] = this.chkPoints.Checked.ToString();
  669. newRow["StoredValue"] = this.chkStoredValue.Checked.ToString();
  670. newRow["BackCash"] = this.chkBackCash.Checked.ToString();
  671. newRow["Service"] = this.chkService.Checked.ToString();
  672. newRow["NewTaken"] = this.chkNewTaken.Checked.ToString();
  673. newdtb.Rows.Add(newRow);
  674. LYFZ.Model.Model_ErpMemberCardInterfaceManagement Modelmcim = new Model.Model_ErpMemberCardInterfaceManagement();
  675. Modelmcim.Mcim_Number = ModelCard.Mc_Number;
  676. Modelmcim.Mcim_InterfaceName = new Json.JsontoDataTable().toJson(newdtb);
  677. Modelmcim.Mcim_UpdateDatetime = strTime;
  678. Modelmcim.Mcim_UpdateName = strUserName;
  679. clist.Add(mcimbll.GetAddCommandInfo(Modelmcim));
  680. #endregion
  681. IsSendSMS = true;
  682. }
  683. else
  684. {
  685. ModelCard = mcbll.GetModel("Mc_Number", this.StrNumber);
  686. DataTable tbl_SD = mcbll.GetView_Custom("tb_ErpMemberCard", StrWhere: "Mc_CradNumber = '" + this.txtCradNO.Text.Trim() + "' and Mc_Number != '" + this.StrNumber + "' and Mc_Status ='1'", ShowColumnName: "ID").Tables[0];
  687. if (tbl_SD.Rows.Count > 0)
  688. { MessageBoxCustom.Show("此卡号已有人使用,不能重复使用!"); return; }
  689. if (string.IsNullOrEmpty(ModelCard.Mc_CradNumber))
  690. { IsSendSMS = true; }
  691. ModelCard.Mc_CradNumber = this.txtCradNO.Text.Trim();
  692. ModelCard.Mc_SecondQueryName = this.txtSecondQueryName.Text.Trim();
  693. ModelCard.Mc_Remark = this.txtRemark.Text.Trim();
  694. clist.Add(mcbll.GetUpdateCommandInfo(ModelCard));
  695. LYFZ.Model.Model_ErpMemberCardPoints modelPoints = mcpsbll.GetModel("Mcps_Number", ModelCard.Mc_Number);
  696. if (modelPoints.ID <= 0)
  697. {
  698. modelPoints = new Model.Model_ErpMemberCardPoints();
  699. modelPoints.Mcps_Number = ModelCard.Mc_Number;
  700. modelPoints.Mcps_TotalPoints = 0;
  701. modelPoints.Mcps_AvailablePoints = 0;
  702. modelPoints.Mcps_OpenCardSource = "会员卡修改," + new System.Diagnostics.StackTrace(new System.Diagnostics.StackFrame(true)).ToString();
  703. modelPoints.Mcps_UpdateDateTime = strTime;
  704. modelPoints.Mcps_UpdateName = strUserName;
  705. clist.Add(mcpsbll.GetAddCommandInfo(modelPoints));
  706. }
  707. #region 界面管理
  708. DataTable newdtb = new DataTable();
  709. newdtb.Columns.Add("Points", typeof(bool));
  710. newdtb.Columns.Add("StoredValue", typeof(bool));
  711. newdtb.Columns.Add("BackCash", typeof(bool));
  712. newdtb.Columns.Add("Service", typeof(bool));
  713. newdtb.Columns.Add("NewTaken", typeof(bool));
  714. DataRow newRow = newdtb.NewRow();
  715. newRow["Points"] = this.chkPoints.Checked.ToString();
  716. newRow["StoredValue"] = this.chkStoredValue.Checked.ToString();
  717. newRow["BackCash"] = this.chkBackCash.Checked.ToString();
  718. newRow["Service"] = this.chkService.Checked.ToString();
  719. newRow["NewTaken"] = this.chkNewTaken.Checked.ToString();
  720. newdtb.Rows.Add(newRow);
  721. LYFZ.Model.Model_ErpMemberCardInterfaceManagement Modelmcim = mcimbll.GetModel("Mcim_Number", this.StrNumber);
  722. if (Modelmcim.ID <= 0)
  723. {
  724. Modelmcim = new Model.Model_ErpMemberCardInterfaceManagement();
  725. Modelmcim.Mcim_Number = this.StrNumber;
  726. Modelmcim.Mcim_InterfaceName = new Json.JsontoDataTable().toJson(newdtb);
  727. Modelmcim.Mcim_UpdateDatetime = strTime;
  728. Modelmcim.Mcim_UpdateName = strUserName;
  729. clist.Add(mcimbll.GetAddCommandInfo(Modelmcim));
  730. }
  731. else
  732. {
  733. Modelmcim.Mcim_Number = this.StrNumber;
  734. Modelmcim.Mcim_InterfaceName = new Json.JsontoDataTable().toJson(newdtb);
  735. Modelmcim.Mcim_UpdateDatetime = strTime;
  736. Modelmcim.Mcim_UpdateName = strUserName;
  737. clist.Add(mcimbll.GetUpdateCommandInfo(Modelmcim));
  738. }
  739. #endregion
  740. #region 修改
  741. LYFZ.Model.Model_ErpCustomer model_Cus = ctbll.GetModel("Cus_CustomerNumber", this.StrClientNumber);
  742. model_Cus.Cus_Name = this.txtCradName.Text.Trim();
  743. model_Cus.Cus_Telephone = StrTelephone;
  744. model_Cus.Cus_QQ = this.txtQQ.Text.Trim();
  745. model_Cus.Cus_MicroSignal = this.txtMicroSignal.Text.Trim();
  746. model_Cus.Cus_Birthday = "";
  747. model_Cus.Cus_BirthdayLunar = "";
  748. model_Cus.Cus_Zodiac = "";
  749. if (this.maskBirthday.StrValue.Trim() != "")
  750. {
  751. model_Cus.Cus_Birthday = this.maskBirthday.StrValue;
  752. model_Cus.Cus_BirthdayLunar = this.chkBirthdayLunar.Checked ? "1" : "0";
  753. model_Cus.Cus_Zodiac = LYFZ.Command.Command_CalendarTurnLunar.GetZodiac(model_Cus.Cus_Birthday, this.chkBirthdayLunar.Checked);
  754. }
  755. else { model_Cus.Cus_BirthdayLunar = ""; }
  756. model_Cus.Cus_Address = this.txtAddress.Text.Trim();
  757. model_Cus.Cus_WorkUnit = this.txtUnit.Text.Trim();
  758. model_Cus.Cus_UpdateDateTime = strTime;
  759. model_Cus.Cus_UpdateName = strUserName;
  760. clist.Add(ctbll.GetUpdateCommandInfo(model_Cus));
  761. IsUpdateClient = true;
  762. #endregion
  763. }
  764. if (!this.chkStoredValue.Checked)
  765. {
  766. if(ModelCard.Mc_Money>0)
  767. {
  768. MessageBoxCustom.Show("当前会员卡存在余款,不能取消储值功能。如果需要取消,请先将余款清退。");
  769. return;
  770. }
  771. else
  772. {
  773. clist.Add(LYFZ.BLL.OrderPayment_Member.GetValidityLogs("[修改]", ModelCard.Mc_CradNumber,1, "将会员卡的储值功能取消功能。"));
  774. }
  775. }
  776. LYFZ.Model.Model_ErpMemberCardValidity modelValidity = null;
  777. if (this.mlsitValidity.Count > 0)
  778. {
  779. for (int i = 0; i < this.mlsitValidity.Count; i++)
  780. {
  781. DateTime dtTime = mlsitValidity[i].Mcvy_ValidityTime;
  782. string StrLogTime = "";
  783. if (string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(mlsitValidity[i].Mcvy_ValidityTime)))
  784. { StrLogTime += "‘永久有效’"; }
  785. else
  786. { StrLogTime += "," + LYFZ.Command.Command_Validate.DateTimeToString(mlsitValidity[i].Mcvy_ValidityTime, "yyyy-MM-dd HH:mm:ss") + "’"; }
  787. modelValidity = mlsitValidity[i];
  788. switch ((LYFZ.EnumPublic.MemberFunctionAttribute)Enum.ToObject(typeof(LYFZ.EnumPublic.MemberFunctionAttribute), modelValidity.Mcvy_Type))
  789. {
  790. case LYFZ.EnumPublic.MemberFunctionAttribute.储值:
  791. if (this.chkStoredValue_Perpetual.Checked)
  792. { modelValidity.Mcvy_ValidityTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
  793. else
  794. { modelValidity.Mcvy_ValidityTime = Convert.ToDateTime(this.dtpStoredValue.DateValue).AddDays(1).AddSeconds(-1); ; }
  795. break;
  796. case LYFZ.EnumPublic.MemberFunctionAttribute.积分:
  797. if (this.chkPoints_Perpetual.Checked)
  798. { modelValidity.Mcvy_ValidityTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
  799. else
  800. { modelValidity.Mcvy_ValidityTime = Convert.ToDateTime(this.dtpPoints.DateValue).AddDays(1).AddSeconds(-1); ; }
  801. break;
  802. case LYFZ.EnumPublic.MemberFunctionAttribute.返现:
  803. if (this.chkBackCash_Perpetual.Checked)
  804. { modelValidity.Mcvy_ValidityTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
  805. else
  806. { modelValidity.Mcvy_ValidityTime = Convert.ToDateTime(this.dtpBackCash.DateValue).AddDays(1).AddSeconds(-1); ; }
  807. break;
  808. case LYFZ.EnumPublic.MemberFunctionAttribute.服务:
  809. if (this.chkService_Perpetual.Checked)
  810. { modelValidity.Mcvy_ValidityTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
  811. else
  812. { modelValidity.Mcvy_ValidityTime = Convert.ToDateTime(this.dtpService.DateValue).AddDays(1).AddSeconds(-1); ; }
  813. break;
  814. case LYFZ.EnumPublic.MemberFunctionAttribute.新摄会:
  815. if (this.chkNewTaken_Perpetual.Checked)
  816. { modelValidity.Mcvy_ValidityTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
  817. else
  818. { modelValidity.Mcvy_ValidityTime = Convert.ToDateTime(this.dtpNewTaken.DateValue).AddDays(1).AddSeconds(-1); }
  819. break;
  820. }
  821. if (LYFZ.Command.Command_Validate.DateTimeToString(dtTime) == LYFZ.Command.Command_Validate.DateTimeToString(modelValidity.Mcvy_ValidityTime))
  822. { continue; }
  823. modelValidity.Mcvy_UpdateDatetime = strTime;
  824. modelValidity.Mcvy_UpdateName = strUserName;
  825. clist.Add(mcvybll.GetUpdateCommandInfo(modelValidity));
  826. if (string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(modelValidity.Mcvy_ValidityTime)))
  827. { StrLogTime += "修改为‘永久有效’"; }
  828. else
  829. { StrLogTime += "修改为‘" + LYFZ.Command.Command_Validate.DateTimeToString(modelValidity.Mcvy_ValidityTime, "yyyy-MM-dd HH:mm:ss") + "’"; }
  830. clist.Add(LYFZ.BLL.OrderPayment_Member.GetValidityLogs("[修改]", ModelCard.Mc_CradNumber, modelValidity.Mcvy_Type, StrLogTime));
  831. }
  832. }
  833. for (int i = 1; i < 6; i++)
  834. {
  835. modelValidity = new Model.Model_ErpMemberCardValidity();
  836. modelValidity.Mcvy_Number = ModelCard.Mc_Number;
  837. modelValidity.Mcvy_Type = i;
  838. switch ((LYFZ.EnumPublic.MemberFunctionAttribute)Enum.ToObject(typeof(LYFZ.EnumPublic.MemberFunctionAttribute), i))
  839. {
  840. case LYFZ.EnumPublic.MemberFunctionAttribute.储值:
  841. if (this.chkStoredValue.Tag != null)
  842. { continue; }
  843. if (this.chkStoredValue_Perpetual.Checked)
  844. { modelValidity.Mcvy_ValidityTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
  845. else
  846. { modelValidity.Mcvy_ValidityTime = Convert.ToDateTime(this.dtpStoredValue.DateValue).AddDays(1).AddSeconds(-1); ; }
  847. break;
  848. case LYFZ.EnumPublic.MemberFunctionAttribute.积分:
  849. if (this.chkPoints.Tag != null)
  850. { continue; }
  851. if (this.chkPoints_Perpetual.Checked)
  852. { modelValidity.Mcvy_ValidityTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
  853. else
  854. { modelValidity.Mcvy_ValidityTime = Convert.ToDateTime(this.dtpPoints.DateValue).AddDays(1).AddSeconds(-1); ; }
  855. break;
  856. case LYFZ.EnumPublic.MemberFunctionAttribute.返现:
  857. if (this.chkBackCash.Tag != null)
  858. { continue; }
  859. if (this.chkBackCash_Perpetual.Checked)
  860. { modelValidity.Mcvy_ValidityTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
  861. else
  862. { modelValidity.Mcvy_ValidityTime = Convert.ToDateTime(this.dtpBackCash.DateValue).AddDays(1).AddSeconds(-1); ; }
  863. break;
  864. case LYFZ.EnumPublic.MemberFunctionAttribute.服务:
  865. if (this.chkService.Tag != null)
  866. { continue; }
  867. if (this.chkService_Perpetual.Checked)
  868. { modelValidity.Mcvy_ValidityTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
  869. else
  870. { modelValidity.Mcvy_ValidityTime = Convert.ToDateTime(this.dtpService.DateValue).AddDays(1).AddSeconds(-1); ; }
  871. break;
  872. case LYFZ.EnumPublic.MemberFunctionAttribute.新摄会:
  873. if (this.chkNewTaken.Tag != null)
  874. { continue; }
  875. if (this.chkNewTaken_Perpetual.Checked)
  876. { modelValidity.Mcvy_ValidityTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
  877. else
  878. { modelValidity.Mcvy_ValidityTime = Convert.ToDateTime(this.dtpNewTaken.DateValue).AddDays(1).AddSeconds(-1); ; }
  879. break;
  880. }
  881. modelValidity.Mcvy_CreateDatetime = strTime;
  882. modelValidity.Mcvy_CreateName = strUserName;
  883. clist.Add(mcvybll.GetAddCommandInfo(modelValidity));
  884. string StrLogTime = "";
  885. if (string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(modelValidity.Mcvy_ValidityTime)))
  886. { StrLogTime += "‘永久有效’"; }
  887. else
  888. { StrLogTime += "‘" + LYFZ.Command.Command_Validate.DateTimeToString(modelValidity.Mcvy_ValidityTime, "yyyy-MM-dd HH:mm:ss") + "’"; }
  889. clist.Add(LYFZ.BLL.OrderPayment_Member.GetValidityLogs("[新增]", ModelCard.Mc_CradNumber, modelValidity.Mcvy_Type, StrLogTime));
  890. }
  891. if (clist.Count > 0)
  892. {
  893. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  894. {
  895. //if (modelClientGroup != null)
  896. //{ LYFZ.DAL.DAL_ErpCustomer.UpdateAggregationCustomer(modelClientGroup.GP_CustomerGroupID); }
  897. if (IsUpdateClient && !string.IsNullOrEmpty(this.StrClientNumber))
  898. {
  899. DataTable dtc = orbll.GetView_Custom("tb_ErpCustomerGroupMembers", StrWhere: "GM_CustomerID = '" + this.StrClientNumber + "'", ShowColumnName: "GM_CustomerGroupID").Tables[0];
  900. for (int i = 0; i < dtc.Rows.Count; i++)
  901. {
  902. LYFZ.DAL.DAL_ErpCustomer.UpdateAggregationCustomer(dtc.Rows[i]["GM_CustomerGroupID"].ToString().Trim());
  903. }
  904. }
  905. if (IsSendSMS)
  906. {
  907. #region 流程短信
  908. LYFZ.BLL.OrderPayment_Member.OpenMemberSendSMS(ModelCustomer.Cus_CustomerNumber, ModelCard.Mc_CradNumber, StrStoreNumber: LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID());
  909. #endregion
  910. }
  911. this.IsSaveed = true;
  912. this.StrClientNumber = "";
  913. MessageBoxCustom.Show("保存成功");
  914. this.Close();
  915. }
  916. else
  917. { MessageBoxCustom.Show("保存失败"); }
  918. }
  919. }
  920. /// <summary>
  921. /// 取消
  922. /// </summary>
  923. /// <param name="sender"></param>
  924. /// <param name="e"></param>
  925. protected override void btnCancel_Click(object sender, EventArgs e)
  926. { this.Close(); }
  927. /// <summary>
  928. /// 会员卡号限制输入
  929. /// </summary>
  930. /// <param name="sender"></param>
  931. /// <param name="e"></param>
  932. void txtCradNO_KeyPress(object sender, KeyPressEventArgs e)
  933. {
  934. if (Convert.ToString(e.KeyChar) == " ")
  935. { e.Handled = true; }
  936. }
  937. /// <summary>
  938. /// 卡号输入变化事件
  939. /// </summary>
  940. /// <param name="sender"></param>
  941. /// <param name="e"></param>
  942. void txtCradNO_EventTextBoxEx_TextChanged(object sender, EventArgs e)
  943. {
  944. if (this.txtCradNO.Text.Trim() != "")
  945. {
  946. char[] charList = this.txtCradNO.Text.Trim().ToCharArray();
  947. string StrCardText = "";
  948. for (int i = 0; i < charList.Length; i++)
  949. {
  950. if (!string.IsNullOrEmpty(charList[i].ToString().Trim()))
  951. { StrCardText += charList[i].ToString().Trim(); }
  952. }
  953. this.txtCradNO.Text = StrCardText;
  954. }
  955. }
  956. /// <summary>
  957. /// 输入限制
  958. /// </summary>
  959. /// <param name="sender"></param>
  960. /// <param name="e"></param>
  961. void txtSecondQueryName_KeyPress(object sender, KeyPressEventArgs e)
  962. {
  963. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar) && !Char.IsLetterOrDigit(e.KeyChar))
  964. { e.Handled = true; }
  965. if (LYFZ.BLL.OtherCommonModel.IsQaJiaoChar(e.KeyChar))
  966. { e.Handled = true; }
  967. }
  968. /// <summary>
  969. /// 点击男
  970. /// </summary>
  971. /// <param name="sender"></param>
  972. /// <param name="e"></param>
  973. void chkMan_Click(object sender, EventArgs e)
  974. {
  975. this.chkWoman.Checked = false;
  976. this.chkMan.Checked = true;
  977. }
  978. /// <summary>
  979. /// 点击女
  980. /// </summary>
  981. /// <param name="sender"></param>
  982. /// <param name="e"></param>
  983. void chkWoman_Click(object sender, EventArgs e)
  984. {
  985. this.chkWoman.Checked = true;
  986. this.chkMan.Checked = false;
  987. }
  988. #region 界面管理
  989. /// <summary>
  990. /// 选择返现
  991. /// </summary>
  992. /// <param name="sender"></param>
  993. /// <param name="e"></param>
  994. void chkBackCash_CheckedChanged(object sender, EventArgs e)
  995. {
  996. //if (this.chkBackCash.Checked)
  997. //{
  998. // this.dtpBackCash.Enabled = true;
  999. // this.chkBackCash_Perpetual.Enabled = true;
  1000. //}
  1001. //else
  1002. //{
  1003. // this.dtpBackCash.DateValue = "";
  1004. // this.dtpBackCash.Enabled = false;
  1005. // this.chkBackCash_Perpetual.Checked = false;
  1006. // this.chkBackCash_Perpetual.Enabled = false;
  1007. //}
  1008. }
  1009. string StrBackCashValueTime = "";
  1010. /// <summary>
  1011. /// 选择返现——永久
  1012. /// </summary>
  1013. /// <param name="sender"></param>
  1014. /// <param name="e"></param>
  1015. void chkBackCash_Perpetual_CheckedChanged(object sender, EventArgs e)
  1016. {
  1017. if (this.chkBackCash_Perpetual.Checked)
  1018. {
  1019. this.StrBackCashValueTime = this.dtpBackCash.DateValue;
  1020. this.dtpBackCash.DateValue = "";
  1021. this.dtpBackCash.Enabled = false;
  1022. }
  1023. else
  1024. {
  1025. this.dtpBackCash.Enabled = true;
  1026. this.dtpBackCash.DateValue = this.StrBackCashValueTime;
  1027. }
  1028. }
  1029. /// <summary>
  1030. /// 新摄会选择
  1031. /// </summary>
  1032. /// <param name="sender"></param>
  1033. /// <param name="e"></param>
  1034. void chkNewTaken_CheckedChanged(object sender, EventArgs e)
  1035. {
  1036. //if (this.chkNewTaken.Checked)
  1037. //{
  1038. // this.dtpNewTaken.Enabled = true;
  1039. // this.chkNewTaken_Perpetual.Enabled = true;
  1040. //}
  1041. //else
  1042. //{
  1043. // this.dtpNewTaken.DateValue = "";
  1044. // this.dtpNewTaken.Enabled = false;
  1045. // this.chkNewTaken_Perpetual.Checked = false;
  1046. // this.chkNewTaken_Perpetual.Enabled = false;
  1047. //}
  1048. }
  1049. string StrNewTakenValueTime = "";
  1050. /// <summary>
  1051. /// 新摄会选择——永久
  1052. /// </summary>
  1053. /// <param name="sender"></param>
  1054. /// <param name="e"></param>
  1055. void chkNewTaken_Perpetual_CheckedChanged(object sender, EventArgs e)
  1056. {
  1057. if (this.chkNewTaken_Perpetual.Checked)
  1058. {
  1059. this.StrNewTakenValueTime = this.dtpNewTaken.DateValue;
  1060. this.dtpNewTaken.DateValue = "";
  1061. this.dtpNewTaken.Enabled = false;
  1062. }
  1063. else
  1064. {
  1065. this.dtpNewTaken.Enabled = true;
  1066. this.dtpNewTaken.DateValue = this.StrNewTakenValueTime;
  1067. }
  1068. }
  1069. /// <summary>
  1070. /// 选择积分
  1071. /// </summary>
  1072. /// <param name="sender"></param>
  1073. /// <param name="e"></param>
  1074. void chkPoints_CheckedChanged(object sender, EventArgs e)
  1075. {
  1076. //if (this.chkPoints.Checked)
  1077. //{
  1078. // this.dtpPoints.Enabled = true;
  1079. // this.chkPoints_Perpetual.Enabled = true;
  1080. //}
  1081. //else
  1082. //{
  1083. // this.dtpPoints.DateValue = "";
  1084. // this.dtpPoints.Enabled = false;
  1085. // this.chkPoints_Perpetual.Checked = false;
  1086. // this.chkPoints_Perpetual.Enabled = false;
  1087. //}
  1088. }
  1089. string StrPointsValueTime = "";
  1090. /// <summary>
  1091. /// 选择积分——永久
  1092. /// </summary>
  1093. /// <param name="sender"></param>
  1094. /// <param name="e"></param>
  1095. void chkPoints_Perpetual_CheckedChanged(object sender, EventArgs e)
  1096. {
  1097. if (this.chkPoints_Perpetual.Checked)
  1098. {
  1099. this.StrPointsValueTime = this.dtpPoints.DateValue;
  1100. this.dtpPoints.DateValue = "";
  1101. this.dtpPoints.Enabled = false;
  1102. }
  1103. else
  1104. {
  1105. this.dtpPoints.Enabled = true;
  1106. this.dtpPoints.DateValue = this.StrPointsValueTime;
  1107. }
  1108. }
  1109. /// <summary>
  1110. /// 选择服务
  1111. /// </summary>
  1112. /// <param name="sender"></param>
  1113. /// <param name="e"></param>
  1114. void chkService_CheckedChanged(object sender, EventArgs e)
  1115. {
  1116. //if (this.chkService.Checked)
  1117. //{
  1118. // this.dtpService.Enabled = true;
  1119. // this.chkService_Perpetual.Enabled = true;
  1120. //}
  1121. //else
  1122. //{
  1123. // this.dtpService.DateValue = "";
  1124. // this.dtpService.Enabled = false;
  1125. // this.chkService_Perpetual.Checked = false;
  1126. // this.chkService_Perpetual.Enabled = false;
  1127. //}
  1128. }
  1129. string StrServiceValueTime = "";
  1130. /// <summary>
  1131. /// 选择服务——永久
  1132. /// </summary>
  1133. /// <param name="sender"></param>
  1134. /// <param name="e"></param>
  1135. void chkService_Perpetual_CheckedChanged(object sender, EventArgs e)
  1136. {
  1137. if (this.chkService_Perpetual.Checked)
  1138. {
  1139. this.StrServiceValueTime = this.dtpService.DateValue;
  1140. this.dtpService.DateValue = "";
  1141. this.dtpService.Enabled = false;
  1142. }
  1143. else
  1144. {
  1145. this.dtpService.Enabled = true;
  1146. this.dtpService.DateValue = this.StrServiceValueTime;
  1147. }
  1148. }
  1149. /// <summary>
  1150. /// 选择储值
  1151. /// </summary>
  1152. /// <param name="sender"></param>
  1153. /// <param name="e"></param>
  1154. void chkStoredValue_CheckedChanged(object sender, EventArgs e)
  1155. {
  1156. //if (this.chkStoredValue.Checked)
  1157. //{
  1158. // this.dtpStoredValue.Enabled = true;
  1159. // this.chkStoredValue_Perpetual.Enabled = true;
  1160. //}
  1161. //else
  1162. //{
  1163. // this.dtpStoredValue.DateValue = "";
  1164. // this.dtpStoredValue.Enabled = false;
  1165. // this.chkStoredValue_Perpetual.Checked = false;
  1166. // this.chkStoredValue_Perpetual.Enabled = false;
  1167. //}
  1168. }
  1169. string StrStoredValueTime = "";
  1170. /// <summary>
  1171. /// 选择储值——永久
  1172. /// </summary>
  1173. /// <param name="sender"></param>
  1174. /// <param name="e"></param>
  1175. void chkStoredValue_Perpetual_CheckedChanged(object sender, EventArgs e)
  1176. {
  1177. if (this.chkStoredValue_Perpetual.Checked)
  1178. {
  1179. this.StrStoredValueTime = this.dtpStoredValue.DateValue;
  1180. this.dtpStoredValue.DateValue = "";
  1181. this.dtpStoredValue.Enabled = false;
  1182. }
  1183. else
  1184. {
  1185. this.dtpStoredValue.Enabled = true;
  1186. this.dtpStoredValue.DateValue = this.StrStoredValueTime;
  1187. }
  1188. }
  1189. #endregion
  1190. }
  1191. }