123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529 |
- 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();
- }
-
- /// <summary>
- /// 清空业绩列表
- /// </summary>
- void ClearPerformance()
- {
- this.listboxPerformance.Items.Clear();
- this.listboxPerformance.Tag = null;
- this.currentPersonCommissionRatio = null;
- }
- LYFZ.BLL.OrderPersonCommissionRatio currentPersonCommissionRatio = null;
- /// <summary>
- /// 自定义业绩分配
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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));
- }
- }
- /// <summary>
- /// 变量名,需要三个参数
- /// 1.会员编号(htData["StrNumber"])
- /// 2.消费金额(htData["PaymentAmount"])
- /// 3.套系名称(htData["PackageClass"]),如果不是套系,则为空
- /// </summary>
- public Hashtable htData = new Hashtable();
- /// <summary>
- /// 是否保存
- /// </summary>
- public bool IsSaveed = false;
- /// <summary>
- /// 保存后返回参数
- /// </summary>
- public MemberPaymentModel model = null;
- public List<CommandInfo> clist = new List<CommandInfo>();
- //LYFZ.Model.Model_ErpMemberCard modelmc = null;
- /// <summary>
- /// 当前卡的折扣
- /// </summary>
- decimal decDiscount = 0;
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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);
- }
- /// <summary>
- /// 输入付款金额后计算出折后金额
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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;
- }
- }
- }
- }
- /// <summary>
- ///
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void cmbPaymentMethod_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
- {
- this.txtConfirmAmount_EventTextBoxEx_TextChanged(this, null);
- }
- /// <summary>
- /// 输入付款金额后计算出折后金额
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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";
- //}
- }
- /// <summary>
- /// 金额输入控制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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; }
- }
- /// <summary>
- /// 备注输入控制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void txtRemark_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (Convert.ToString(e.KeyChar) == "|")
- { e.Handled = true; }
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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();
- }
- /// <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 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); }
- }
- /// <summary>
- /// 设置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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); }
- }
- /// <summary>
- /// 修改有效期
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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 = "";
- /// <summary>
- /// 永久选择事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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;
- /// <summary>
- /// 确认金额
- /// </summary>
- public decimal DelConfirmAmount
- {
- get { return _delConfirmAmount; }
- set { _delConfirmAmount = value; }
- }
- private string _strPaymentMethod;
- /// <summary>
- /// 支付方式
- /// </summary>
- public string StrPaymentMethod
- {
- get { return _strPaymentMethod; }
- set { _strPaymentMethod = value; }
- }
- private string _strRemark;
- /// <summary>
- /// 支付备注
- /// </summary>
- public string StrRemark
- {
- get { return _strRemark; }
- set { _strRemark = value; }
- }
- private decimal _delMemberDiscount;
- /// <summary>
- /// 优惠折扣
- /// </summary>
- public decimal DelMemberDiscount
- {
- get { return _delMemberDiscount; }
- set { _delMemberDiscount = value; }
- }
- private decimal _delMemberDiscountAmount;
- /// <summary>
- /// 优惠金额
- /// </summary>
- public decimal DelMemberDiscountAmount
- {
- get { return _delMemberDiscountAmount; }
- set { _delMemberDiscountAmount = value; }
- }
- private string _strOrderPerson;
- /// <summary>
- /// 接单人
- /// </summary>
- public string StrOrderPerson
- {
- get { return _strOrderPerson; }
- set { _strOrderPerson = value; }
- }
- string _CommissionRatio;
- public string CommissionRatio {
- get { return _CommissionRatio; }
- set { _CommissionRatio = value; }
- }
- }
- }
|