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;
namespace LYFZ.Software.MainBusiness.MembershipManage.SetSmallForm
{
public partial class DataSetCashBackSmallForm : LYFZ.Software.UI.MembershipManage.SetSmallForm.DataSetCashBackSmallForm
{
public DataSetCashBackSmallForm()
{
this.txtBackCashCoefficient.KeyPress += txtBackCashCoefficient_KeyPress;
}
LYFZ.BLL.BLL_ErpSystemConfigure bll = new LYFZ.BLL.BLL_ErpSystemConfigure();
LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
///
/// 窗体加载事件
///
///
///
protected override void CashBackCardCashBackProportionSuperSmallForm_Shown(object sender, EventArgs e)
{
this.AllEnabledFalse();
string ExecuteSql = orbll.GetView_CustomReturnExecuteSql("tb_ErpSystemConfigure", StrWhere: " Sconfig_Code = 'BackCashCoefficient'", ShowColumnName: "Sconfig_Value");
ExecuteSql += ";" + orbll.GetView_CustomReturnExecuteSql("tb_ErpSystemConfigure", StrWhere: " Sconfig_Code = 'Proportion'", ShowColumnName: "Sconfig_Value");
DataSet dtSet = orbll.GetView_Custom(ExecuteSql);
DataTable tbl2 = dtSet.Tables["ds"];
DataTable tbl3 = dtSet.Tables["ds1"];
string[] Sconfig_Value = tbl3.Rows[0]["Sconfig_Value"].ToString().Trim().Split('|');
this.txtCardsNo.Text = Sconfig_Value[0].Trim();
string[] tmpValue = Sconfig_Value[1].Trim().Split(',');
for (int i = 1; i <= Convert.ToInt32(Sconfig_Value[0].Trim()); i++)
{
switch (i)
{
case 1: this.txtOne.Text = tmpValue[0].Trim(); this.txtOne.Enabled = true; break;
case 2: this.txtTwo.Text = tmpValue[1].Trim(); this.txtTwo.Enabled = true; break;
case 3: this.txtThree.Text = tmpValue[2].Trim(); this.txtThree.Enabled = true; break;
case 4: this.txtFour.Text = tmpValue[3].Trim(); this.txtFour.Enabled = true; break;
case 5: this.txtFive.Text = tmpValue[4].Trim(); this.txtFive.Enabled = true; break;
case 6: this.txtSix.Text = tmpValue[5].Trim(); this.txtSix.Enabled = true; break;
case 7: this.txtSeven.Text = tmpValue[6].Trim(); this.txtSeven.Enabled = true; break;
case 8: this.txtEight.Text = tmpValue[7].Trim(); this.txtEight.Enabled = true; break;
case 9: this.txtNine.Text = tmpValue[8].Trim(); this.txtNine.Enabled = true; break;
case 10: this.txtTen.Text = tmpValue[9].Trim(); this.txtTen.Enabled = true; break;
}
}
if (tbl2.Rows.Count > 0)
{
if (tbl2.Rows[0]["Sconfig_Value"].ToString().Trim() != "")
{ this.txtBackCashCoefficient.Text = tbl2.Rows[0]["Sconfig_Value"].ToString().Trim(); }
else
{ this.txtBackCashCoefficient.Text = "1"; }
}
else
{
LYFZ.Model.Model_ErpSystemConfigure model = new Model.Model_ErpSystemConfigure();
model.Sconfig_Code = "BackCashCoefficient";
model.Sconfig_Name = "返现系数";
model.Sconfig_Value = "1";
model.Sconfig_IsEnabled = true;
model.Sconfig_Type = "";
model.Sconfig_Remark = "返现系数(实现返现范围)";
model.Sconfig_Order = 0;
model.Sconfig_CreateDatetime = SDateTime.Now;
model.Sconfig_CreateName = "";
bll.Add(model);
}
}
private void AllEnabledFalse()
{
this.txtOne.Enabled = false; this.txtOne.Text = "0";
this.txtTwo.Enabled = false; this.txtTwo.Text = "0";
this.txtThree.Enabled = false; this.txtThree.Text = "0";
this.txtFour.Enabled = false; this.txtFour.Text = "0";
this.txtFive.Enabled = false; this.txtFive.Text = "0";
this.txtSix.Enabled = false; this.txtSix.Text = "0";
this.txtSeven.Enabled = false; this.txtSeven.Text = "0";
this.txtEight.Enabled = false; this.txtEight.Text = "0";
this.txtNine.Enabled = false; this.txtNine.Text = "0";
this.txtTen.Enabled = false; this.txtTen.Text = "0";
}
///
/// 消费次数
///
///
///
protected override void txtCardsNo_Leave(object sender, EventArgs e)
{
if (this.txtCardsNo.Text.Trim() != "")
{
try
{
if (10 >= Convert.ToInt32(this.txtCardsNo.Text.Trim()) && Convert.ToInt32(this.txtCardsNo.Text.Trim()) > 0)
{
int ForCount = 10;
while (ForCount > Convert.ToInt32(this.txtCardsNo.Text.Trim()))
{
switch (ForCount)
{
case 1: this.txtOne.Enabled = false; this.txtOne.Text = "0"; break;
case 2: this.txtTwo.Enabled = false; this.txtTwo.Text = "0"; break;
case 3: this.txtThree.Enabled = false; this.txtThree.Text = "0"; break;
case 4: this.txtFour.Enabled = false; this.txtFour.Text = "0"; break;
case 5: this.txtFive.Enabled = false; this.txtFive.Text = "0"; break;
case 6: this.txtSix.Enabled = false; this.txtSix.Text = "0"; break;
case 7: this.txtSeven.Enabled = false; this.txtSeven.Text = "0"; break;
case 8: this.txtEight.Enabled = false; this.txtEight.Text = "0"; break;
case 9: this.txtNine.Enabled = false; this.txtNine.Text = "0"; break;
case 10: this.txtTen.Enabled = false; this.txtTen.Text = "0"; break;
}
ForCount--;
}
int ForCount2 = Convert.ToInt32(this.txtCardsNo.Text.Trim());
while (ForCount2 > 0)
{
switch (ForCount2)
{
case 1: this.txtOne.Enabled = true; break;
case 2: this.txtTwo.Enabled = true; break;
case 3: this.txtThree.Enabled = true; break;
case 4: this.txtFour.Enabled = true; break;
case 5: this.txtFive.Enabled = true; break;
case 6: this.txtSix.Enabled = true; break;
case 7: this.txtSeven.Enabled = true; break;
case 8: this.txtEight.Enabled = true; break;
case 9: this.txtNine.Enabled = true; break;
case 10: this.txtTen.Enabled = true; break;
}
ForCount2--;
}
}
else if (Convert.ToInt32(this.txtCardsNo.Text.Trim()) == 0)
{ this.AllEnabledFalse(); }
}
catch
{ this.AllEnabledFalse(); }
}
else
{ this.txtCardsNo.Text = "0"; }
}
///
/// 确定
///
///
///
protected override void btnOK_Click(object sender, EventArgs e)
{
if (Convert.ToInt32(txtCardsNo.Text.Trim()) > 0)
{
if (this.txtBackCashCoefficient.Text.Trim() == "")
{ MessageBoxCustom.Show("返现系数不能为空!"); return; }
if (Convert.ToDecimal(this.txtBackCashCoefficient.Text) < 0 || Convert.ToDecimal(this.txtBackCashCoefficient.Text) > 100)
{ MessageBoxCustom.Show("返现系数设置的值范围在 0 至 100 之间!"); return; }
int ForCount = 1;
decimal ForDecimal = 0;
string Serial = "";
while (ForCount <= Convert.ToInt32(this.txtCardsNo.Text.Trim()))
{
switch (ForCount)
{
case 1: ForDecimal += Convert.ToDecimal(this.txtOne.Text.Trim()); Serial = this.txtOne.Text.Trim(); break;
case 2: ForDecimal += Convert.ToDecimal(this.txtTwo.Text.Trim()); Serial = Serial + "," + this.txtTwo.Text.Trim(); break;
case 3: ForDecimal += Convert.ToDecimal(this.txtThree.Text.Trim()); Serial = Serial + "," + this.txtThree.Text.Trim(); break;
case 4: ForDecimal += Convert.ToDecimal(this.txtFour.Text.Trim()); Serial = Serial + "," + this.txtFour.Text.Trim(); break;
case 5: ForDecimal += Convert.ToDecimal(this.txtFive.Text.Trim()); Serial = Serial + "," + this.txtFive.Text.Trim(); break;
case 6: ForDecimal += Convert.ToDecimal(this.txtSix.Text.Trim()); Serial = Serial + "," + this.txtSix.Text.Trim(); break;
case 7: ForDecimal += Convert.ToDecimal(this.txtSeven.Text.Trim()); Serial = Serial + "," + this.txtSeven.Text.Trim(); break;
case 8: ForDecimal += Convert.ToDecimal(this.txtEight.Text.Trim()); Serial = Serial + "," + this.txtEight.Text.Trim(); break;
case 9: ForDecimal += Convert.ToDecimal(this.txtNine.Text.Trim()); Serial = Serial + "," + this.txtNine.Text.Trim(); break;
case 10: ForDecimal += Convert.ToDecimal(this.txtTen.Text.Trim()); Serial = Serial + "," + this.txtTen.Text.Trim(); break;
}
ForCount++;
}
if (ForDecimal != 100)
{ MessageBoxCustom.Show("套系返现每次消费返现比例之和必须等于100%"); return; }
List clist = new List();
LYFZ.Model.Model_ErpSystemConfigure model = bll.GetModel("Sconfig_Code", "Proportion");
model.Sconfig_Value = this.txtCardsNo.Text.Trim() + "|" + Serial;
clist.Add(bll.GetUpdateCommandInfo(model));
LYFZ.Model.Model_ErpSystemConfigure model2 = bll.GetModel("Sconfig_Code", "BackCashCoefficient");
model2.Sconfig_Value = this.txtBackCashCoefficient.Text.Trim();
clist.Add(bll.GetUpdateCommandInfo(model2));
if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) <= 0)
{ MessageBoxCustom.Show("保存失败"); return; }
MessageBoxCustom.Show("保存成功"); this.Close();
}
}
///
/// 返现系数限制输入
///
///
///
void txtBackCashCoefficient_KeyPress(object sender, KeyPressEventArgs e)
{
if (Convert.ToString(e.KeyChar) == ".")
{ }
else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
{ e.Handled = true; }
if (this.txtBackCashCoefficient.Text.Trim().Length >= 3 && Convert.ToInt32(e.KeyChar) != 8)
{ e.Handled = true; }
}
///
/// 取消
///
///
///
protected override void btnCancel_Click(object sender, EventArgs e)
{ this.Close(); }
}
}