123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using System.Collections;
- using LYFZ.Helper;
- using LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm;
- namespace LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm
- {
- public partial class GoldCardCashSuperSmallForm : LYFZ.Software.UI.MembershipManage.SuperSmallForm.GoldCardCashSuperSmallForm
- {
- LYFZ.BLL.BLL_ErpMemberCard mcbll = new LYFZ.BLL.BLL_ErpMemberCard();
- LYFZ.BLL.BLL_ErpMemberCardTakeCash mctcbll = new BLL.BLL_ErpMemberCardTakeCash();
- LYFZ.BLL.BLL_ErpMemberCardAmountChangeLOG mcplogbll = new BLL.BLL_ErpMemberCardAmountChangeLOG();
- LYFZ.BLL.BLL_ErpMemberCardRechargeDepositRecord bllDepositRecord = new BLL.BLL_ErpMemberCardRechargeDepositRecord();
- BLL.BLL_ErpMemberCardRechargeDeposit bllDeposit = new BLL.BLL_ErpMemberCardRechargeDeposit();
- public GoldCardCashSuperSmallForm()
- {
- }
- public string SaveType = "会员卡提现";
- /// <summary>
- /// 会员卡编号
- /// </summary>
- public string StrNumber;
- /// <summary>
- /// 会员卡号
- /// </summary>
- public string CradNumber;
- /// <summary>
- /// 持卡人
- /// </summary>
- public string CradName;
- /// <summary>
- /// 可取现金
- /// </summary>
- public string AdvisableCash;
- /// <summary>
- /// 是否保存
- /// </summary>
- public bool IsSaveed = false;
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void GoldCardCashSuperSmallForm_Load(object sender, EventArgs e)
- {
-
- txtHolders.Text = CradName;
- txtCradNumber.Text = CradNumber;
- txtDesirableCash.Text = AdvisableCash;
- //txtCashAmount.Text = AdvisableCash;
- if (LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Account.ToLower() == LYFZ.AuthorizeUserName.AdministratorsName)
- {
- if (Convert.ToDecimal(this.txtDesirableCash.Text) > 0)
- { this.txtTouchAccount.ReadOnly = false; }
- else { this.txtTouchAccount.ReadOnly = true; }
- }
- else { this.txtTouchAccount.ReadOnly = true; }
- if(SaveType.Equals("会员卡提现"))
- {
- this.Text = "提现";
- DataTable dtDeposit = bllDeposit.GetList(" Mcrd_CardNumber = '" + StrNumber + "' and Mcrd_BComplete = 0 ").Tables[0];
- if (dtDeposit.Rows.Count>0)
- {
- Model.Model_ErpMemberCardRechargeDeposit rechargeModel = bllDeposit.GetModel(dtDeposit.Rows[0]);
- decimal havePayValue = bllDepositRecord.GetHavePayRecordAmount(rechargeModel.Mcrd_CardNumber, rechargeModel.Mcrd_RechargeNumber);
- labCanNotCash.Text = "不可提现:" + " " + havePayValue + "(充值定金)";
- txtDesirableCash.Text = (Convert.ToDecimal(AdvisableCash) - havePayValue).ToString("0.00");
- labCanNotCash.Visible = true;
-
- }
-
- }
- else if (SaveType.Equals("充值定金退款"))
- {
- this.Text = "充值定金退款";
- labelEx7.Visible = false;
- txtTouchAccount.Visible = false;
- tb_DisInfo.Visible = true;
- DataTable dtDeposit = bllDeposit.GetList(" Mcrd_CardNumber = '" + StrNumber + "' and Mcrd_BComplete = 0 ").Tables[0];
- if (dtDeposit.Rows.Count > 0)
- {
- Model.Model_ErpMemberCardRechargeDeposit rechargeModel = bllDeposit.GetModel(dtDeposit.Rows[0]);
- decimal PaytoCardValue = bllDepositRecord.GetHavePayRecordAmount(rechargeModel.Mcrd_CardNumber, rechargeModel.Mcrd_RechargeNumber);
- decimal DepositValue = bllDepositRecord.GetDepositRecordAmount(rechargeModel.Mcrd_CardNumber, rechargeModel.Mcrd_RechargeNumber);
- txtDesirableCash.Text = (PaytoCardValue + DepositValue).ToString("0.00");
- txtCashAmount.Text = (PaytoCardValue + DepositValue).ToString("0.00");
- txtCashAmount.ReadOnly = true;
- }
- else
- {
- MessageBoxCustom.Show("未缴纳定金,无需退款");
- txtDesirableCash.Text = "0";
- txtCashAmount.Text = "0";
- txtCashAmount.ReadOnly = true;
- }
- labelEx3.Text = "退款现金:";
- labelEx6.Text = "退款金额";
- labelEx4.Text = "退款金额:";
- }
- }
- /// <summary>
- /// 关闭窗体后发生事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void GoldCardCashSuperSmallForm_FormClosing(object sender, FormClosingEventArgs e)
- {
- GoldManagementSmallForm frm1 = (GoldManagementSmallForm)this.Owner;
- if (frm1 != null)
- {
- frm1.RefreshParentForm = IsSaveed;
- }
- }
- /// <summary>
- /// 保存
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnSave_Click(object sender, EventArgs e)
- {
- List<CommandInfo> clist = new List<CommandInfo>();
- LYFZ.Model.Model_ErpMemberCard MCrad = mcbll.GetModel("Mc_Number", this.StrNumber);
- DateTime StrTime = SDateTime.Now;
- string StrUserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
- if (SaveType.Equals("会员卡提现"))
- {
- if (txtCashAmount.Text.Trim() != "")
- {
- if (LYFZ.Command.Command_Validate.IsNumeric(txtCashAmount.Text.Trim()) == false)
- { MessageBoxCustom.Show("取现金额输入错误,取现金额只能输入整数或小数"); txtCashAmount.Text = ""; return; }
- if (Convert.ToDecimal(this.txtCashAmount.Text.Trim()) > Convert.ToDecimal(this.txtDesirableCash.Text.Trim()))
- { MessageBoxCustom.Show("可取现金额不足"); return; }
- decimal BeforeMoney = MCrad.Mc_Money;
- if (this.txtTouchAccount.Text.Trim() == "")
- { MCrad.Mc_Money = MCrad.Mc_Money - Convert.ToDecimal(this.txtCashAmount.Text.Trim()); }
- else
- {
- MCrad.Mc_Money = MCrad.Mc_Money - Convert.ToDecimal(this.txtCashAmount.Text) - Convert.ToDecimal(this.txtTouchAccount.Text);
- MCrad.Mc_TotalTouchAccount = MCrad.Mc_TotalTouchAccount + Convert.ToDecimal(this.txtTouchAccount.Text);
- MCrad.Mc_TouchAccount = Convert.ToDecimal(this.txtTouchAccount.Text);
- }
- MCrad.Mc_UpdateDateTime = StrTime;
- MCrad.Mc_UpdateName = StrUserName;
- clist.Add(mcbll.GetUpdateCommandInfo(MCrad));
- decimal TouchAccount = 0;
- if (this.txtTouchAccount.Text.Trim() != "")
- { TouchAccount = Convert.ToDecimal(this.txtTouchAccount.Text); }
- LYFZ.Model.Model_ErpMemberCardAmountChangeLOG MCardLOG = new Model.Model_ErpMemberCardAmountChangeLOG();
- MCardLOG.Mcacl_Type = "1";
- MCardLOG.Mcacl_Number = this.StrNumber;
- MCardLOG.Mcacl_OriginalAmount = BeforeMoney;
- MCardLOG.Mcacl_ExistingAmount = BeforeMoney - (Convert.ToDecimal(txtCashAmount.Text.Trim()) + TouchAccount);
- MCardLOG.Mcacl_UseAmount = Convert.ToDecimal(txtCashAmount.Text.Trim()) + TouchAccount;
- if (this.txtTouchAccount.Text.Trim() == "")
- { MCardLOG.Mcacl_Remark = "主卡" + this.txtCradNumber.Text.Trim() + "提现金额为:" + txtCashAmount.Text.Trim() + "元"; }
- else
- { MCardLOG.Mcacl_Remark = "主卡" + this.txtCradNumber.Text.Trim() + "提现金额为:" + txtCashAmount.Text.Trim() + "元,抹帐:" + TouchAccount; }
- MCardLOG.Mcacl_CreateDatetime = StrTime;
- MCardLOG.Mcacl_CreateName = StrUserName;
- clist.Add(mcplogbll.GetAddCommandInfo(MCardLOG));
- if (!string.IsNullOrEmpty(txtCashAmount.Text.Trim()))
- {
- LYFZ.Model.Model_ErpMemberCardTakeCash modelTakeCash = new Model.Model_ErpMemberCardTakeCash();
- modelTakeCash.Mctkc_Number = this.StrNumber;
- modelTakeCash.Mctkc_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
- modelTakeCash.Mctkc_TakeCashAmount = Convert.ToDecimal(txtCashAmount.Text.Trim());
- modelTakeCash.Mctkc_AuditStatus = "未审核";
- modelTakeCash.Mctkc_AuditName = "";
- modelTakeCash.Mctkc_CreateDatetime = StrTime;
- modelTakeCash.Mctkc_CreateName = StrUserName;
- modelTakeCash.Mctkc_TakeCashType = "提现";
- modelTakeCash.Mctkc_Remark = tb_DisInfo.Text;
- clist.Add(mctcbll.GetAddCommandInfo(modelTakeCash));
- }
- if (!string.IsNullOrEmpty(this.txtTouchAccount.Text.Trim()))
- {
- LYFZ.Model.Model_ErpMemberCardTakeCash modelTakeCash = new Model.Model_ErpMemberCardTakeCash();
- modelTakeCash.Mctkc_Number = this.StrNumber;
- modelTakeCash.Mctkc_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
- modelTakeCash.Mctkc_TakeCashAmount = Convert.ToDecimal(txtTouchAccount.Text.Trim());
- modelTakeCash.Mctkc_AuditStatus = "未审核";
- modelTakeCash.Mctkc_AuditName = "";
- modelTakeCash.Mctkc_CreateDatetime = StrTime;
- modelTakeCash.Mctkc_CreateName = StrUserName;
- modelTakeCash.Mctkc_TakeCashType = "抹帐";
- modelTakeCash.Mctkc_Remark = tb_DisInfo.Text;
- clist.Add(mctcbll.GetAddCommandInfo(modelTakeCash));
- }
- if (clist.Count > 0)
- {
- if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
- {
- MessageBoxCustom.Show("提现成功");
- IsSaveed = true;
- this.Close();
- }
- else
- { MessageBoxCustom.Show("提现失败"); }
- }
- }
- }
- else if (SaveType.Equals("充值定金退款"))
- {
- if (txtCashAmount.Text.Trim() != "")
- {
- DataTable dtDeposit = bllDeposit.GetList(" Mcrd_CardNumber = '" + StrNumber + "' and Mcrd_BComplete = 0 ").Tables[0];
- if (dtDeposit.Rows.Count > 0)
- {
- Model.Model_ErpMemberCardRechargeDeposit rechargeModel = bllDeposit.GetModel(dtDeposit.Rows[0]);
- decimal PaytoCardValue = bllDepositRecord.GetHavePayRecordAmount(StrNumber, rechargeModel.Mcrd_RechargeNumber);
- decimal DepositValue = bllDepositRecord.GetDepositRecordAmount(StrNumber, rechargeModel.Mcrd_RechargeNumber);
- rechargeModel.Mcrd_BComplete = -1;
- clist.Add(bllDeposit.GetUpdateCommandInfo(rechargeModel));
- SaveBindMemeberCardData(MCrad, StrTime, StrUserName, PaytoCardValue, DepositValue, ref clist);
- if (clist.Count > 0)
- {
- if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
- {
- MessageBoxCustom.Show("退款成功");
- IsSaveed = true;
- this.Close();
- }
- else
- { MessageBoxCustom.Show("退款失败"); }
- }
- }
- else
- {
- MessageBoxCustom.Show("退款失败,无查询到有充值定金的记录!");
- }
- }
- }
- }
- /// <summary>
- /// 保存退款金额记录
- /// </summary>
- /// <param name="MCrad"></param>
- /// <param name="StrTime"></param>
- /// <param name="StrUserName"></param>
- /// <param name="clist"></param>
- void SaveBindMemeberCardData(LYFZ.Model.Model_ErpMemberCard MCrad, DateTime StrTime, string StrUserName, decimal PaytoCardValue, decimal DepositValue,ref List<CommandInfo> clist)
- {
- decimal BeforeMoney = MCrad.Mc_Money;
- MCrad.Mc_Money = MCrad.Mc_Money - PaytoCardValue;
- MCrad.Mc_UpdateDateTime = StrTime;
- MCrad.Mc_UpdateName = StrUserName;
- clist.Add(mcbll.GetUpdateCommandInfo(MCrad));
- decimal TouchAccount = 0;
-
- LYFZ.Model.Model_ErpMemberCardAmountChangeLOG MCardLOG = new Model.Model_ErpMemberCardAmountChangeLOG();
- MCardLOG.Mcacl_Type = "1";
- MCardLOG.Mcacl_Number = this.StrNumber;
- MCardLOG.Mcacl_OriginalAmount = BeforeMoney;
- MCardLOG.Mcacl_ExistingAmount = BeforeMoney - (PaytoCardValue + TouchAccount);
- MCardLOG.Mcacl_UseAmount = PaytoCardValue + TouchAccount;
- MCardLOG.Mcacl_Remark = "主卡" + this.txtCradNumber.Text.Trim() + " 充值定金退款金额为:" + PaytoCardValue + "元";
- MCardLOG.Mcacl_CreateDatetime = StrTime;
- MCardLOG.Mcacl_CreateName = StrUserName;
- clist.Add(mcplogbll.GetAddCommandInfo(MCardLOG));
- if (PaytoCardValue>0)
- {
- LYFZ.Model.Model_ErpMemberCardTakeCash modelTakeCash = new Model.Model_ErpMemberCardTakeCash();
- modelTakeCash.Mctkc_Number = this.StrNumber;
- modelTakeCash.Mctkc_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
- modelTakeCash.Mctkc_TakeCashAmount = Convert.ToDecimal(txtCashAmount.Text.Trim());
- modelTakeCash.Mctkc_AuditStatus = "未审核";
- modelTakeCash.Mctkc_AuditName = "";
- modelTakeCash.Mctkc_CreateDatetime = StrTime;
- modelTakeCash.Mctkc_CreateName = StrUserName;
- modelTakeCash.Mctkc_TakeCashType = "充值定金退款";
- clist.Add(mctcbll.GetAddCommandInfo(modelTakeCash));
- }
-
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnCancel_Click(object sender, EventArgs e)
- { this.Close(); }
- /// <summary>
- /// 提现金额限制输入
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void txtCashAmount_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (Convert.ToString(e.KeyChar) == ".")
- {
- if (this.txtCashAmount.Text.Trim().IndexOf('.') != -1)
- { e.Handled = true; }
- }
- else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
- { e.Handled = true; }
- }
- /// <summary>
- /// 摸帐金额限制输入
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void txtTouchAccount_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (Convert.ToString(e.KeyChar) == ".")
- {
- if (this.txtTouchAccount.Text.Trim().IndexOf('.') != -1)
- { e.Handled = true; }
- }
- else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
- { e.Handled = true; }
- }
- }
- }
|