GoldCardCashSuperSmallForm.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  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. using LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm;
  12. namespace LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm
  13. {
  14. public partial class GoldCardCashSuperSmallForm : LYFZ.Software.UI.MembershipManage.SuperSmallForm.GoldCardCashSuperSmallForm
  15. {
  16. LYFZ.BLL.BLL_ErpMemberCard mcbll = new LYFZ.BLL.BLL_ErpMemberCard();
  17. LYFZ.BLL.BLL_ErpMemberCardTakeCash mctcbll = new BLL.BLL_ErpMemberCardTakeCash();
  18. LYFZ.BLL.BLL_ErpMemberCardAmountChangeLOG mcplogbll = new BLL.BLL_ErpMemberCardAmountChangeLOG();
  19. LYFZ.BLL.BLL_ErpMemberCardRechargeDepositRecord bllDepositRecord = new BLL.BLL_ErpMemberCardRechargeDepositRecord();
  20. BLL.BLL_ErpMemberCardRechargeDeposit bllDeposit = new BLL.BLL_ErpMemberCardRechargeDeposit();
  21. public GoldCardCashSuperSmallForm()
  22. {
  23. }
  24. public string SaveType = "会员卡提现";
  25. /// <summary>
  26. /// 会员卡编号
  27. /// </summary>
  28. public string StrNumber;
  29. /// <summary>
  30. /// 会员卡号
  31. /// </summary>
  32. public string CradNumber;
  33. /// <summary>
  34. /// 持卡人
  35. /// </summary>
  36. public string CradName;
  37. /// <summary>
  38. /// 可取现金
  39. /// </summary>
  40. public string AdvisableCash;
  41. /// <summary>
  42. /// 是否保存
  43. /// </summary>
  44. public bool IsSaveed = false;
  45. /// <summary>
  46. /// 窗体加载事件
  47. /// </summary>
  48. /// <param name="sender"></param>
  49. /// <param name="e"></param>
  50. protected override void GoldCardCashSuperSmallForm_Load(object sender, EventArgs e)
  51. {
  52. txtHolders.Text = CradName;
  53. txtCradNumber.Text = CradNumber;
  54. txtDesirableCash.Text = AdvisableCash;
  55. //txtCashAmount.Text = AdvisableCash;
  56. if (LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Account.ToLower() == LYFZ.AuthorizeUserName.AdministratorsName)
  57. {
  58. if (Convert.ToDecimal(this.txtDesirableCash.Text) > 0)
  59. { this.txtTouchAccount.ReadOnly = false; }
  60. else { this.txtTouchAccount.ReadOnly = true; }
  61. }
  62. else { this.txtTouchAccount.ReadOnly = true; }
  63. if(SaveType.Equals("会员卡提现"))
  64. {
  65. this.Text = "提现";
  66. DataTable dtDeposit = bllDeposit.GetList(" Mcrd_CardNumber = '" + StrNumber + "' and Mcrd_BComplete = 0 ").Tables[0];
  67. if (dtDeposit.Rows.Count>0)
  68. {
  69. Model.Model_ErpMemberCardRechargeDeposit rechargeModel = bllDeposit.GetModel(dtDeposit.Rows[0]);
  70. decimal havePayValue = bllDepositRecord.GetHavePayRecordAmount(rechargeModel.Mcrd_CardNumber, rechargeModel.Mcrd_RechargeNumber);
  71. labCanNotCash.Text = "不可提现:" + " " + havePayValue + "(充值定金)";
  72. txtDesirableCash.Text = (Convert.ToDecimal(AdvisableCash) - havePayValue).ToString("0.00");
  73. labCanNotCash.Visible = true;
  74. }
  75. }
  76. else if (SaveType.Equals("充值定金退款"))
  77. {
  78. this.Text = "充值定金退款";
  79. labelEx7.Visible = false;
  80. txtTouchAccount.Visible = false;
  81. tb_DisInfo.Visible = true;
  82. DataTable dtDeposit = bllDeposit.GetList(" Mcrd_CardNumber = '" + StrNumber + "' and Mcrd_BComplete = 0 ").Tables[0];
  83. if (dtDeposit.Rows.Count > 0)
  84. {
  85. Model.Model_ErpMemberCardRechargeDeposit rechargeModel = bllDeposit.GetModel(dtDeposit.Rows[0]);
  86. decimal PaytoCardValue = bllDepositRecord.GetHavePayRecordAmount(rechargeModel.Mcrd_CardNumber, rechargeModel.Mcrd_RechargeNumber);
  87. decimal DepositValue = bllDepositRecord.GetDepositRecordAmount(rechargeModel.Mcrd_CardNumber, rechargeModel.Mcrd_RechargeNumber);
  88. txtDesirableCash.Text = (PaytoCardValue + DepositValue).ToString("0.00");
  89. txtCashAmount.Text = (PaytoCardValue + DepositValue).ToString("0.00");
  90. txtCashAmount.ReadOnly = true;
  91. }
  92. else
  93. {
  94. MessageBoxCustom.Show("未缴纳定金,无需退款");
  95. txtDesirableCash.Text = "0";
  96. txtCashAmount.Text = "0";
  97. txtCashAmount.ReadOnly = true;
  98. }
  99. labelEx3.Text = "退款现金:";
  100. labelEx6.Text = "退款金额";
  101. labelEx4.Text = "退款金额:";
  102. }
  103. }
  104. /// <summary>
  105. /// 关闭窗体后发生事件
  106. /// </summary>
  107. /// <param name="sender"></param>
  108. /// <param name="e"></param>
  109. protected override void GoldCardCashSuperSmallForm_FormClosing(object sender, FormClosingEventArgs e)
  110. {
  111. GoldManagementSmallForm frm1 = (GoldManagementSmallForm)this.Owner;
  112. if (frm1 != null)
  113. {
  114. frm1.RefreshParentForm = IsSaveed;
  115. }
  116. }
  117. /// <summary>
  118. /// 保存
  119. /// </summary>
  120. /// <param name="sender"></param>
  121. /// <param name="e"></param>
  122. protected override void btnSave_Click(object sender, EventArgs e)
  123. {
  124. List<CommandInfo> clist = new List<CommandInfo>();
  125. LYFZ.Model.Model_ErpMemberCard MCrad = mcbll.GetModel("Mc_Number", this.StrNumber);
  126. DateTime StrTime = SDateTime.Now;
  127. string StrUserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  128. if (SaveType.Equals("会员卡提现"))
  129. {
  130. if (txtCashAmount.Text.Trim() != "")
  131. {
  132. if (LYFZ.Command.Command_Validate.IsNumeric(txtCashAmount.Text.Trim()) == false)
  133. { MessageBoxCustom.Show("取现金额输入错误,取现金额只能输入整数或小数"); txtCashAmount.Text = ""; return; }
  134. if (Convert.ToDecimal(this.txtCashAmount.Text.Trim()) > Convert.ToDecimal(this.txtDesirableCash.Text.Trim()))
  135. { MessageBoxCustom.Show("可取现金额不足"); return; }
  136. decimal BeforeMoney = MCrad.Mc_Money;
  137. if (this.txtTouchAccount.Text.Trim() == "")
  138. { MCrad.Mc_Money = MCrad.Mc_Money - Convert.ToDecimal(this.txtCashAmount.Text.Trim()); }
  139. else
  140. {
  141. MCrad.Mc_Money = MCrad.Mc_Money - Convert.ToDecimal(this.txtCashAmount.Text) - Convert.ToDecimal(this.txtTouchAccount.Text);
  142. MCrad.Mc_TotalTouchAccount = MCrad.Mc_TotalTouchAccount + Convert.ToDecimal(this.txtTouchAccount.Text);
  143. MCrad.Mc_TouchAccount = Convert.ToDecimal(this.txtTouchAccount.Text);
  144. }
  145. MCrad.Mc_UpdateDateTime = StrTime;
  146. MCrad.Mc_UpdateName = StrUserName;
  147. clist.Add(mcbll.GetUpdateCommandInfo(MCrad));
  148. decimal TouchAccount = 0;
  149. if (this.txtTouchAccount.Text.Trim() != "")
  150. { TouchAccount = Convert.ToDecimal(this.txtTouchAccount.Text); }
  151. LYFZ.Model.Model_ErpMemberCardAmountChangeLOG MCardLOG = new Model.Model_ErpMemberCardAmountChangeLOG();
  152. MCardLOG.Mcacl_Type = "1";
  153. MCardLOG.Mcacl_Number = this.StrNumber;
  154. MCardLOG.Mcacl_OriginalAmount = BeforeMoney;
  155. MCardLOG.Mcacl_ExistingAmount = BeforeMoney - (Convert.ToDecimal(txtCashAmount.Text.Trim()) + TouchAccount);
  156. MCardLOG.Mcacl_UseAmount = Convert.ToDecimal(txtCashAmount.Text.Trim()) + TouchAccount;
  157. if (this.txtTouchAccount.Text.Trim() == "")
  158. { MCardLOG.Mcacl_Remark = "主卡" + this.txtCradNumber.Text.Trim() + "提现金额为:" + txtCashAmount.Text.Trim() + "元"; }
  159. else
  160. { MCardLOG.Mcacl_Remark = "主卡" + this.txtCradNumber.Text.Trim() + "提现金额为:" + txtCashAmount.Text.Trim() + "元,抹帐:" + TouchAccount; }
  161. MCardLOG.Mcacl_CreateDatetime = StrTime;
  162. MCardLOG.Mcacl_CreateName = StrUserName;
  163. clist.Add(mcplogbll.GetAddCommandInfo(MCardLOG));
  164. if (!string.IsNullOrEmpty(txtCashAmount.Text.Trim()))
  165. {
  166. LYFZ.Model.Model_ErpMemberCardTakeCash modelTakeCash = new Model.Model_ErpMemberCardTakeCash();
  167. modelTakeCash.Mctkc_Number = this.StrNumber;
  168. modelTakeCash.Mctkc_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  169. modelTakeCash.Mctkc_TakeCashAmount = Convert.ToDecimal(txtCashAmount.Text.Trim());
  170. modelTakeCash.Mctkc_AuditStatus = "未审核";
  171. modelTakeCash.Mctkc_AuditName = "";
  172. modelTakeCash.Mctkc_CreateDatetime = StrTime;
  173. modelTakeCash.Mctkc_CreateName = StrUserName;
  174. modelTakeCash.Mctkc_TakeCashType = "提现";
  175. modelTakeCash.Mctkc_Remark = tb_DisInfo.Text;
  176. clist.Add(mctcbll.GetAddCommandInfo(modelTakeCash));
  177. }
  178. if (!string.IsNullOrEmpty(this.txtTouchAccount.Text.Trim()))
  179. {
  180. LYFZ.Model.Model_ErpMemberCardTakeCash modelTakeCash = new Model.Model_ErpMemberCardTakeCash();
  181. modelTakeCash.Mctkc_Number = this.StrNumber;
  182. modelTakeCash.Mctkc_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  183. modelTakeCash.Mctkc_TakeCashAmount = Convert.ToDecimal(txtTouchAccount.Text.Trim());
  184. modelTakeCash.Mctkc_AuditStatus = "未审核";
  185. modelTakeCash.Mctkc_AuditName = "";
  186. modelTakeCash.Mctkc_CreateDatetime = StrTime;
  187. modelTakeCash.Mctkc_CreateName = StrUserName;
  188. modelTakeCash.Mctkc_TakeCashType = "抹帐";
  189. modelTakeCash.Mctkc_Remark = tb_DisInfo.Text;
  190. clist.Add(mctcbll.GetAddCommandInfo(modelTakeCash));
  191. }
  192. if (clist.Count > 0)
  193. {
  194. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  195. {
  196. MessageBoxCustom.Show("提现成功");
  197. IsSaveed = true;
  198. this.Close();
  199. }
  200. else
  201. { MessageBoxCustom.Show("提现失败"); }
  202. }
  203. }
  204. }
  205. else if (SaveType.Equals("充值定金退款"))
  206. {
  207. if (txtCashAmount.Text.Trim() != "")
  208. {
  209. DataTable dtDeposit = bllDeposit.GetList(" Mcrd_CardNumber = '" + StrNumber + "' and Mcrd_BComplete = 0 ").Tables[0];
  210. if (dtDeposit.Rows.Count > 0)
  211. {
  212. Model.Model_ErpMemberCardRechargeDeposit rechargeModel = bllDeposit.GetModel(dtDeposit.Rows[0]);
  213. decimal PaytoCardValue = bllDepositRecord.GetHavePayRecordAmount(StrNumber, rechargeModel.Mcrd_RechargeNumber);
  214. decimal DepositValue = bllDepositRecord.GetDepositRecordAmount(StrNumber, rechargeModel.Mcrd_RechargeNumber);
  215. rechargeModel.Mcrd_BComplete = -1;
  216. clist.Add(bllDeposit.GetUpdateCommandInfo(rechargeModel));
  217. SaveBindMemeberCardData(MCrad, StrTime, StrUserName, PaytoCardValue, DepositValue, ref clist);
  218. if (clist.Count > 0)
  219. {
  220. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  221. {
  222. MessageBoxCustom.Show("退款成功");
  223. IsSaveed = true;
  224. this.Close();
  225. }
  226. else
  227. { MessageBoxCustom.Show("退款失败"); }
  228. }
  229. }
  230. else
  231. {
  232. MessageBoxCustom.Show("退款失败,无查询到有充值定金的记录!");
  233. }
  234. }
  235. }
  236. }
  237. /// <summary>
  238. /// 保存退款金额记录
  239. /// </summary>
  240. /// <param name="MCrad"></param>
  241. /// <param name="StrTime"></param>
  242. /// <param name="StrUserName"></param>
  243. /// <param name="clist"></param>
  244. void SaveBindMemeberCardData(LYFZ.Model.Model_ErpMemberCard MCrad, DateTime StrTime, string StrUserName, decimal PaytoCardValue, decimal DepositValue,ref List<CommandInfo> clist)
  245. {
  246. decimal BeforeMoney = MCrad.Mc_Money;
  247. MCrad.Mc_Money = MCrad.Mc_Money - PaytoCardValue;
  248. MCrad.Mc_UpdateDateTime = StrTime;
  249. MCrad.Mc_UpdateName = StrUserName;
  250. clist.Add(mcbll.GetUpdateCommandInfo(MCrad));
  251. decimal TouchAccount = 0;
  252. LYFZ.Model.Model_ErpMemberCardAmountChangeLOG MCardLOG = new Model.Model_ErpMemberCardAmountChangeLOG();
  253. MCardLOG.Mcacl_Type = "1";
  254. MCardLOG.Mcacl_Number = this.StrNumber;
  255. MCardLOG.Mcacl_OriginalAmount = BeforeMoney;
  256. MCardLOG.Mcacl_ExistingAmount = BeforeMoney - (PaytoCardValue + TouchAccount);
  257. MCardLOG.Mcacl_UseAmount = PaytoCardValue + TouchAccount;
  258. MCardLOG.Mcacl_Remark = "主卡" + this.txtCradNumber.Text.Trim() + " 充值定金退款金额为:" + PaytoCardValue + "元";
  259. MCardLOG.Mcacl_CreateDatetime = StrTime;
  260. MCardLOG.Mcacl_CreateName = StrUserName;
  261. clist.Add(mcplogbll.GetAddCommandInfo(MCardLOG));
  262. if (PaytoCardValue>0)
  263. {
  264. LYFZ.Model.Model_ErpMemberCardTakeCash modelTakeCash = new Model.Model_ErpMemberCardTakeCash();
  265. modelTakeCash.Mctkc_Number = this.StrNumber;
  266. modelTakeCash.Mctkc_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  267. modelTakeCash.Mctkc_TakeCashAmount = Convert.ToDecimal(txtCashAmount.Text.Trim());
  268. modelTakeCash.Mctkc_AuditStatus = "未审核";
  269. modelTakeCash.Mctkc_AuditName = "";
  270. modelTakeCash.Mctkc_CreateDatetime = StrTime;
  271. modelTakeCash.Mctkc_CreateName = StrUserName;
  272. modelTakeCash.Mctkc_TakeCashType = "充值定金退款";
  273. clist.Add(mctcbll.GetAddCommandInfo(modelTakeCash));
  274. }
  275. }
  276. /// <summary>
  277. /// 取消
  278. /// </summary>
  279. /// <param name="sender"></param>
  280. /// <param name="e"></param>
  281. protected override void btnCancel_Click(object sender, EventArgs e)
  282. { this.Close(); }
  283. /// <summary>
  284. /// 提现金额限制输入
  285. /// </summary>
  286. /// <param name="sender"></param>
  287. /// <param name="e"></param>
  288. protected override void txtCashAmount_KeyPress(object sender, KeyPressEventArgs e)
  289. {
  290. if (Convert.ToString(e.KeyChar) == ".")
  291. {
  292. if (this.txtCashAmount.Text.Trim().IndexOf('.') != -1)
  293. { e.Handled = true; }
  294. }
  295. else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  296. { e.Handled = true; }
  297. }
  298. /// <summary>
  299. /// 摸帐金额限制输入
  300. /// </summary>
  301. /// <param name="sender"></param>
  302. /// <param name="e"></param>
  303. protected override void txtTouchAccount_KeyPress(object sender, KeyPressEventArgs e)
  304. {
  305. if (Convert.ToString(e.KeyChar) == ".")
  306. {
  307. if (this.txtTouchAccount.Text.Trim().IndexOf('.') != -1)
  308. { e.Handled = true; }
  309. }
  310. else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  311. { e.Handled = true; }
  312. }
  313. }
  314. }