GoldCardManagementSmallForm.cs 51 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036
  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.Helper;
  11. namespace LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm
  12. {
  13. public partial class GoldManagementSmallForm : LYFZ.Software.UI.MembershipManage.SetSmallForm.GoldCardManagementSmallForm
  14. {
  15. LYFZ.BLL.BLL_ErpMemberCard mcbll = new LYFZ.BLL.BLL_ErpMemberCard();
  16. LYFZ.BLL.BLL_ErpMemberCardDiscount mcdbll = new BLL.BLL_ErpMemberCardDiscount();
  17. LYFZ.BLL.BLL_ErpMemberCardOperateLOG mcplog = new BLL.BLL_ErpMemberCardOperateLOG();
  18. LYFZ.BLL.BLL_ErpMemberCardAmountCashStatus mcarsbll = new BLL.BLL_ErpMemberCardAmountCashStatus();
  19. LYFZ.BLL.BLL_ErpMemberCardInterfaceManagement mcimbll = new BLL.BLL_ErpMemberCardInterfaceManagement();
  20. BLL.BLL_ErpMemberCardRechargeDeposit bllDeposit = new BLL.BLL_ErpMemberCardRechargeDeposit();
  21. public GoldManagementSmallForm()
  22. {
  23. this.btnSendAmount.Click += btnSendAmount_Click;
  24. this.btnOpenPointsViceCard.Click += btnOpenPointsViceCard_Click;
  25. this.btnUpdateDiscount.Click += btnUpdateDiscount_Click;
  26. this.btnDepositAmount.Click += btnDepositAmount_Click;
  27. this.btnReturnDepositAmount.Click += btnReturnDepositAmount_Click;
  28. }
  29. void btnReturnDepositAmount_Click(object sender, EventArgs e)
  30. {
  31. if (LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Account.ToLower() != LYFZ.AuthorizeUserName.AdministratorsName)
  32. {
  33. LYFZ.Model.Model_ErpMemberCardAmountCashStatus model = mcarsbll.GetModel("Mcacr_Number", this.StrNumber);
  34. if (model.ID > 0)
  35. {
  36. if (model.Mcacr_AmountStatus == 0)
  37. { MessageBoxCustom.Show("你的金额已被锁定,不能提现"); return; }
  38. }
  39. }
  40. if (tblmodel.Mc_TraderPassword.Trim() != "")
  41. {
  42. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm Efrm = new SuperSmallForm.EnterPasswordSuperSmallForm();
  43. Efrm.Text = "请输入密码";
  44. Efrm.ShowDialog();
  45. if (Efrm.Pwd != "")
  46. {
  47. if (tblmodel.Mc_TraderPassword.Trim() != LYFZ.Command.Command_MD5.md5(Efrm.Pwd))
  48. { MessageBoxCustom.Show("密码错误"); return; }
  49. }
  50. else { return; }
  51. }
  52. if (thisfrm != null)
  53. { this.thisfrm.Close(); }
  54. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.GoldCardCashSuperSmallForm frm = new SuperSmallForm.GoldCardCashSuperSmallForm();
  55. this.thisfrm = frm;
  56. frm.SaveType = "充值定金退款";
  57. frm.StrNumber = this.StrNumber;
  58. frm.CradNumber = this.txtCardNo.Text.Trim();
  59. frm.CradName = this.txtHolder.Text.Trim();
  60. frm.AdvisableCash = this.txtCashAccount.Text.Trim();
  61. frm.Height = this.Height;
  62. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  63. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  64. frm.Show(this);
  65. }
  66. void btnDepositAmount_Click(object sender, EventArgs e)
  67. {
  68. if (thisfrm != null)
  69. { this.thisfrm.Close(); }
  70. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.GoldCardRechargeSuperSmallForm frm = new SuperSmallForm.GoldCardRechargeSuperSmallForm();
  71. this.thisfrm = frm;
  72. frm.rechargeType = "会员充值定金";
  73. frm.StrNumber = this.StrNumber;
  74. frm.CardNumber = this.txtCardNo.Text.Trim();
  75. frm.CardName = this.txtHolder.Text.Trim();
  76. frm.CardType = this.txtCradType.Text.Trim();
  77. frm.Height = this.Height;
  78. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  79. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  80. frm.Show(this);
  81. }
  82. bool _cancellationCard = false;
  83. /// <summary>
  84. /// 是否为注销会员卡
  85. /// </summary>
  86. public bool CancellationCard
  87. {
  88. get { return _cancellationCard; }
  89. set { _cancellationCard = value; }
  90. }
  91. /// <summary>
  92. /// 会员卡编号
  93. /// </summary>
  94. public string StrNumber;
  95. /// <summary>
  96. /// 是否保存
  97. /// </summary>
  98. public bool IsSaveed = false;
  99. int IntWidth = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Width;
  100. Form thisfrm = null;
  101. Form otherfrm = null;
  102. LYFZ.Model.Model_ErpMemberCard tblmodel = null;
  103. /// <summary>
  104. /// 窗体加载事件
  105. /// </summary>
  106. /// <param name="sender"></param>
  107. /// <param name="e"></param>
  108. protected override void GoldManagementSmallForm_Load(object sender, EventArgs e)
  109. {
  110. #region 权限
  111. this.btnModifyData.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Update);
  112. this.btnLogout.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_Logout);
  113. this.btnPassword.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_PasswordSet);
  114. this.btnRetrievePassword.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_PasswordSet);
  115. this.btnChangingCard.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_ChangingCard);
  116. this.btnUpdateType.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_GradeUpdateType);
  117. this.btnRecharge.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_Recharge);
  118. this.btnCash.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_Cash);
  119. this.btnOpenBackCashCard.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_SendViceCard);
  120. this.btnSendPoint.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_SendPoint);
  121. this.btnRedeemPoint.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_PointsRedeem);
  122. this.btnTurnPoints.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_TurnPoints);
  123. this.btnBackCashTakeCash.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_CashBackCash);
  124. this.btnService.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_ServiceData);
  125. this.btnPhotographerConference.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_PhotographerOpenCard);
  126. this.btnUpdateDiscount.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_DiscountUpdate);
  127. this.btnSendAmount.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.IncreaseSum);//LYFZ.BLL.BLL_ErpUser.IsAdministrator();
  128. string MemberMainViewName = "BView_MemberMain_GoldMember";
  129. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.HidePhoneControls(this.txtTelephone);
  130. if (this.CancellationCard)
  131. {
  132. //this.btnLogout.Enabled = false;
  133. this.btnLogout.Text = " 启用此会员";
  134. this.btnPassword.Enabled = false;
  135. this.btnRetrievePassword.Enabled = false;
  136. this.btnChangingCard.Enabled = false;
  137. this.btnUpdateType.Enabled = false;
  138. this.btnRecharge.Enabled = false;
  139. this.btnCash.Enabled = false;
  140. this.btnOpenBackCashCard.Enabled = false;
  141. this.btnSendPoint.Enabled = false;
  142. this.btnRedeemPoint.Enabled = false;
  143. this.btnTurnPoints.Enabled = false;
  144. this.btnBackCashTakeCash.Enabled = false;
  145. this.btnService.Enabled = false;
  146. this.btnPhotographerConference.Enabled = false;
  147. }
  148. #endregion
  149. DataTable tbl = mcbll.GetView_Custom(MemberMainViewName, StrWhere: "Mc_Number = '" + this.StrNumber + "'").Tables[0];
  150. this.txtHolder.Text = tbl.Rows[0]["姓名"].ToString().Trim();
  151. this.txtCardNo.Text = tbl.Rows[0]["会员卡号"].ToString().Trim();
  152. this.txtTelephone.Text = tbl.Rows[0]["电话"].ToString().Trim();
  153. this.txtCradType.Text = tbl.Rows[0]["等级"].ToString().Trim();
  154. this.txtAvailablePoints.Text = tbl.Rows[0]["积分"].ToString().Trim();
  155. this.txtCashAccount.Text = tbl.Rows[0]["金额"].ToString().Trim();
  156. this.txtUseDiscount.Text = tbl.Rows[0]["折扣"].ToString().Trim();
  157. this.txtPackagesAmount.Text = tbl.Rows[0]["套系金额"].ToString().Trim();
  158. tbl = mcimbll.GetList("Mcim_Number = '" + this.StrNumber + "'").Tables[0];
  159. if (tbl.Rows.Count > 0)
  160. {
  161. tbl = new Json.JsontoDataTable().toObject(tbl.Rows[0]["Mcim_InterfaceName"].ToString());
  162. try
  163. { this.flpanel3.Visible = Convert.ToBoolean(tbl.Rows[0]["Points"]); }
  164. catch { this.flpanel3.Visible = false; }
  165. try
  166. { this.flpanel4.Visible = Convert.ToBoolean(tbl.Rows[0]["StoredValue"]); }
  167. catch { this.flpanel4.Visible = false; }
  168. try
  169. { this.flpanel5.Visible = Convert.ToBoolean(tbl.Rows[0]["BackCash"]); }
  170. catch { this.flpanel5.Visible = false; }
  171. try
  172. { this.flpanel6.Visible = Convert.ToBoolean(tbl.Rows[0]["Service"]); }
  173. catch { this.flpanel6.Visible = false; }
  174. try
  175. { this.flpanel7.Visible = Convert.ToBoolean(tbl.Rows[0]["NewTaken"]); }
  176. catch { this.flpanel7.Visible = false; }
  177. }
  178. this.Location = new Point(200, 110);
  179. tblmodel = mcbll.GetModel("Mc_Number", this.StrNumber);
  180. }
  181. private bool _refreshparentform;
  182. /// <summary>
  183. /// 子窗体关闭后刷新父窗体
  184. /// </summary>
  185. public bool RefreshParentForm
  186. {
  187. get { return this._refreshparentform; }
  188. set
  189. {
  190. this._refreshparentform = value;
  191. if (this._refreshparentform)
  192. {
  193. this.GoldManagementSmallForm_Load(this, null);
  194. this.IsSaveed = true;
  195. if (IsOpenOtherForm)
  196. {
  197. otherfrm.Show(this);
  198. IsOpenOtherForm = false;
  199. }
  200. }
  201. }
  202. }
  203. private bool _isopenotherform = false;
  204. /// <summary>
  205. /// 是否打开其他窗体
  206. /// </summary>
  207. public bool IsOpenOtherForm
  208. {
  209. get { return _isopenotherform; }
  210. set { _isopenotherform = value; }
  211. }
  212. /// <summary>
  213. /// 赠送金额
  214. /// </summary>
  215. /// <param name="sender"></param>
  216. /// <param name="e"></param>
  217. void btnSendAmount_Click(object sender, EventArgs e)
  218. {
  219. if (thisfrm != null)
  220. { this.thisfrm.Close(); }
  221. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.MemberSendAmountSuperSmallForm frm = new SuperSmallForm.MemberSendAmountSuperSmallForm();
  222. this.thisfrm = frm;
  223. frm.StrNumber = this.StrNumber;
  224. frm.Height = this.Height;
  225. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  226. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  227. frm.Show(this);
  228. }
  229. protected override void Btn_DisInfo_Click(object sender, EventArgs e)
  230. {
  231. //base.Btn_DisInfo_Click(sender, e);
  232. if (thisfrm != null)
  233. { this.thisfrm.Close(); }
  234. LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.AddGoldCardMemberSmallForm frm = new AddGoldCardMemberSmallForm();
  235. this.thisfrm = frm;
  236. frm.bDisInfo = true;
  237. frm.Text = "会员备注修改";
  238. frm.StrNumber = this.StrNumber;
  239. frm.Height = this.Height;
  240. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  241. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  242. frm.Show(this);
  243. }
  244. /// <summary>
  245. /// 充值
  246. /// </summary>
  247. /// <param name="sender"></param>
  248. /// <param name="e"></param>
  249. protected override void btnRecharge_Click(object sender, EventArgs e)
  250. {
  251. if (thisfrm != null)
  252. { this.thisfrm.Close(); }
  253. DataTable dtDeposit = bllDeposit.GetList(" Mcrd_CardNumber = '" + StrNumber + "' and Mcrd_BComplete = 0 ").Tables[0];
  254. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.GoldCardRechargeSuperSmallForm frm = new SuperSmallForm.GoldCardRechargeSuperSmallForm();
  255. this.thisfrm = frm;
  256. if (dtDeposit.Rows.Count > 0)
  257. {
  258. //if(MessageBoxCustom.Show("存在已缴纳定金额充值,是否将款补全?","提示", MessageBoxButtons.YesNo)== System.Windows.Forms.DialogResult.Yes)
  259. //{
  260. frm.rechargeType = "会员充值定金";
  261. //}
  262. }
  263. frm.StrNumber = this.StrNumber;
  264. frm.CardNumber = this.txtCardNo.Text.Trim();
  265. frm.CardName = this.txtHolder.Text.Trim();
  266. frm.CardType = this.txtCradType.Text.Trim();
  267. frm.Height = this.Height;
  268. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  269. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  270. frm.Show(this);
  271. }
  272. /// <summary>
  273. /// 储值提现
  274. /// </summary>
  275. /// <param name="sender"></param>
  276. /// <param name="e"></param>
  277. protected override void btnCash_Click(object sender, EventArgs e)
  278. {
  279. if (LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Account.ToLower() != LYFZ.AuthorizeUserName.AdministratorsName)
  280. {
  281. LYFZ.Model.Model_ErpMemberCardAmountCashStatus model = mcarsbll.GetModel("Mcacr_Number", this.StrNumber);
  282. if (model.ID > 0)
  283. {
  284. if (model.Mcacr_AmountStatus == 0)
  285. { MessageBoxCustom.Show("你的金额已被锁定,不能提现"); return; }
  286. }
  287. }
  288. if (tblmodel.Mc_TraderPassword.Trim() != "")
  289. {
  290. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm Efrm = new SuperSmallForm.EnterPasswordSuperSmallForm();
  291. Efrm.Text = "请输入密码";
  292. Efrm.ShowDialog();
  293. if (Efrm.Pwd != "")
  294. {
  295. if (tblmodel.Mc_TraderPassword.Trim() != LYFZ.Command.Command_MD5.md5(Efrm.Pwd))
  296. { MessageBoxCustom.Show("密码错误"); return; }
  297. }
  298. else { return; }
  299. }
  300. if (thisfrm != null)
  301. { this.thisfrm.Close(); }
  302. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.GoldCardCashSuperSmallForm frm = new SuperSmallForm.GoldCardCashSuperSmallForm();
  303. this.thisfrm = frm;
  304. frm.StrNumber = this.StrNumber;
  305. frm.CradNumber = this.txtCardNo.Text.Trim();
  306. frm.CradName = this.txtHolder.Text.Trim();
  307. frm.AdvisableCash = this.txtCashAccount.Text.Trim();
  308. frm.Height = this.Height;
  309. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  310. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  311. frm.Show(this);
  312. }
  313. /// <summary>
  314. /// 更换卡号
  315. /// </summary>
  316. /// <param name="sender"></param>
  317. /// <param name="e"></param>
  318. protected override void btnChangingCard_Click(object sender, EventArgs e)
  319. {
  320. if (tblmodel.Mc_TraderPassword.Trim() != "")
  321. {
  322. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm Efrm = new SuperSmallForm.EnterPasswordSuperSmallForm();
  323. Efrm.Text = "请输入密码";
  324. Efrm.ShowDialog();
  325. if (Efrm.Pwd != "")
  326. {
  327. if (tblmodel.Mc_TraderPassword.Trim() != LYFZ.Command.Command_MD5.md5(Efrm.Pwd))
  328. { MessageBoxCustom.Show("密码错误"); return; }
  329. }
  330. else { return; }
  331. }
  332. if (thisfrm != null)
  333. { this.thisfrm.Close(); }
  334. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.ReplaceCardNumberSuperSmallForm frm = new SuperSmallForm.ReplaceCardNumberSuperSmallForm();
  335. this.thisfrm = frm;
  336. frm.StrNumber = this.StrNumber;
  337. frm.CradNumber = this.txtCardNo.Text.Trim();
  338. frm.CradName = this.txtHolder.Text.Trim();
  339. frm.AvailablePoints = this.txtAvailablePoints.Text.Trim();
  340. frm.Height = this.Height;
  341. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  342. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  343. frm.Show(this);
  344. }
  345. /// <summary>
  346. /// 修改资料
  347. /// </summary>
  348. /// <param name="sender"></param>
  349. /// <param name="e"></param>
  350. protected override void btnModifyData_Click(object sender, EventArgs e)
  351. {
  352. #if !DEBUG
  353. if (tblmodel.Mc_TraderPassword.Trim() != "")
  354. {
  355. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm Efrm = new SuperSmallForm.EnterPasswordSuperSmallForm();
  356. Efrm.Text = "请输入密码";
  357. Efrm.ShowDialog();
  358. if (Efrm.Pwd != "")
  359. {
  360. if (tblmodel.Mc_TraderPassword.Trim() != LYFZ.Command.Command_MD5.md5(Efrm.Pwd))
  361. { MessageBoxCustom.Show("密码错误"); return; }
  362. }
  363. else
  364. { return; }
  365. }
  366. #endif
  367. if (thisfrm != null)
  368. { this.thisfrm.Close(); }
  369. LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.AddGoldCardMemberSmallForm frm = new AddGoldCardMemberSmallForm();
  370. this.thisfrm = frm;
  371. frm.Text = "会员资料修改";
  372. frm.StrNumber = this.StrNumber;
  373. frm.Height = this.Height;
  374. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  375. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  376. frm.Show(this);
  377. }
  378. /// <summary>
  379. /// 密码设置
  380. /// </summary>
  381. /// <param name="sender"></param>
  382. /// <param name="e"></param>
  383. protected override void btnPassword_Click(object sender, EventArgs e)
  384. {
  385. #region
  386. //LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm frm = new SuperSmallForm.EnterPasswordSuperSmallForm();
  387. //if (tblmodel.Mc_TraderPassword.Trim() != "")
  388. //{
  389. // #region 原来已经设置密码的,现在输入原密码,为确保卡是否本人
  390. // bool bl = true;
  391. // while (bl)
  392. // {
  393. // frm.Text = "请输入原密码";
  394. // frm.ShowDialog();
  395. // if (frm.Pwd != "" && frm.IsSaveed)
  396. // {
  397. // if (tblmodel.Mc_TraderPassword.Trim() != frm.Pwd)
  398. // { MessageBoxCustom.Show("原密码输入错误"); }
  399. // else { bl = false; }
  400. // }
  401. // else { return; }
  402. // }
  403. // #endregion
  404. //}
  405. //#region 输入两次新密码,为保存密码不是随意输入
  406. //string pwd1 = "";
  407. //string pwd2 = "";
  408. //bool bls = true;
  409. //while (bls)
  410. //{
  411. // for (int i = 0; i < 2; i++)
  412. // {
  413. // frm.Text = i == 0 ? "请输入新密码" : "请再次输入新密码";
  414. // frm.ShowDialog();
  415. // if (frm.Pwd != "" && frm.IsSaveed)
  416. // {
  417. // switch (i)
  418. // {
  419. // case 0: pwd1 = frm.Pwd; break;
  420. // case 1: pwd2 = frm.Pwd; break;
  421. // }
  422. // }
  423. // else { return; }
  424. // }
  425. // if (pwd1 != pwd2)
  426. // { MessageBoxCustom.Show("两次新密码输入不一致,请重新输入"); }
  427. // else { bls = false; }
  428. //}
  429. #endregion
  430. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordRetrieveSetSuperSmallForm frm = new SuperSmallForm.EnterPasswordRetrieveSetSuperSmallForm();
  431. frm.Text = "设置密码";
  432. frm.ShowDialog();
  433. if (frm.IsSaveed)
  434. {
  435. tblmodel.Mc_TraderPassword = LYFZ.Command.Command_MD5.md5(frm.StrPassword);
  436. tblmodel.Mc_UpdateDateTime = SDateTime.Now;
  437. tblmodel.Mc_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  438. if (!mcbll.Update(tblmodel))
  439. { MessageBoxCustom.Show("密码设置失败"); return; }
  440. LYFZ.BLL.OrderPayment_Member.MemberUpdatePaymentPassword(tblmodel.Mc_CustomerNumber, tblmodel.Mc_CradNumber, frm.StrPassword2);
  441. MessageBoxCustom.Show("密码设置成功");
  442. }
  443. }
  444. /// <summary>
  445. /// 找回密码
  446. /// </summary>
  447. /// <param name="sender"></param>
  448. /// <param name="e"></param>
  449. protected override void btnRetrievePassword_Click(object sender, EventArgs e)
  450. {
  451. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordRetrieveSetSuperSmallForm frm = new SuperSmallForm.EnterPasswordRetrieveSetSuperSmallForm();
  452. frm.Text = "找回密码";
  453. frm.ShowDialog();
  454. if (frm.IsSaveed)
  455. {
  456. tblmodel = mcbll.GetModel("Mc_Number", this.StrNumber);
  457. tblmodel.Mc_TraderPassword = LYFZ.Command.Command_MD5.md5(frm.StrPassword);
  458. tblmodel.Mc_UpdateDateTime = SDateTime.Now;
  459. tblmodel.Mc_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  460. if (!mcbll.Update(tblmodel))
  461. { MessageBoxCustom.Show("密码设置失败"); return; }
  462. LYFZ.BLL.OrderPayment_Member.MemberUpdatePaymentPassword(tblmodel.Mc_CustomerNumber, tblmodel.Mc_CradNumber, frm.StrPassword2);
  463. MessageBoxCustom.Show("密码设置成功");
  464. }
  465. }
  466. /// <summary>
  467. /// 发放积分副卡
  468. /// </summary>
  469. /// <param name="sender"></param>
  470. /// <param name="e"></param>
  471. void btnOpenPointsViceCard_Click(object sender, EventArgs e)
  472. {
  473. if (thisfrm != null)
  474. { this.thisfrm.Close(); }
  475. LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.GoldCardViceManagementSmallForm frm = new GoldCardViceManagementSmallForm();
  476. this.thisfrm = frm;
  477. frm.Text = "赠送积分";
  478. frm.StrNumber = this.StrNumber;
  479. frm.StrCradNumber = this.txtCardNo.Text.Trim();
  480. frm.StrCradName = this.txtHolder.Text.Trim();
  481. frm.Height = this.Height;
  482. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  483. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  484. frm.Show(this);
  485. }
  486. /// <summary>
  487. /// 赠送积分
  488. /// </summary>
  489. /// <param name="sender"></param>
  490. /// <param name="e"></param>
  491. protected override void btnSendPoint_Click(object sender, EventArgs e)
  492. {
  493. if (thisfrm != null)
  494. { this.thisfrm.Close(); }
  495. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.RedeemPointsSuperSmallForm frm = new SuperSmallForm.RedeemPointsSuperSmallForm();
  496. this.thisfrm = frm;
  497. frm.Text = "赠送积分";
  498. frm.StrNumber = this.StrNumber;
  499. frm.CradNumber = this.txtCardNo.Text.Trim();
  500. frm.CradName = this.txtHolder.Text.Trim();
  501. frm.AdvisablePoints = this.txtAvailablePoints.Text.Trim();
  502. frm.Height = this.Height;
  503. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  504. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  505. frm.Show(this);
  506. }
  507. /// <summary>
  508. /// 转介绍积分
  509. /// </summary>
  510. /// <param name="sender"></param>
  511. /// <param name="e"></param>
  512. protected override void btnTurnPoints_Click(object sender, EventArgs e)
  513. {
  514. if (thisfrm != null)
  515. { this.thisfrm.Close(); }
  516. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.ReferralPointsSuperSmallForm frm = new SuperSmallForm.ReferralPointsSuperSmallForm();
  517. this.thisfrm = frm;
  518. frm.StrNumber = this.StrNumber;
  519. frm.CradNumber = this.txtCardNo.Text.Trim();
  520. frm.CradName = this.txtHolder.Text.Trim();
  521. frm.CradPoints = this.txtAvailablePoints.Text.Trim();
  522. frm.Height = this.Height;
  523. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  524. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  525. frm.Show(this);
  526. }
  527. /// <summary>
  528. /// 兑换积分
  529. /// </summary>
  530. /// <param name="sender"></param>
  531. /// <param name="e"></param>
  532. protected override void btnRedeemPoint_Click(object sender, EventArgs e)
  533. {
  534. if (!LYFZ.BLL.OrderPayment_Member.VerifiedValidity(this.StrNumber, LYFZ.EnumPublic.MemberFunctionAttribute.积分))
  535. { MessageBoxCustom.Show("对不起!您的会员卡积分有效期已过期,无法使用!"); return; }
  536. if (tblmodel.Mc_TraderPassword.Trim() != "")
  537. {
  538. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm Efrm = new SuperSmallForm.EnterPasswordSuperSmallForm();
  539. Efrm.Text = "请输入密码";
  540. Efrm.ShowDialog();
  541. if (Efrm.Pwd != "")
  542. {
  543. if (tblmodel.Mc_TraderPassword.Trim() != LYFZ.Command.Command_MD5.md5(Efrm.Pwd))
  544. { MessageBoxCustom.Show("密码错误"); return; }
  545. }
  546. else { return; }
  547. }
  548. if (thisfrm != null)
  549. { this.thisfrm.Close(); }
  550. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.RedeemPointsSuperSmallForm frm = new SuperSmallForm.RedeemPointsSuperSmallForm();
  551. this.thisfrm = frm;
  552. frm.Text = "兑换积分";
  553. frm.StrNumber = this.StrNumber;
  554. frm.CradNumber = this.txtCardNo.Text.Trim();
  555. frm.CradName = this.txtHolder.Text.Trim();
  556. frm.AdvisablePoints = this.txtAvailablePoints.Text.Trim();
  557. frm.Height = this.Height;
  558. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  559. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  560. frm.Show(this);
  561. }
  562. /// <summary>
  563. /// 注销此卡
  564. /// </summary>
  565. /// <param name="sender"></param>
  566. /// <param name="e"></param>
  567. protected override void btnLogout_Click(object sender, EventArgs e)
  568. {
  569. DateTime StrTime = SDateTime.Now;
  570. string StrUserNameID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  571. List<CommandInfo> clist = new List<CommandInfo>();
  572. if (this.btnLogout.Text.Trim() == "注销此卡")
  573. {
  574. if (tblmodel.Mc_TraderPassword.Trim() != "")
  575. {
  576. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm Efrm = new SuperSmallForm.EnterPasswordSuperSmallForm();
  577. Efrm.Text = "请输入密码";
  578. Efrm.ShowDialog();
  579. if (Efrm.Pwd != "")
  580. {
  581. if (tblmodel.Mc_TraderPassword.Trim() != LYFZ.Command.Command_MD5.md5(Efrm.Pwd))
  582. { MessageBoxCustom.Show("密码错误"); return; }
  583. }
  584. else { return; }
  585. }
  586. DataTable tbl = mcbll.GetView_Custom("tb_ErpMemberCard", StrWhere: "Mc_Number = '" + this.StrNumber + "'", ShowColumnName: "Mc_Money").Tables[0];
  587. if (tbl.Rows.Count <= 0)
  588. { MessageBoxCustom.Show("获取会员卡数据出错!\r\n或此会员卡不存在!"); return; }
  589. if (tbl.Rows[0]["Mc_Money"].ToString().Trim().Length > 0)
  590. {
  591. if (Convert.ToDecimal(tbl.Rows[0]["Mc_Money"]) > 0)
  592. { MessageBoxCustom.Show("此会员卡有可用金额,不能注销!"); return; }
  593. }
  594. if (MessageBoxCustom.Show("你要注销此卡,此卡一但注销则不能恢复,请慎重 \r\n 你确定要注销此卡", "温馨提示", MessageBoxButtons.YesNo) != DialogResult.Yes)
  595. { return; }
  596. //if (MessageBoxCustom.Show("第二次提示,此卡一但注销则不能恢复 \r\n 你确定要注销此卡", "第二次温馨提示", MessageBoxButtons.YesNo) != DialogResult.Yes)
  597. //{ return; }
  598. tblmodel.Mc_Status = "0";
  599. tblmodel.Mc_UpdateDateTime = StrTime;
  600. tblmodel.Mc_UpdateName = StrUserNameID;
  601. clist.Add(mcbll.GetUpdateCommandInfo(tblmodel));
  602. LYFZ.Model.Model_ErpMemberCardOperateLOG modelog = new Model.Model_ErpMemberCardOperateLOG();
  603. modelog.mcol_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  604. modelog.mcol_Number = this.StrNumber;
  605. modelog.mcol_Type = "0";
  606. modelog.mcol_Remark = "";
  607. modelog.mcol_CreateDatetime = StrTime;
  608. modelog.mcol_CreateName = StrUserNameID;
  609. clist.Add(mcplog.GetAddCommandInfo(modelog));
  610. if (clist.Count > 0)
  611. {
  612. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  613. {
  614. LYFZ.BLL.OrderPayment_Member.MemberLogout(tblmodel.Mc_CustomerNumber, tblmodel.Mc_CradNumber);
  615. MessageBoxCustom.Show("注销成功");
  616. IsSaveed = true;
  617. this.Close();
  618. }
  619. else { MessageBoxCustom.Show("注销失败"); }
  620. }
  621. }
  622. else if (this.btnLogout.Text.Trim() == "启用此会员")
  623. {
  624. DataTable dtMemberCard = mcbll.GetView_Custom("tb_ErpMemberCard", StrWhere: "Mc_CustomerNumber = '" + tblmodel.Mc_CustomerNumber.Trim() + "' And ID != '" + tblmodel.ID + "'", ShowColumnName: "ID").Tables[0];
  625. if (dtMemberCard.Rows.Count > 0)
  626. { MessageBoxCustom.Show("此客户已有新的会员卡,不能启用!"); return; }
  627. DataTable dtCradNumber = mcbll.GetView_Custom("tb_ErpMemberCard", StrWhere: "Mc_CradNumber = '" + tblmodel.Mc_CustomerNumber.Trim() + "' And ID != '" + tblmodel.ID + "'", ShowColumnName: "ID").Tables[0];
  628. if (dtCradNumber.Rows.Count > 0)
  629. { MessageBoxCustom.Show("此会员卡号已被占用,不能启用!"); return; }
  630. tblmodel.Mc_Status = "1";
  631. tblmodel.Mc_UpdateDateTime = StrTime;
  632. tblmodel.Mc_UpdateName = StrUserNameID;
  633. clist.Add(mcbll.GetUpdateCommandInfo(tblmodel));
  634. LYFZ.Model.Model_ErpMemberCardOperateLOG modelog = new Model.Model_ErpMemberCardOperateLOG();
  635. modelog.mcol_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  636. modelog.mcol_Number = this.StrNumber;
  637. modelog.mcol_Type = "5";
  638. modelog.mcol_Remark = "";
  639. modelog.mcol_CreateDatetime = StrTime;
  640. modelog.mcol_CreateName = StrUserNameID;
  641. clist.Add(mcplog.GetAddCommandInfo(modelog));
  642. if (clist.Count > 0)
  643. {
  644. if (MessageBoxCustom.Show("您确定要启用吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No)
  645. { return; }
  646. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  647. {
  648. LYFZ.BLL.OrderPayment_Member.MemberLogout(tblmodel.Mc_CustomerNumber, tblmodel.Mc_CradNumber);
  649. MessageBoxCustom.Show("启用成功");
  650. IsSaveed = true;
  651. this.Close();
  652. }
  653. else
  654. { MessageBoxCustom.Show("启用失败"); }
  655. }
  656. }
  657. }
  658. /// <summary>
  659. /// 积分记录
  660. /// </summary>
  661. /// <param name="sender"></param>
  662. /// <param name="e"></param>
  663. protected override void btnRedeemLog_Click(object sender, EventArgs e)
  664. {
  665. if (thisfrm != null)
  666. { this.thisfrm.Close(); }
  667. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.PointsRecordSuperSmallForm frm = new SuperSmallForm.PointsRecordSuperSmallForm();
  668. this.thisfrm = frm;
  669. frm.StrNumber = this.StrNumber;
  670. frm.Height = this.Height;
  671. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  672. frm.Location = new Point(this.Location.X, this.Location.Y);
  673. frm.Show();
  674. }
  675. /// <summary>
  676. /// 资金记录
  677. /// </summary>
  678. /// <param name="sender"></param>
  679. /// <param name="e"></param>
  680. protected override void btnUseLog_Click(object sender, EventArgs e)
  681. {
  682. if (thisfrm != null)
  683. { this.thisfrm.Close(); }
  684. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.MemberCardUseRecordsSuperSmallForm frm = new SuperSmallForm.MemberCardUseRecordsSuperSmallForm();
  685. this.thisfrm = frm;
  686. frm.StrNumber = this.StrNumber;
  687. frm.Height = this.Height;
  688. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  689. frm.Location = new Point(this.Location.X, this.Location.Y);
  690. frm.Show();
  691. }
  692. /// <summary>
  693. /// 返现信息
  694. /// </summary>
  695. /// <param name="sender"></param>
  696. /// <param name="e"></param>
  697. protected override void btnCashbackInfo_Click(object sender, EventArgs e)
  698. {
  699. if (thisfrm != null)
  700. { this.thisfrm.Close(); }
  701. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.CashbackInfoSuperSmallForm frm = new SuperSmallForm.CashbackInfoSuperSmallForm();
  702. this.thisfrm = frm;
  703. frm.StrNumber = this.StrNumber;
  704. frm.Height = this.Height;
  705. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  706. frm.Location = new Point(this.Location.X, this.Location.Y);
  707. frm.Show(this);
  708. }
  709. /// <summary>
  710. /// 发放返现副卡
  711. /// </summary>
  712. /// <param name="sender"></param>
  713. /// <param name="e"></param>
  714. protected override void btnOpenBackCashCard_Click(object sender, EventArgs e)
  715. {
  716. if (thisfrm != null)
  717. { this.thisfrm.Close(); }
  718. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.OpenBackCashViceCardSuperSmallForm frm = new SuperSmallForm.OpenBackCashViceCardSuperSmallForm();
  719. this.thisfrm = frm;
  720. frm.StrNumber = this.StrNumber;
  721. frm.CardNumber = this.txtCardNo.Text.Trim();
  722. frm.CardName = this.txtHolder.Text.Trim();
  723. frm.Text = "发放现金副卡";
  724. //frm.Height = this.Height;
  725. frm.FromHeight = this.Height;
  726. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  727. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  728. frm.Show();
  729. }
  730. /// <summary>
  731. /// 服务资料
  732. /// </summary>
  733. /// <param name="sender"></param>
  734. /// <param name="e"></param>
  735. protected override void btnService_Click(object sender, EventArgs e)
  736. {
  737. if (thisfrm != null)
  738. { this.thisfrm.Close(); }
  739. LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.ServiceCardManagementSmallForm frm = new SetSmallForm.ServiceCardManagementSmallForm();
  740. this.thisfrm = frm;
  741. frm.StrNumber = this.StrNumber;
  742. frm.Height = this.Height;
  743. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  744. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  745. frm.Show(this);
  746. }
  747. /// <summary>
  748. /// 服务收款记录
  749. /// </summary>
  750. /// <param name="sender"></param>
  751. /// <param name="e"></param>
  752. protected override void btnServicePaymentRecord_Click(object sender, EventArgs e)
  753. {
  754. if (thisfrm != null)
  755. { this.thisfrm.Close(); }
  756. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.MemberServicePaymentRecordSuperSmallForm frm = new SuperSmallForm.MemberServicePaymentRecordSuperSmallForm();
  757. this.thisfrm = frm;
  758. frm.StrNumber = this.StrNumber;
  759. frm.Height = this.Height;
  760. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  761. frm.Location = new Point(this.Location.X, this.Location.Y);
  762. frm.Show();
  763. }
  764. /// <summary>
  765. /// 服务使用记录
  766. /// </summary>
  767. /// <param name="sender"></param>
  768. /// <param name="e"></param>
  769. protected override void btnServiceUseRecord_Click(object sender, EventArgs e)
  770. {
  771. if (thisfrm != null)
  772. { this.thisfrm.Close(); }
  773. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.ServiceUseRecordSuperSmallForm frm = new SuperSmallForm.ServiceUseRecordSuperSmallForm();
  774. this.thisfrm = frm;
  775. frm.StrNumber = this.StrNumber;
  776. frm.Height = this.Height;
  777. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  778. frm.Location = new Point(this.Location.X, this.Location.Y);
  779. frm.Show();
  780. }
  781. /// <summary>
  782. /// 储值记录
  783. /// </summary>
  784. /// <param name="sender"></param>
  785. /// <param name="e"></param>
  786. protected override void btnRechargeLog_Click(object sender, EventArgs e)
  787. {
  788. if (thisfrm != null)
  789. { this.thisfrm.Close(); }
  790. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.MemberRechargeRecordSuperSmallForm frm = new SuperSmallForm.MemberRechargeRecordSuperSmallForm();
  791. DataTable tempDtDeposit = bllDeposit.GetList(" Mcrd_CardNumber = '" + StrNumber + "' and Mcrd_BComplete = 0 ").Tables[0];
  792. this.thisfrm = frm;
  793. frm.txtCardNo = this.txtCardNo.Text;
  794. frm.txtHolder = this.txtHolder.Text;
  795. frm.StrNumber = this.StrNumber;
  796. if(tempDtDeposit.Rows.Count>0)
  797. {
  798. Model.Model_ErpMemberCardRechargeDeposit rechargeModel = bllDeposit.GetModel(tempDtDeposit.Rows[0]);
  799. frm.txtCashAccount = rechargeModel.Mcrd_ArrearsAmount.ToString("0.00");
  800. }
  801. frm.Height = this.Height;
  802. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  803. frm.Location = new Point(this.Location.X, this.Location.Y);
  804. frm.Show();
  805. }
  806. /// <summary>
  807. /// 返现提现
  808. /// </summary>
  809. /// <param name="sender"></param>
  810. /// <param name="e"></param>
  811. protected override void btnBackCashTakeCash_Click(object sender, EventArgs e)
  812. {
  813. if (thisfrm != null)
  814. { this.thisfrm.Close(); }
  815. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.BackCashCardCashSuperSmallForm frm = new SuperSmallForm.BackCashCardCashSuperSmallForm();
  816. this.thisfrm = frm;
  817. frm.StrNumber = this.StrNumber;
  818. frm.CradNumber = this.txtCardNo.Text.Trim();
  819. frm.CradName = this.txtHolder.Text.Trim();
  820. frm.Height = this.Height;
  821. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  822. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  823. frm.Show();
  824. }
  825. /// <summary>
  826. /// 修改卡类型
  827. /// </summary>
  828. /// <param name="sender"></param>
  829. /// <param name="e"></param>
  830. protected override void btnUpdateType_Click(object sender, EventArgs e)
  831. {
  832. if (thisfrm != null)
  833. { this.thisfrm.Close(); }
  834. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.MemberCardUpdateTypeSuperSmallForm frm = new SuperSmallForm.MemberCardUpdateTypeSuperSmallForm();
  835. this.thisfrm = frm;
  836. frm.StrNumber = this.StrNumber;
  837. frm.CurrentType = this.txtCradType.Text.Trim();
  838. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  839. frm.Location = new Point(this.Location.X + (frm.Width / 2), this.Location.Y + (frm.Height / 2));
  840. frm.Show(this);
  841. }
  842. /// <summary>
  843. /// 办理新摄会
  844. /// </summary>
  845. /// <param name="sender"></param>
  846. /// <param name="e"></param>
  847. protected override void btnPhotographerConference_Click(object sender, EventArgs e)
  848. {
  849. if (thisfrm != null)
  850. { this.thisfrm.Close(); }
  851. this.IsOpenOtherForm = true;
  852. //实例我的新摄会,用于关闭办理新摄会后跳出的窗体
  853. LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.MyPhotographerConferenceSmallForm ofrm = new MyPhotographerConferenceSmallForm();
  854. this.otherfrm = ofrm;
  855. ofrm.StrNumber = this.StrNumber;
  856. ofrm.Height = this.Height;
  857. ofrm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  858. ofrm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  859. //跳出新社会办理
  860. LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.AddPhotographerConferenceSmallForm frm = new SetSmallForm.AddPhotographerConferenceSmallForm();
  861. this.thisfrm = frm;
  862. frm.StrNumber = this.StrNumber;
  863. frm.Height = this.Height;
  864. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  865. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  866. frm.Show(this);
  867. }
  868. /// <summary>
  869. /// 我的新摄会
  870. /// </summary>
  871. /// <param name="sender"></param>
  872. /// <param name="e"></param>
  873. protected override void btnMyPhotographerConference_Click(object sender, EventArgs e)
  874. {
  875. if (thisfrm != null)
  876. { this.thisfrm.Close(); }
  877. LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.MyPhotographerConferenceSmallForm frm = new SetSmallForm.MyPhotographerConferenceSmallForm();
  878. this.thisfrm = frm;
  879. frm.StrNumber = this.StrNumber;
  880. frm.Height = this.Height;
  881. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  882. frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
  883. frm.Show();
  884. }
  885. /// <summary>
  886. /// 新摄会记录
  887. /// </summary>
  888. /// <param name="sender"></param>
  889. /// <param name="e"></param>
  890. protected override void btnPhotographerConferenceRecord_Click(object sender, EventArgs e)
  891. {
  892. if (thisfrm != null)
  893. { this.thisfrm.Close(); }
  894. LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.PhotographerConferenceRecordedSuperSmallForm frm = new SuperSmallForm.PhotographerConferenceRecordedSuperSmallForm();
  895. this.thisfrm = frm;
  896. frm.StrNumber = this.StrNumber;
  897. frm.Height = this.Height;
  898. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  899. frm.Location = new Point(this.Location.X, this.Location.Y);
  900. frm.Show();
  901. }
  902. /// <summary>
  903. /// 修改折扣
  904. /// </summary>
  905. /// <param name="sender"></param>
  906. /// <param name="e"></param>
  907. void btnUpdateDiscount_Click(object sender, EventArgs e)
  908. {
  909. LYFZ.Software.MainBusiness.CameraControlBook.SuperSmallForm.GetTextSuperSmallForm frm = new CameraControlBook.SuperSmallForm.GetTextSuperSmallForm();
  910. frm.Text = "修改折扣";
  911. frm.IsValidationValueSize = false;
  912. frm.strKeyPressType = "Decimal";
  913. frm.ShowDialog();
  914. if (frm.IsOK)
  915. {
  916. decimal decDiscount = Convert.ToDecimal(LYFZ.Command.Command_Validate.GetIsNotRoundedString(frm.StrValue));
  917. if (decDiscount <= 0)
  918. { MessageBoxCustom.Show("折扣不能小于或等于零"); }
  919. if (decDiscount > 10)
  920. { MessageBoxCustom.Show("折扣不能大于10"); }
  921. LYFZ.Model.Model_ErpMemberCardDiscount model = mcdbll.GetModel("Mcdt_Number", this.StrNumber);
  922. if (model.ID <= 0)
  923. {
  924. model = new Model.Model_ErpMemberCardDiscount();
  925. model.Mcdt_Number = this.StrNumber;
  926. }
  927. else
  928. { }
  929. model.Mcdt_Discount = decDiscount;
  930. model.Mcdt_UpdateDateTime = SDateTime.Now;
  931. model.Mcdt_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  932. bool IsAddUpdate = false;
  933. if (model.ID > 0)
  934. { IsAddUpdate = mcdbll.Update(model); }
  935. else
  936. { IsAddUpdate = mcdbll.Add(model); }
  937. if (IsAddUpdate)
  938. {
  939. this.IsSaveed = true;
  940. MessageBoxCustom.Show("折扣修改成功");
  941. this.txtUseDiscount.Text = decDiscount.ToString();
  942. }
  943. else
  944. { MessageBoxCustom.Show("折扣修改失败"); }
  945. }
  946. }
  947. private void InitializeComponent()
  948. {
  949. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GoldManagementSmallForm));
  950. this.plFormMainContent.SuspendLayout();
  951. this.SuspendLayout();
  952. //
  953. // txtCradType
  954. //
  955. this.txtCradType.Lines = new string[0];
  956. //
  957. // txtCashAccount
  958. //
  959. this.txtCashAccount.Lines = new string[0];
  960. //
  961. // txtAvailablePoints
  962. //
  963. this.txtAvailablePoints.Lines = new string[0];
  964. //
  965. // txtHolder
  966. //
  967. this.txtHolder.Lines = new string[0];
  968. //
  969. // txtCardNo
  970. //
  971. this.txtCardNo.Lines = new string[0];
  972. //
  973. // txtPackagesAmount
  974. //
  975. this.txtPackagesAmount.Lines = new string[0];
  976. //
  977. // txtUseDiscount
  978. //
  979. this.txtUseDiscount.Lines = new string[0];
  980. //
  981. // plExMainContainer
  982. //
  983. this.plExMainContainer.Size = new System.Drawing.Size(550, 688);
  984. //
  985. // plFormMainContent
  986. //
  987. this.plFormMainContent.Size = new System.Drawing.Size(550, 688);
  988. //
  989. // btnAppFormExit
  990. //
  991. this.btnAppFormExit.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAppFormExit.BackImg")));
  992. //
  993. // GoldManagementSmallForm
  994. //
  995. this.BottomBgImage = ((System.Drawing.Bitmap)(resources.GetObject("$this.BottomBgImage")));
  996. this.ClientSize = new System.Drawing.Size(550, 753);
  997. this.CustomBorderStyles.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(63)))), ((int)(((byte)(109)))), ((int)(((byte)(139)))));
  998. this.Name = "GoldManagementSmallForm";
  999. this.TitleBgImage = ((System.Drawing.Bitmap)(resources.GetObject("$this.TitleBgImage")));
  1000. this.Controls.SetChildIndex(this.btnAppFormMaximize, 0);
  1001. this.Controls.SetChildIndex(this.btnAppFormExit, 0);
  1002. this.Controls.SetChildIndex(this.btnAppFormMinimize, 0);
  1003. this.Controls.SetChildIndex(this.btnAppFormMenu, 0);
  1004. this.Controls.SetChildIndex(this.btnAppFormSkin, 0);
  1005. this.Controls.SetChildIndex(this.plFormMainContent, 0);
  1006. this.plFormMainContent.ResumeLayout(false);
  1007. this.ResumeLayout(false);
  1008. }
  1009. }
  1010. }