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;
namespace LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm
{
public partial class GoldManagementSmallForm : LYFZ.Software.UI.MembershipManage.SetSmallForm.GoldCardManagementSmallForm
{
LYFZ.BLL.BLL_ErpMemberCard mcbll = new LYFZ.BLL.BLL_ErpMemberCard();
LYFZ.BLL.BLL_ErpMemberCardDiscount mcdbll = new BLL.BLL_ErpMemberCardDiscount();
LYFZ.BLL.BLL_ErpMemberCardOperateLOG mcplog = new BLL.BLL_ErpMemberCardOperateLOG();
LYFZ.BLL.BLL_ErpMemberCardAmountCashStatus mcarsbll = new BLL.BLL_ErpMemberCardAmountCashStatus();
LYFZ.BLL.BLL_ErpMemberCardInterfaceManagement mcimbll = new BLL.BLL_ErpMemberCardInterfaceManagement();
BLL.BLL_ErpMemberCardRechargeDeposit bllDeposit = new BLL.BLL_ErpMemberCardRechargeDeposit();
public GoldManagementSmallForm()
{
this.btnSendAmount.Click += btnSendAmount_Click;
this.btnOpenPointsViceCard.Click += btnOpenPointsViceCard_Click;
this.btnUpdateDiscount.Click += btnUpdateDiscount_Click;
this.btnDepositAmount.Click += btnDepositAmount_Click;
this.btnReturnDepositAmount.Click += btnReturnDepositAmount_Click;
}
void btnReturnDepositAmount_Click(object sender, EventArgs e)
{
if (LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Account.ToLower() != LYFZ.AuthorizeUserName.AdministratorsName)
{
LYFZ.Model.Model_ErpMemberCardAmountCashStatus model = mcarsbll.GetModel("Mcacr_Number", this.StrNumber);
if (model.ID > 0)
{
if (model.Mcacr_AmountStatus == 0)
{ MessageBoxCustom.Show("你的金额已被锁定,不能提现"); return; }
}
}
if (tblmodel.Mc_TraderPassword.Trim() != "")
{
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm Efrm = new SuperSmallForm.EnterPasswordSuperSmallForm();
Efrm.Text = "请输入密码";
Efrm.ShowDialog();
if (Efrm.Pwd != "")
{
if (tblmodel.Mc_TraderPassword.Trim() != LYFZ.Command.Command_MD5.md5(Efrm.Pwd))
{ MessageBoxCustom.Show("密码错误"); return; }
}
else { return; }
}
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.GoldCardCashSuperSmallForm frm = new SuperSmallForm.GoldCardCashSuperSmallForm();
this.thisfrm = frm;
frm.SaveType = "充值定金退款";
frm.StrNumber = this.StrNumber;
frm.CradNumber = this.txtCardNo.Text.Trim();
frm.CradName = this.txtHolder.Text.Trim();
frm.AdvisableCash = this.txtCashAccount.Text.Trim();
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
void btnDepositAmount_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.GoldCardRechargeSuperSmallForm frm = new SuperSmallForm.GoldCardRechargeSuperSmallForm();
this.thisfrm = frm;
frm.rechargeType = "会员充值定金";
frm.StrNumber = this.StrNumber;
frm.CardNumber = this.txtCardNo.Text.Trim();
frm.CardName = this.txtHolder.Text.Trim();
frm.CardType = this.txtCradType.Text.Trim();
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
bool _cancellationCard = false;
///
/// 是否为注销会员卡
///
public bool CancellationCard
{
get { return _cancellationCard; }
set { _cancellationCard = value; }
}
///
/// 会员卡编号
///
public string StrNumber;
///
/// 是否保存
///
public bool IsSaveed = false;
int IntWidth = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Width;
Form thisfrm = null;
Form otherfrm = null;
LYFZ.Model.Model_ErpMemberCard tblmodel = null;
///
/// 窗体加载事件
///
///
///
protected override void GoldManagementSmallForm_Load(object sender, EventArgs e)
{
#region 权限
this.btnModifyData.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Update);
this.btnLogout.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_Logout);
this.btnPassword.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_PasswordSet);
this.btnRetrievePassword.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_PasswordSet);
this.btnChangingCard.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_ChangingCard);
this.btnUpdateType.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_GradeUpdateType);
this.btnRecharge.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_Recharge);
this.btnCash.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_Cash);
this.btnOpenBackCashCard.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_SendViceCard);
this.btnSendPoint.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_SendPoint);
this.btnRedeemPoint.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_PointsRedeem);
this.btnTurnPoints.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_TurnPoints);
this.btnBackCashTakeCash.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_CashBackCash);
this.btnService.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_ServiceData);
this.btnPhotographerConference.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_PhotographerOpenCard);
this.btnUpdateDiscount.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.Member_DiscountUpdate);
this.btnSendAmount.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, LYFZ.CustomAttributes.OperatingAuthority.IncreaseSum);//LYFZ.BLL.BLL_ErpUser.IsAdministrator();
string MemberMainViewName = "BView_MemberMain_GoldMember";
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.HidePhoneControls(this.txtTelephone);
if (this.CancellationCard)
{
//this.btnLogout.Enabled = false;
this.btnLogout.Text = " 启用此会员";
this.btnPassword.Enabled = false;
this.btnRetrievePassword.Enabled = false;
this.btnChangingCard.Enabled = false;
this.btnUpdateType.Enabled = false;
this.btnRecharge.Enabled = false;
this.btnCash.Enabled = false;
this.btnOpenBackCashCard.Enabled = false;
this.btnSendPoint.Enabled = false;
this.btnRedeemPoint.Enabled = false;
this.btnTurnPoints.Enabled = false;
this.btnBackCashTakeCash.Enabled = false;
this.btnService.Enabled = false;
this.btnPhotographerConference.Enabled = false;
}
#endregion
DataTable tbl = mcbll.GetView_Custom(MemberMainViewName, StrWhere: "Mc_Number = '" + this.StrNumber + "'").Tables[0];
this.txtHolder.Text = tbl.Rows[0]["姓名"].ToString().Trim();
this.txtCardNo.Text = tbl.Rows[0]["会员卡号"].ToString().Trim();
this.txtTelephone.Text = tbl.Rows[0]["电话"].ToString().Trim();
this.txtCradType.Text = tbl.Rows[0]["等级"].ToString().Trim();
this.txtAvailablePoints.Text = tbl.Rows[0]["积分"].ToString().Trim();
this.txtCashAccount.Text = tbl.Rows[0]["金额"].ToString().Trim();
this.txtUseDiscount.Text = tbl.Rows[0]["折扣"].ToString().Trim();
this.txtPackagesAmount.Text = tbl.Rows[0]["套系金额"].ToString().Trim();
tbl = mcimbll.GetList("Mcim_Number = '" + this.StrNumber + "'").Tables[0];
if (tbl.Rows.Count > 0)
{
tbl = new Json.JsontoDataTable().toObject(tbl.Rows[0]["Mcim_InterfaceName"].ToString());
try
{ this.flpanel3.Visible = Convert.ToBoolean(tbl.Rows[0]["Points"]); }
catch { this.flpanel3.Visible = false; }
try
{ this.flpanel4.Visible = Convert.ToBoolean(tbl.Rows[0]["StoredValue"]); }
catch { this.flpanel4.Visible = false; }
try
{ this.flpanel5.Visible = Convert.ToBoolean(tbl.Rows[0]["BackCash"]); }
catch { this.flpanel5.Visible = false; }
try
{ this.flpanel6.Visible = Convert.ToBoolean(tbl.Rows[0]["Service"]); }
catch { this.flpanel6.Visible = false; }
try
{ this.flpanel7.Visible = Convert.ToBoolean(tbl.Rows[0]["NewTaken"]); }
catch { this.flpanel7.Visible = false; }
}
this.Location = new Point(200, 110);
tblmodel = mcbll.GetModel("Mc_Number", this.StrNumber);
}
private bool _refreshparentform;
///
/// 子窗体关闭后刷新父窗体
///
public bool RefreshParentForm
{
get { return this._refreshparentform; }
set
{
this._refreshparentform = value;
if (this._refreshparentform)
{
this.GoldManagementSmallForm_Load(this, null);
this.IsSaveed = true;
if (IsOpenOtherForm)
{
otherfrm.Show(this);
IsOpenOtherForm = false;
}
}
}
}
private bool _isopenotherform = false;
///
/// 是否打开其他窗体
///
public bool IsOpenOtherForm
{
get { return _isopenotherform; }
set { _isopenotherform = value; }
}
///
/// 赠送金额
///
///
///
void btnSendAmount_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.MemberSendAmountSuperSmallForm frm = new SuperSmallForm.MemberSendAmountSuperSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
protected override void Btn_DisInfo_Click(object sender, EventArgs e)
{
//base.Btn_DisInfo_Click(sender, e);
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.AddGoldCardMemberSmallForm frm = new AddGoldCardMemberSmallForm();
this.thisfrm = frm;
frm.bDisInfo = true;
frm.Text = "会员备注修改";
frm.StrNumber = this.StrNumber;
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
///
/// 充值
///
///
///
protected override void btnRecharge_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
DataTable dtDeposit = bllDeposit.GetList(" Mcrd_CardNumber = '" + StrNumber + "' and Mcrd_BComplete = 0 ").Tables[0];
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.GoldCardRechargeSuperSmallForm frm = new SuperSmallForm.GoldCardRechargeSuperSmallForm();
this.thisfrm = frm;
if (dtDeposit.Rows.Count > 0)
{
//if(MessageBoxCustom.Show("存在已缴纳定金额充值,是否将款补全?","提示", MessageBoxButtons.YesNo)== System.Windows.Forms.DialogResult.Yes)
//{
frm.rechargeType = "会员充值定金";
//}
}
frm.StrNumber = this.StrNumber;
frm.CardNumber = this.txtCardNo.Text.Trim();
frm.CardName = this.txtHolder.Text.Trim();
frm.CardType = this.txtCradType.Text.Trim();
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
///
/// 储值提现
///
///
///
protected override void btnCash_Click(object sender, EventArgs e)
{
if (LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Account.ToLower() != LYFZ.AuthorizeUserName.AdministratorsName)
{
LYFZ.Model.Model_ErpMemberCardAmountCashStatus model = mcarsbll.GetModel("Mcacr_Number", this.StrNumber);
if (model.ID > 0)
{
if (model.Mcacr_AmountStatus == 0)
{ MessageBoxCustom.Show("你的金额已被锁定,不能提现"); return; }
}
}
if (tblmodel.Mc_TraderPassword.Trim() != "")
{
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm Efrm = new SuperSmallForm.EnterPasswordSuperSmallForm();
Efrm.Text = "请输入密码";
Efrm.ShowDialog();
if (Efrm.Pwd != "")
{
if (tblmodel.Mc_TraderPassword.Trim() != LYFZ.Command.Command_MD5.md5(Efrm.Pwd))
{ MessageBoxCustom.Show("密码错误"); return; }
}
else { return; }
}
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.GoldCardCashSuperSmallForm frm = new SuperSmallForm.GoldCardCashSuperSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.CradNumber = this.txtCardNo.Text.Trim();
frm.CradName = this.txtHolder.Text.Trim();
frm.AdvisableCash = this.txtCashAccount.Text.Trim();
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
///
/// 更换卡号
///
///
///
protected override void btnChangingCard_Click(object sender, EventArgs e)
{
if (tblmodel.Mc_TraderPassword.Trim() != "")
{
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm Efrm = new SuperSmallForm.EnterPasswordSuperSmallForm();
Efrm.Text = "请输入密码";
Efrm.ShowDialog();
if (Efrm.Pwd != "")
{
if (tblmodel.Mc_TraderPassword.Trim() != LYFZ.Command.Command_MD5.md5(Efrm.Pwd))
{ MessageBoxCustom.Show("密码错误"); return; }
}
else { return; }
}
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.ReplaceCardNumberSuperSmallForm frm = new SuperSmallForm.ReplaceCardNumberSuperSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.CradNumber = this.txtCardNo.Text.Trim();
frm.CradName = this.txtHolder.Text.Trim();
frm.AvailablePoints = this.txtAvailablePoints.Text.Trim();
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
///
/// 修改资料
///
///
///
protected override void btnModifyData_Click(object sender, EventArgs e)
{
#if !DEBUG
if (tblmodel.Mc_TraderPassword.Trim() != "")
{
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm Efrm = new SuperSmallForm.EnterPasswordSuperSmallForm();
Efrm.Text = "请输入密码";
Efrm.ShowDialog();
if (Efrm.Pwd != "")
{
if (tblmodel.Mc_TraderPassword.Trim() != LYFZ.Command.Command_MD5.md5(Efrm.Pwd))
{ MessageBoxCustom.Show("密码错误"); return; }
}
else
{ return; }
}
#endif
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.AddGoldCardMemberSmallForm frm = new AddGoldCardMemberSmallForm();
this.thisfrm = frm;
frm.Text = "会员资料修改";
frm.StrNumber = this.StrNumber;
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
///
/// 密码设置
///
///
///
protected override void btnPassword_Click(object sender, EventArgs e)
{
#region
//LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm frm = new SuperSmallForm.EnterPasswordSuperSmallForm();
//if (tblmodel.Mc_TraderPassword.Trim() != "")
//{
// #region 原来已经设置密码的,现在输入原密码,为确保卡是否本人
// bool bl = true;
// while (bl)
// {
// frm.Text = "请输入原密码";
// frm.ShowDialog();
// if (frm.Pwd != "" && frm.IsSaveed)
// {
// if (tblmodel.Mc_TraderPassword.Trim() != frm.Pwd)
// { MessageBoxCustom.Show("原密码输入错误"); }
// else { bl = false; }
// }
// else { return; }
// }
// #endregion
//}
//#region 输入两次新密码,为保存密码不是随意输入
//string pwd1 = "";
//string pwd2 = "";
//bool bls = true;
//while (bls)
//{
// for (int i = 0; i < 2; i++)
// {
// frm.Text = i == 0 ? "请输入新密码" : "请再次输入新密码";
// frm.ShowDialog();
// if (frm.Pwd != "" && frm.IsSaveed)
// {
// switch (i)
// {
// case 0: pwd1 = frm.Pwd; break;
// case 1: pwd2 = frm.Pwd; break;
// }
// }
// else { return; }
// }
// if (pwd1 != pwd2)
// { MessageBoxCustom.Show("两次新密码输入不一致,请重新输入"); }
// else { bls = false; }
//}
#endregion
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordRetrieveSetSuperSmallForm frm = new SuperSmallForm.EnterPasswordRetrieveSetSuperSmallForm();
frm.Text = "设置密码";
frm.ShowDialog();
if (frm.IsSaveed)
{
tblmodel.Mc_TraderPassword = LYFZ.Command.Command_MD5.md5(frm.StrPassword);
tblmodel.Mc_UpdateDateTime = SDateTime.Now;
tblmodel.Mc_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
if (!mcbll.Update(tblmodel))
{ MessageBoxCustom.Show("密码设置失败"); return; }
LYFZ.BLL.OrderPayment_Member.MemberUpdatePaymentPassword(tblmodel.Mc_CustomerNumber, tblmodel.Mc_CradNumber, frm.StrPassword2);
MessageBoxCustom.Show("密码设置成功");
}
}
///
/// 找回密码
///
///
///
protected override void btnRetrievePassword_Click(object sender, EventArgs e)
{
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordRetrieveSetSuperSmallForm frm = new SuperSmallForm.EnterPasswordRetrieveSetSuperSmallForm();
frm.Text = "找回密码";
frm.ShowDialog();
if (frm.IsSaveed)
{
tblmodel = mcbll.GetModel("Mc_Number", this.StrNumber);
tblmodel.Mc_TraderPassword = LYFZ.Command.Command_MD5.md5(frm.StrPassword);
tblmodel.Mc_UpdateDateTime = SDateTime.Now;
tblmodel.Mc_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
if (!mcbll.Update(tblmodel))
{ MessageBoxCustom.Show("密码设置失败"); return; }
LYFZ.BLL.OrderPayment_Member.MemberUpdatePaymentPassword(tblmodel.Mc_CustomerNumber, tblmodel.Mc_CradNumber, frm.StrPassword2);
MessageBoxCustom.Show("密码设置成功");
}
}
///
/// 发放积分副卡
///
///
///
void btnOpenPointsViceCard_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.GoldCardViceManagementSmallForm frm = new GoldCardViceManagementSmallForm();
this.thisfrm = frm;
frm.Text = "赠送积分";
frm.StrNumber = this.StrNumber;
frm.StrCradNumber = this.txtCardNo.Text.Trim();
frm.StrCradName = this.txtHolder.Text.Trim();
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
///
/// 赠送积分
///
///
///
protected override void btnSendPoint_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.RedeemPointsSuperSmallForm frm = new SuperSmallForm.RedeemPointsSuperSmallForm();
this.thisfrm = frm;
frm.Text = "赠送积分";
frm.StrNumber = this.StrNumber;
frm.CradNumber = this.txtCardNo.Text.Trim();
frm.CradName = this.txtHolder.Text.Trim();
frm.AdvisablePoints = this.txtAvailablePoints.Text.Trim();
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
///
/// 转介绍积分
///
///
///
protected override void btnTurnPoints_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.ReferralPointsSuperSmallForm frm = new SuperSmallForm.ReferralPointsSuperSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.CradNumber = this.txtCardNo.Text.Trim();
frm.CradName = this.txtHolder.Text.Trim();
frm.CradPoints = this.txtAvailablePoints.Text.Trim();
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
///
/// 兑换积分
///
///
///
protected override void btnRedeemPoint_Click(object sender, EventArgs e)
{
if (!LYFZ.BLL.OrderPayment_Member.VerifiedValidity(this.StrNumber, LYFZ.EnumPublic.MemberFunctionAttribute.积分))
{ MessageBoxCustom.Show("对不起!您的会员卡积分有效期已过期,无法使用!"); return; }
if (tblmodel.Mc_TraderPassword.Trim() != "")
{
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm Efrm = new SuperSmallForm.EnterPasswordSuperSmallForm();
Efrm.Text = "请输入密码";
Efrm.ShowDialog();
if (Efrm.Pwd != "")
{
if (tblmodel.Mc_TraderPassword.Trim() != LYFZ.Command.Command_MD5.md5(Efrm.Pwd))
{ MessageBoxCustom.Show("密码错误"); return; }
}
else { return; }
}
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.RedeemPointsSuperSmallForm frm = new SuperSmallForm.RedeemPointsSuperSmallForm();
this.thisfrm = frm;
frm.Text = "兑换积分";
frm.StrNumber = this.StrNumber;
frm.CradNumber = this.txtCardNo.Text.Trim();
frm.CradName = this.txtHolder.Text.Trim();
frm.AdvisablePoints = this.txtAvailablePoints.Text.Trim();
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
///
/// 注销此卡
///
///
///
protected override void btnLogout_Click(object sender, EventArgs e)
{
DateTime StrTime = SDateTime.Now;
string StrUserNameID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
List clist = new List();
if (this.btnLogout.Text.Trim() == "注销此卡")
{
if (tblmodel.Mc_TraderPassword.Trim() != "")
{
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm Efrm = new SuperSmallForm.EnterPasswordSuperSmallForm();
Efrm.Text = "请输入密码";
Efrm.ShowDialog();
if (Efrm.Pwd != "")
{
if (tblmodel.Mc_TraderPassword.Trim() != LYFZ.Command.Command_MD5.md5(Efrm.Pwd))
{ MessageBoxCustom.Show("密码错误"); return; }
}
else { return; }
}
DataTable tbl = mcbll.GetView_Custom("tb_ErpMemberCard", StrWhere: "Mc_Number = '" + this.StrNumber + "'", ShowColumnName: "Mc_Money").Tables[0];
if (tbl.Rows.Count <= 0)
{ MessageBoxCustom.Show("获取会员卡数据出错!\r\n或此会员卡不存在!"); return; }
if (tbl.Rows[0]["Mc_Money"].ToString().Trim().Length > 0)
{
if (Convert.ToDecimal(tbl.Rows[0]["Mc_Money"]) > 0)
{ MessageBoxCustom.Show("此会员卡有可用金额,不能注销!"); return; }
}
if (MessageBoxCustom.Show("你要注销此卡,此卡一但注销则不能恢复,请慎重 \r\n 你确定要注销此卡", "温馨提示", MessageBoxButtons.YesNo) != DialogResult.Yes)
{ return; }
//if (MessageBoxCustom.Show("第二次提示,此卡一但注销则不能恢复 \r\n 你确定要注销此卡", "第二次温馨提示", MessageBoxButtons.YesNo) != DialogResult.Yes)
//{ return; }
tblmodel.Mc_Status = "0";
tblmodel.Mc_UpdateDateTime = StrTime;
tblmodel.Mc_UpdateName = StrUserNameID;
clist.Add(mcbll.GetUpdateCommandInfo(tblmodel));
LYFZ.Model.Model_ErpMemberCardOperateLOG modelog = new Model.Model_ErpMemberCardOperateLOG();
modelog.mcol_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
modelog.mcol_Number = this.StrNumber;
modelog.mcol_Type = "0";
modelog.mcol_Remark = "";
modelog.mcol_CreateDatetime = StrTime;
modelog.mcol_CreateName = StrUserNameID;
clist.Add(mcplog.GetAddCommandInfo(modelog));
if (clist.Count > 0)
{
if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
{
LYFZ.BLL.OrderPayment_Member.MemberLogout(tblmodel.Mc_CustomerNumber, tblmodel.Mc_CradNumber);
MessageBoxCustom.Show("注销成功");
IsSaveed = true;
this.Close();
}
else { MessageBoxCustom.Show("注销失败"); }
}
}
else if (this.btnLogout.Text.Trim() == "启用此会员")
{
DataTable dtMemberCard = mcbll.GetView_Custom("tb_ErpMemberCard", StrWhere: "Mc_CustomerNumber = '" + tblmodel.Mc_CustomerNumber.Trim() + "' And ID != '" + tblmodel.ID + "'", ShowColumnName: "ID").Tables[0];
if (dtMemberCard.Rows.Count > 0)
{ MessageBoxCustom.Show("此客户已有新的会员卡,不能启用!"); return; }
DataTable dtCradNumber = mcbll.GetView_Custom("tb_ErpMemberCard", StrWhere: "Mc_CradNumber = '" + tblmodel.Mc_CustomerNumber.Trim() + "' And ID != '" + tblmodel.ID + "'", ShowColumnName: "ID").Tables[0];
if (dtCradNumber.Rows.Count > 0)
{ MessageBoxCustom.Show("此会员卡号已被占用,不能启用!"); return; }
tblmodel.Mc_Status = "1";
tblmodel.Mc_UpdateDateTime = StrTime;
tblmodel.Mc_UpdateName = StrUserNameID;
clist.Add(mcbll.GetUpdateCommandInfo(tblmodel));
LYFZ.Model.Model_ErpMemberCardOperateLOG modelog = new Model.Model_ErpMemberCardOperateLOG();
modelog.mcol_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
modelog.mcol_Number = this.StrNumber;
modelog.mcol_Type = "5";
modelog.mcol_Remark = "";
modelog.mcol_CreateDatetime = StrTime;
modelog.mcol_CreateName = StrUserNameID;
clist.Add(mcplog.GetAddCommandInfo(modelog));
if (clist.Count > 0)
{
if (MessageBoxCustom.Show("您确定要启用吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No)
{ return; }
if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
{
LYFZ.BLL.OrderPayment_Member.MemberLogout(tblmodel.Mc_CustomerNumber, tblmodel.Mc_CradNumber);
MessageBoxCustom.Show("启用成功");
IsSaveed = true;
this.Close();
}
else
{ MessageBoxCustom.Show("启用失败"); }
}
}
}
///
/// 积分记录
///
///
///
protected override void btnRedeemLog_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.PointsRecordSuperSmallForm frm = new SuperSmallForm.PointsRecordSuperSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X, this.Location.Y);
frm.Show();
}
///
/// 资金记录
///
///
///
protected override void btnUseLog_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.MemberCardUseRecordsSuperSmallForm frm = new SuperSmallForm.MemberCardUseRecordsSuperSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X, this.Location.Y);
frm.Show();
}
///
/// 返现信息
///
///
///
protected override void btnCashbackInfo_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.CashbackInfoSuperSmallForm frm = new SuperSmallForm.CashbackInfoSuperSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X, this.Location.Y);
frm.Show(this);
}
///
/// 发放返现副卡
///
///
///
protected override void btnOpenBackCashCard_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.OpenBackCashViceCardSuperSmallForm frm = new SuperSmallForm.OpenBackCashViceCardSuperSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.CardNumber = this.txtCardNo.Text.Trim();
frm.CardName = this.txtHolder.Text.Trim();
frm.Text = "发放现金副卡";
//frm.Height = this.Height;
frm.FromHeight = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show();
}
///
/// 服务资料
///
///
///
protected override void btnService_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.ServiceCardManagementSmallForm frm = new SetSmallForm.ServiceCardManagementSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
///
/// 服务收款记录
///
///
///
protected override void btnServicePaymentRecord_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.MemberServicePaymentRecordSuperSmallForm frm = new SuperSmallForm.MemberServicePaymentRecordSuperSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X, this.Location.Y);
frm.Show();
}
///
/// 服务使用记录
///
///
///
protected override void btnServiceUseRecord_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.ServiceUseRecordSuperSmallForm frm = new SuperSmallForm.ServiceUseRecordSuperSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X, this.Location.Y);
frm.Show();
}
///
/// 储值记录
///
///
///
protected override void btnRechargeLog_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.MemberRechargeRecordSuperSmallForm frm = new SuperSmallForm.MemberRechargeRecordSuperSmallForm();
DataTable tempDtDeposit = bllDeposit.GetList(" Mcrd_CardNumber = '" + StrNumber + "' and Mcrd_BComplete = 0 ").Tables[0];
this.thisfrm = frm;
frm.txtCardNo = this.txtCardNo.Text;
frm.txtHolder = this.txtHolder.Text;
frm.StrNumber = this.StrNumber;
if(tempDtDeposit.Rows.Count>0)
{
Model.Model_ErpMemberCardRechargeDeposit rechargeModel = bllDeposit.GetModel(tempDtDeposit.Rows[0]);
frm.txtCashAccount = rechargeModel.Mcrd_ArrearsAmount.ToString("0.00");
}
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X, this.Location.Y);
frm.Show();
}
///
/// 返现提现
///
///
///
protected override void btnBackCashTakeCash_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.BackCashCardCashSuperSmallForm frm = new SuperSmallForm.BackCashCardCashSuperSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.CradNumber = this.txtCardNo.Text.Trim();
frm.CradName = this.txtHolder.Text.Trim();
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show();
}
///
/// 修改卡类型
///
///
///
protected override void btnUpdateType_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.MemberCardUpdateTypeSuperSmallForm frm = new SuperSmallForm.MemberCardUpdateTypeSuperSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.CurrentType = this.txtCradType.Text.Trim();
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + (frm.Width / 2), this.Location.Y + (frm.Height / 2));
frm.Show(this);
}
///
/// 办理新摄会
///
///
///
protected override void btnPhotographerConference_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
this.IsOpenOtherForm = true;
//实例我的新摄会,用于关闭办理新摄会后跳出的窗体
LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.MyPhotographerConferenceSmallForm ofrm = new MyPhotographerConferenceSmallForm();
this.otherfrm = ofrm;
ofrm.StrNumber = this.StrNumber;
ofrm.Height = this.Height;
ofrm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
ofrm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
//跳出新社会办理
LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.AddPhotographerConferenceSmallForm frm = new SetSmallForm.AddPhotographerConferenceSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show(this);
}
///
/// 我的新摄会
///
///
///
protected override void btnMyPhotographerConference_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm.MyPhotographerConferenceSmallForm frm = new SetSmallForm.MyPhotographerConferenceSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X + this.Width + 1, this.Location.Y);
frm.Show();
}
///
/// 新摄会记录
///
///
///
protected override void btnPhotographerConferenceRecord_Click(object sender, EventArgs e)
{
if (thisfrm != null)
{ this.thisfrm.Close(); }
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.PhotographerConferenceRecordedSuperSmallForm frm = new SuperSmallForm.PhotographerConferenceRecordedSuperSmallForm();
this.thisfrm = frm;
frm.StrNumber = this.StrNumber;
frm.Height = this.Height;
frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
frm.Location = new Point(this.Location.X, this.Location.Y);
frm.Show();
}
///
/// 修改折扣
///
///
///
void btnUpdateDiscount_Click(object sender, EventArgs e)
{
LYFZ.Software.MainBusiness.CameraControlBook.SuperSmallForm.GetTextSuperSmallForm frm = new CameraControlBook.SuperSmallForm.GetTextSuperSmallForm();
frm.Text = "修改折扣";
frm.IsValidationValueSize = false;
frm.strKeyPressType = "Decimal";
frm.ShowDialog();
if (frm.IsOK)
{
decimal decDiscount = Convert.ToDecimal(LYFZ.Command.Command_Validate.GetIsNotRoundedString(frm.StrValue));
if (decDiscount <= 0)
{ MessageBoxCustom.Show("折扣不能小于或等于零"); }
if (decDiscount > 10)
{ MessageBoxCustom.Show("折扣不能大于10"); }
LYFZ.Model.Model_ErpMemberCardDiscount model = mcdbll.GetModel("Mcdt_Number", this.StrNumber);
if (model.ID <= 0)
{
model = new Model.Model_ErpMemberCardDiscount();
model.Mcdt_Number = this.StrNumber;
}
else
{ }
model.Mcdt_Discount = decDiscount;
model.Mcdt_UpdateDateTime = SDateTime.Now;
model.Mcdt_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
bool IsAddUpdate = false;
if (model.ID > 0)
{ IsAddUpdate = mcdbll.Update(model); }
else
{ IsAddUpdate = mcdbll.Add(model); }
if (IsAddUpdate)
{
this.IsSaveed = true;
MessageBoxCustom.Show("折扣修改成功");
this.txtUseDiscount.Text = decDiscount.ToString();
}
else
{ MessageBoxCustom.Show("折扣修改失败"); }
}
}
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GoldManagementSmallForm));
this.plFormMainContent.SuspendLayout();
this.SuspendLayout();
//
// txtCradType
//
this.txtCradType.Lines = new string[0];
//
// txtCashAccount
//
this.txtCashAccount.Lines = new string[0];
//
// txtAvailablePoints
//
this.txtAvailablePoints.Lines = new string[0];
//
// txtHolder
//
this.txtHolder.Lines = new string[0];
//
// txtCardNo
//
this.txtCardNo.Lines = new string[0];
//
// txtPackagesAmount
//
this.txtPackagesAmount.Lines = new string[0];
//
// txtUseDiscount
//
this.txtUseDiscount.Lines = new string[0];
//
// plExMainContainer
//
this.plExMainContainer.Size = new System.Drawing.Size(550, 688);
//
// plFormMainContent
//
this.plFormMainContent.Size = new System.Drawing.Size(550, 688);
//
// btnAppFormExit
//
this.btnAppFormExit.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAppFormExit.BackImg")));
//
// GoldManagementSmallForm
//
this.BottomBgImage = ((System.Drawing.Bitmap)(resources.GetObject("$this.BottomBgImage")));
this.ClientSize = new System.Drawing.Size(550, 753);
this.CustomBorderStyles.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(63)))), ((int)(((byte)(109)))), ((int)(((byte)(139)))));
this.Name = "GoldManagementSmallForm";
this.TitleBgImage = ((System.Drawing.Bitmap)(resources.GetObject("$this.TitleBgImage")));
this.Controls.SetChildIndex(this.btnAppFormMaximize, 0);
this.Controls.SetChildIndex(this.btnAppFormExit, 0);
this.Controls.SetChildIndex(this.btnAppFormMinimize, 0);
this.Controls.SetChildIndex(this.btnAppFormMenu, 0);
this.Controls.SetChildIndex(this.btnAppFormSkin, 0);
this.Controls.SetChildIndex(this.plFormMainContent, 0);
this.plFormMainContent.ResumeLayout(false);
this.ResumeLayout(false);
}
}
}