using LYFZ.Helper;
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm
{
public partial class MemberPaymentSuperSmallForm : LYFZ.Software.UI.MembershipManage.SuperSmallForm.MemberPaymentSuperSmallForm
{
LYFZ.BLL.BLL_ErpMemberCard mcbll = new BLL.BLL_ErpMemberCard();
LYFZ.BLL.BLL_ErpSystemConfigure sgbll = new BLL.BLL_ErpSystemConfigure();
LYFZ.BLL.BLL_ErpMemberCardGradeSet mcgsbll = new BLL.BLL_ErpMemberCardGradeSet();
LYFZ.BLL.BLL_ErpMemberCardValidity mcvybll = new BLL.BLL_ErpMemberCardValidity();
public MemberPaymentSuperSmallForm()
{
this.btnUpdateValidity.Click += btnUpdateValidity_Click;
this.chkValidity.CheckedChanged += chkValidity_CheckedChanged;
this.txtConfirmAmount.EventTextBoxEx_TextChanged += txtConfirmAmount_EventTextBoxEx_TextChanged;
this.txtConfirmAmount.Leave += txtConfirmAmount_Leave;
this.cmbPaymentMethod.ComboBoxTree_NodeMouseClick += cmbPaymentMethod_ComboBoxTree_NodeMouseClick;
this.btn_CustomerPerformance.Click += Btn_CustomerPerformance_Click;
this.btn_PerformanceClearn.Click += Btn_PerformanceClearn_Click;
}
private void Btn_PerformanceClearn_Click(object sender, EventArgs e)
{
ClearPerformance();
}
///
/// 清空业绩列表
///
void ClearPerformance()
{
this.listboxPerformance.Items.Clear();
this.listboxPerformance.Tag = null;
this.currentPersonCommissionRatio = null;
}
LYFZ.BLL.OrderPersonCommissionRatio currentPersonCommissionRatio = null;
///
/// 自定义业绩分配
///
///
///
private void Btn_CustomerPerformance_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(this.cmbtreevOrderPerson.Text.ToString()))
{
MessageBoxCustom.Show("请选择接单人!");
return;
}
LYFZ.Software.MainBusiness.DoorCityProcess.frmCustomPerformance customPerformance = new MainBusiness.DoorCityProcess.frmCustomPerformance();
try
{
customPerformance.CollectionAmount = Convert.ToDecimal(this.txtConfirmAmount.Text.Trim());
if (this.listboxPerformance.Items.Count > 0 && this.currentPersonCommissionRatio != null)
{
customPerformance.PersonCommissionRatio = this.currentPersonCommissionRatio;
}
else
{
customPerformance.OrderPersonInitialization(this.cmbtreevOrderPerson.Tag.ToString());
}
customPerformance.BindPerformancePersonControls();
if (customPerformance.ShowDialog() == DialogResult.OK)
{
this.listboxPerformance.Items.Clear();
this.currentPersonCommissionRatio = customPerformance.PersonCommissionRatio;
customPerformance.BindListBoxPerformance(this.listboxPerformance);
}
}
catch (Exception ex)
{
MessageBoxCustom.Show(String.Format("收款金额输入格式不正确:{0}", ex.Message));
}
}
///
/// 变量名,需要三个参数
/// 1.会员编号(htData["StrNumber"])
/// 2.消费金额(htData["PaymentAmount"])
/// 3.套系名称(htData["PackageClass"]),如果不是套系,则为空
///
public Hashtable htData = new Hashtable();
///
/// 是否保存
///
public bool IsSaveed = false;
///
/// 保存后返回参数
///
public MemberPaymentModel model = null;
public List clist = new List();
//LYFZ.Model.Model_ErpMemberCard modelmc = null;
///
/// 当前卡的折扣
///
decimal decDiscount = 0;
///
/// 窗体加载事件
///
///
///
protected override void MemberPaymentSuperSmallForm_Shown(object sender, EventArgs e)
{
DataTable tbl = LYFZ.BLL.BLL_ErpOrderView.GetData_MemberMainGoldMember(" And Mc_Number = '" + this.htData["StrNumber"] + "'", inTopCount: 1);
//DataTable tbl = mcbll.GetView_Custom("BView_MemberMain_GoldMember", StrWhere: "Mc_Number = '" + this.htData["StrNumber"] + "'", ShowColumnName: "会员卡号,姓名,类型,金额,折扣").Tables[0];
this.txtMemberNumber.Text = tbl.Rows[0]["会员卡号"].ToString().Trim();
this.txtName.Text = tbl.Rows[0]["持卡人"].ToString().Trim();
this.txtName.Tag = tbl.Rows[0]["类型"].ToString().Trim();
this.txtAvailableAmount.Text = tbl.Rows[0]["金额"].ToString().Trim();
this.txtCopeAmount.Text = htData["decCopeAmount"].ToString().Trim();
this.txtConfirmAmount.Text = htData["decCopeAmount"].ToString().Trim();
this.decDiscount = Convert.ToDecimal(tbl.Rows[0]["折扣"]);
//if (Convert.ToDecimal(tbl.Rows[0]["欠款"]) > 0)
//{
// LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.ArrearsTipsSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.ArrearsTipsSuperSmallForm();
// frm.StrTipsText = "此客人余款未清,请核对!";
// frm.ShowDialog();
//}
this.txtConfirmAmount.Focus();
#region 加载有效期
bool IsValidity = false;
DataTable dt = mcbll.GetView_Custom("tb_ErpMemberCardValidity", StrWhere: "Mcvy_Number = '" + this.htData["StrNumber"] + "' And Mcvy_Type = " + ((int)LYFZ.EnumPublic.MemberFunctionAttribute.服务) + "", ShowColumnName: "ID,Mcvy_ValidityTime").Tables[0];
if (dt.Rows.Count > 0)
{
this.chkValidity.Tag = dt.Rows[0]["ID"].ToString().Trim();
if (!string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(dt.Rows[0]["Mcvy_ValidityTime"].ToString().Trim())))
{
IsValidity = true;
this.dtpValidity.DateValue = dt.Rows[0]["Mcvy_ValidityTime"].ToString().Trim();
this.chkValidity.Checked = false;
}
}
if (!IsValidity)
{
this.dtpValidity.DateValue = "";
this.chkValidity.Checked = true;
}
#endregion
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PaymentMethod(this.cmbPaymentMethod);
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevOrderPerson);
this.btnSet.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, LYFZ.CustomAttributes.OperatingAuthority.OrderPaymentMethodSet);
}
///
/// 输入付款金额后计算出折后金额
///
///
///
void txtConfirmAmount_EventTextBoxEx_TextChanged(object sender, EventArgs e)
{
this.labelEx4.Visible = false;
if (!string.IsNullOrEmpty(this.txtConfirmAmount.Text.Trim()))
{
if (this.cmbPaymentMethod.Tag != null && this.cmbPaymentMethod.Tag.ToString().Trim() == "BEBACCAFEGECFBJFD")
{
if (this.decDiscount > 0)
{
decimal decDiscountAmount = Convert.ToDecimal((Convert.ToDecimal(this.txtConfirmAmount.Text) * (this.decDiscount / 10)).ToString("0.00"));
this.labelEx4.Text = "优惠:" + (Convert.ToDecimal(this.txtConfirmAmount.Text) - decDiscountAmount).ToString("0.00") + "元";
this.labelEx4.Visible = true;
}
}
}
}
///
///
///
///
///
void cmbPaymentMethod_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
{
this.txtConfirmAmount_EventTextBoxEx_TextChanged(this, null);
}
///
/// 输入付款金额后计算出折后金额
///
///
///
void txtConfirmAmount_Leave(object sender, EventArgs e)
{
//if (!string.IsNullOrEmpty(this.txtConfirmAmount.Text.Trim()))
//{
// if (this.decDiscount > 0)
// {
// this.txtConfirmDiscountAmount.Text = (Convert.ToDecimal(this.txtConfirmAmount.Text) * (this.decDiscount / 10)).ToString("0.00");
// this.txtConfirmDiscountAmount.Tag = (Convert.ToDecimal(this.txtConfirmAmount.Text) - Convert.ToDecimal(this.txtConfirmDiscountAmount.Text)).ToString("0.00");
// }
// else
// {
// this.txtConfirmDiscountAmount.Text = this.txtConfirmAmount.Text;
// this.txtConfirmDiscountAmount.Tag = "0.00";
// }
//}
//else
//{
// this.txtConfirmDiscountAmount.Text = "0.00";
// this.txtConfirmDiscountAmount.Tag = "0.00";
//}
}
///
/// 金额输入控制
///
///
///
protected override void txtConfirmAmount_KeyPress(object sender, KeyPressEventArgs e)
{
if (Convert.ToString(e.KeyChar) == ".")
{
if (this.txtConfirmAmount.Text.Trim().IndexOf('.') != -1)
{ e.Handled = true; }
}
else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
{ e.Handled = true; }
}
///
/// 备注输入控制
///
///
///
protected override void txtRemark_KeyPress(object sender, KeyPressEventArgs e)
{
if (Convert.ToString(e.KeyChar) == "|")
{ e.Handled = true; }
}
///
/// 确定
///
///
///
protected override void btnOK_Click(object sender, EventArgs e)
{
if (this.txtConfirmAmount.Text.Trim() == "")
{ MessageBoxCustom.Show("确认金额不能为空"); return; }
if (Convert.ToDecimal(htData["DiscountAmount"]) > Convert.ToDecimal(this.txtConfirmAmount.Text))
{ MessageBoxCustom.Show("确认金额不能少至折后金额"); return; }
if (this.cmbPaymentMethod.Tag == null)
{ MessageBoxCustom.Show("请选择支付方式!"); return; }
if (this.cmbtreevOrderPerson.Tag == null)
{ MessageBoxCustom.Show("请选择接单人!"); return; }
if (this.cmbtreevOrderPerson.Tag.ToString().Trim() == "")
{ MessageBoxCustom.Show("请选择接单人!"); return; }
if (Convert.ToDecimal(this.txtConfirmAmount.Text) > Convert.ToDecimal(this.txtCopeAmount.Text))
{ MessageBoxCustom.Show("收金额不能大于应付金额!"); return; }
decimal decDelConfirmAmount = 0;
decimal DelMemberDiscountAmount = 0;
if (this.cmbPaymentMethod.Tag.ToString().Trim() == "BEBACCAFEGECFBJFD")
{
if (Convert.ToDecimal(this.txtAvailableAmount.Text) < Convert.ToDecimal(this.txtConfirmAmount.Text))
{ MessageBoxCustom.Show("储值卡可用金额不足,请先充值后再支付"); return; }
if (this.decDiscount > 0)
{
decDelConfirmAmount = Convert.ToDecimal((Convert.ToDecimal(this.txtConfirmAmount.Text) * (this.decDiscount / 10)).ToString("0.00"));
}
else
{ decDelConfirmAmount = Convert.ToDecimal(this.txtConfirmAmount.Text); }
DataTable dtMcPw = mcbll.GetView_Custom("tb_ErpMemberCard", StrWhere: "Mc_Number = '" + this.htData["StrNumber"] + "'", ShowColumnName: "Mc_TraderPassword").Tables[0];
if (dtMcPw.Rows.Count > 0)
{
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm Efrm = new SuperSmallForm.EnterPasswordSuperSmallForm();
Efrm.Text = "请输入密码";
Efrm.ShowDialog();
if (Efrm.Pwd != "")
{
if (dtMcPw.Rows[0]["Mc_TraderPassword"].ToString().Trim() != LYFZ.Command.Command_MD5.md5(Efrm.Pwd))
{ MessageBoxCustom.Show("密码错误"); return; }
}
else
{ return; }
}
else
{ return; }
}
else
{ decDelConfirmAmount = Convert.ToDecimal(this.txtConfirmAmount.Text); }
DelMemberDiscountAmount = Convert.ToDecimal(this.txtConfirmAmount.Text) - decDelConfirmAmount;
model = new MemberPaymentModel();
model.DelConfirmAmount = decDelConfirmAmount;
model.StrPaymentMethod = this.cmbPaymentMethod.Tag.ToString().Trim();
model.StrRemark = this.txtRemark.Text.Trim();
model.DelMemberDiscount = this.decDiscount;
model.DelMemberDiscountAmount = DelMemberDiscountAmount;
model.StrOrderPerson = this.cmbtreevOrderPerson.Tag.ToString().Trim();
model.CommissionRatio = "";
if (this.listboxPerformance.Items.Count > 0 && this.currentPersonCommissionRatio != null)
{
model.StrOrderPerson = this.currentPersonCommissionRatio.ToOrderPersons();
model.CommissionRatio = this.currentPersonCommissionRatio.ToString();
}
#region 会员有效期
DateTime StrTime = SDateTime.Now;
string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
LYFZ.Model.Model_ErpMemberCardValidity modelValidity = null;
if (this.chkValidity.Tag == null)
{
modelValidity = new Model.Model_ErpMemberCardValidity();
modelValidity.Mcvy_Number = this.htData["StrNumber"].ToString().Trim();
modelValidity.Mcvy_Type = (int)LYFZ.EnumPublic.MemberFunctionAttribute.服务;
if (this.chkValidity.Checked)
{ modelValidity.Mcvy_ValidityTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
else
{ modelValidity.Mcvy_ValidityTime = Convert.ToDateTime(this.dtpValidity.DateValue).AddDays(1).AddSeconds(-1); }
modelValidity.Mcvy_CreateDatetime = StrTime;
modelValidity.Mcvy_CreateName = StrUserID;
clist.Add(mcvybll.GetAddCommandInfo(modelValidity));
string StrLogTime = "";
if (string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(modelValidity.Mcvy_ValidityTime)))
{ StrLogTime += "‘永久有效’"; }
else
{ StrLogTime += "’" + LYFZ.Command.Command_Validate.DateTimeToString(modelValidity.Mcvy_ValidityTime, "yyyy-MM-dd HH:mm:ss") + "’"; }
clist.Add(LYFZ.BLL.OrderPayment_Member.GetValidityLogs("[服务新增]", this.txtMemberNumber.Text.Trim(), modelValidity.Mcvy_Type, StrLogTime));
}
else
{
modelValidity = mcvybll.GetModel(Convert.ToInt32(this.chkValidity.Tag));
DateTime dtTime = modelValidity.Mcvy_ValidityTime;
string StrLogTime = "";
if (string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(modelValidity.Mcvy_ValidityTime)))
{ StrLogTime += "‘永久有效’"; }
else
{ StrLogTime += "’" + LYFZ.Command.Command_Validate.DateTimeToString(modelValidity.Mcvy_ValidityTime, "yyyy-MM-dd HH:mm:ss") + "’"; }
if (this.chkValidity.Checked)
{ modelValidity.Mcvy_ValidityTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
else
{ modelValidity.Mcvy_ValidityTime = Convert.ToDateTime(this.dtpValidity.DateValue).AddDays(1).AddSeconds(-1); }
if (LYFZ.Command.Command_Validate.DateTimeToString(dtTime) != LYFZ.Command.Command_Validate.DateTimeToString(modelValidity.Mcvy_ValidityTime))
{
modelValidity.Mcvy_UpdateDatetime = StrTime;
modelValidity.Mcvy_UpdateName = StrUserID;
clist.Add(mcvybll.GetUpdateCommandInfo(modelValidity));
if (string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(modelValidity.Mcvy_ValidityTime)))
{ StrLogTime += "修改为‘永久有效’"; }
else
{ StrLogTime += "修改为‘" + LYFZ.Command.Command_Validate.DateTimeToString(modelValidity.Mcvy_ValidityTime, "yyyy-MM-dd HH:mm:ss") + "’"; }
clist.Add(LYFZ.BLL.OrderPayment_Member.GetValidityLogs("[服务修改]", this.txtMemberNumber.Text.Trim(), modelValidity.Mcvy_Type, StrLogTime));
}
}
#endregion
this.IsSaveed = true;
this.Close();
}
///
/// 取消
///
///
///
protected override void btnCancel_Click(object sender, EventArgs e)
{ this.Close(); }
///
/// 充值
///
///
///
protected override void btnRecharge_Click(object sender, EventArgs e)
{
if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, CustomAttributes.OperatingAuthority.Member_Recharge))
{
LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frmLog = new DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm("MemberManage", CustomAttributes.OperatingAuthority.Member_Recharge);
if (frmLog.ShowDialog() == DialogResult.OK)
{
if (!LYFZ.BLL.BLL_ErpUser.GetRights(frmLog.CurrentAuthorizeUserRights.MemberManage, CustomAttributes.OperatingAuthority.Member_Recharge, frmLog.User_BelongRoles))
{
frmLog.SetAuthorizationResult(String.Format("授权失败,授权人没有'会员管理{0}'权限", LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm.ConvertEnumToDescription(CustomAttributes.OperatingAuthority.Member_Recharge).ToString()));
return; }
else {
frmLog.SetAuthorizationResult();
}
}
else
{ return; }
}
LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm.GoldCardRechargeSuperSmallForm frm = new GoldCardRechargeSuperSmallForm();
frm.StrNumber = this.htData["StrNumber"].ToString().Trim();
frm.CardNumber = this.txtMemberNumber.Text.Trim();
frm.CardName = this.txtName.Text.Trim();
frm.CardType = this.txtName.Tag.ToString().Trim();
frm.ShowDialog();
if (frm.IsSaveed)
{ this.MemberPaymentSuperSmallForm_Shown(this, null); }
}
///
/// 设置
///
///
///
protected override void btnSet_Click(object sender, EventArgs e)
{
LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
frm.TypeName = "BEBACCAFCCEAGAIHH";
frm.Version = "Version";
if (frm.ShowDialog() == DialogResult.OK)
{ LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PaymentMethod(this.cmbPaymentMethod); }
}
///
/// 修改有效期
///
///
///
void btnUpdateValidity_Click(object sender, EventArgs e)
{
if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MemberManage, CustomAttributes.OperatingAuthority.ValidityDateTime))
{
LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm("MemberManage", CustomAttributes.OperatingAuthority.ValidityDateTime);
if (frm.ShowDialog() == DialogResult.No)
{ return; }
if (!LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.MemberManage, CustomAttributes.OperatingAuthority.ValidityDateTime, frm.User_BelongRoles))
{
frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'会员管理{0}'权限", LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm.ConvertEnumToDescription(CustomAttributes.OperatingAuthority.ValidityDateTime).ToString()));
return; }
else {
frm.SetAuthorizationResult();
}
}
if (this.chkValidity.Checked)
{
this.chkValidity.Enabled = true;
this.dtpValidity.Enabled = false;
}
else
{
this.chkValidity.Enabled = true;
this.dtpValidity.Enabled = true;
}
}
string StrValidityTime = "";
///
/// 永久选择事件
///
///
///
void chkValidity_CheckedChanged(object sender, EventArgs e)
{
if (this.chkValidity.Checked)
{
this.StrValidityTime = this.dtpValidity.DateValue;
this.dtpValidity.DateValue = "";
this.dtpValidity.Enabled = false;
}
else
{
this.dtpValidity.Enabled = true;
this.dtpValidity.DateValue = this.StrValidityTime;
}
}
}
public class MemberPaymentModel
{
private decimal _delConfirmAmount;
///
/// 确认金额
///
public decimal DelConfirmAmount
{
get { return _delConfirmAmount; }
set { _delConfirmAmount = value; }
}
private string _strPaymentMethod;
///
/// 支付方式
///
public string StrPaymentMethod
{
get { return _strPaymentMethod; }
set { _strPaymentMethod = value; }
}
private string _strRemark;
///
/// 支付备注
///
public string StrRemark
{
get { return _strRemark; }
set { _strRemark = value; }
}
private decimal _delMemberDiscount;
///
/// 优惠折扣
///
public decimal DelMemberDiscount
{
get { return _delMemberDiscount; }
set { _delMemberDiscount = value; }
}
private decimal _delMemberDiscountAmount;
///
/// 优惠金额
///
public decimal DelMemberDiscountAmount
{
get { return _delMemberDiscountAmount; }
set { _delMemberDiscountAmount = value; }
}
private string _strOrderPerson;
///
/// 接单人
///
public string StrOrderPerson
{
get { return _strOrderPerson; }
set { _strOrderPerson = value; }
}
string _CommissionRatio;
public string CommissionRatio {
get { return _CommissionRatio; }
set { _CommissionRatio = value; }
}
}
}