123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- 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.InitialSet.WageSet
- {
- public partial class FrmPhaseCommissionScheme : LYFZ.Software.UI.InitialSet.WageSet.FrmPhaseCommissionScheme
- {
- public string Wcs_TypeName;
- public string Wcs_TypeCode;
- public string Wcs_Type;
- public FrmPhaseCommissionScheme()
- {
- }
- #region 加载
- protected override void FrmPhaseCommissionScheme_Load(object sender, EventArgs e)
- {
-
- try
- {
- if (!string.IsNullOrEmpty(Wcs_TypeName))
- {
- this.Text = "阶梯提成方案-" + Wcs_TypeName;
- bind();
- }
- }
- catch (Exception ex)
- {
- MessageBoxCustom.Show(ex.Message);
- }
- }
- public void bind()
- {
- dgv.Rows.Clear();
- LYFZ.BLL.BLL_ErpWageCommissionSet bll = new BLL.BLL_ErpWageCommissionSet();
- DataTable dt = bll.GetList("Wcs_TypeCode='" + Wcs_TypeCode + "'", "ID asc").Tables[0];
- if (dt.Rows.Count > 0)
- {
- Boolean Wcs_PerformanceHight = Convert.ToBoolean(dt.Rows[0]["Wcs_PerformanceHight"]);
- if (Wcs_PerformanceHight == true)
- {
- chkWcs_PerformanceHight.Checked = true;
- }
- else { chkWcs_PerformanceHight.Checked = false; }
- for (int t = 0; t < dt.Rows.Count; t++)
- {
- DataGridViewRow dgvr = new DataGridViewRow();
- DataGridViewCell cell = null;
-
- cell = new DataGridViewTextBoxCell();
- cell.Value = dt.Rows[t]["Wcs_TypeCode"].ToString().Trim();
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = Convert.ToInt32(dt.Rows[t]["Wcs_PerformanceBeginValue"]) + "-" + Convert.ToInt32(dt.Rows[t]["Wcs_PerformanceEndValue"]) + " 提:" + Convert.ToDecimal(dt.Rows[t]["Wcs_Percentage"]) + "%"; ;
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = dt.Rows[t]["Wcs_PerformanceBeginValue"].ToString().Trim();
- dgvr.Cells.Add(cell);
- this.dgv.Rows.Add(dgvr);
- }
- dgv.ClearSelection();
- }
- }
- #endregion
- #region 输入框设置
- protected override void txtWcs_PerformanceBeginValue_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
- {
- e.Handled = true;
- }
- }
- protected override void txtWcs_PerformanceEndValue_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
- {
- e.Handled = true;
- }
- }
- protected override void txtWcs_Percentage_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
- {
- e.Handled = true; //获取或设置一个值,指示是否处理过System.Windows.Forms.Control.KeyPress事件
- }
- else if (Char.IsPunctuation(e.KeyChar))
- {
- if (e.KeyChar == '.')
- {
- if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1)
- {
- e.Handled = true;
- }
- }
- else
- {
- e.Handled = true;
- }
- }
- }
- protected override void txtValue_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
- {
- e.Handled = true; //获取或设置一个值,指示是否处理过System.Windows.Forms.Control.KeyPress事件
- }
- else if (Char.IsPunctuation(e.KeyChar))
- {
- if (e.KeyChar == '.')
- {
- if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1)
- {
- e.Handled = true;
- }
- }
- else
- {
- e.Handled = true;
- }
- }
- }
- #endregion
- #region 添加到规则列表
- protected override void btnAdd_Click(object sender, EventArgs e)
- {
- try
- {
- if (string.IsNullOrEmpty(txtWcs_PerformanceBeginValue.Text) || string.IsNullOrEmpty(txtWcs_PerformanceEndValue.Text) || string.IsNullOrEmpty(txtWcs_Percentage.Text))
- {
- MessageBoxCustom.Show("请输入数字!");
- return;
- }
- if (txtWcs_PerformanceBeginValue.Text.Length >= 11)
- {
- string Wcs_PerformanceBeginValue = txtWcs_PerformanceBeginValue.Text;
- txtWcs_PerformanceBeginValue.Text = Wcs_PerformanceBeginValue.Substring(0, 10);
- }
- if (txtWcs_PerformanceEndValue.Text.Length >= 11)
- {
- string Wcs_PerformanceEndValue = txtWcs_PerformanceEndValue.Text;
- txtWcs_PerformanceEndValue.Text = Wcs_PerformanceEndValue.Substring(0, 10);
- }
- DataTable dt = new DataTable();
- LYFZ.BLL.BLL_ErpWageCommissionSet bll = new BLL.BLL_ErpWageCommissionSet();
- LYFZ.Model.Model_ErpWageCommissionSet model = new Model.Model_ErpWageCommissionSet();
- dt = bll.GetList("Wcs_TypeCode='" + Wcs_TypeCode + "'", "ID asc").Tables[0];
- if (dt.Rows.Count <= 0)
- {
- if (Convert.ToInt32(txtWcs_PerformanceBeginValue.Text) != 0)
- {
- MessageBoxCustom.Show("业绩范围出错!");
- return;
- }
- if (Convert.ToInt32(txtWcs_PerformanceEndValue.Text) == 0)
- {
- MessageBoxCustom.Show("业绩范围出错!");
- return;
- }
- }
- else
- {
- //判断是否合法范围
- for (int i = 0; i < dt.Rows.Count; i++)
- {
- int Range = Convert.ToInt32(dt.Rows[i]["Wcs_PerformanceEndValue"]);
- if (Convert.ToInt32(txtWcs_PerformanceBeginValue.Text) <= Range)
- {
- MessageBoxCustom.Show("起始业绩已包含在已有的规则中");
- return;
- }
- if (Convert.ToInt32(txtWcs_PerformanceEndValue.Text) <= Range)
- {
- MessageBoxCustom.Show("终止业绩已包含在已有的规则中");
- return;
- }
- }
- dt = bll.MaxValue("Wcs_PerformanceEndValue", "Wcs_TypeCode='" + Wcs_TypeCode + "'").Tables[0];
- int RangeOne = Convert.ToInt32(dt.Rows[0]["value"]) + 1;
- if (Convert.ToInt32(txtWcs_PerformanceBeginValue.Text) != RangeOne)
- {
- MessageBoxCustom.Show("业绩段不连续,起始业绩应比上一规则段终止业绩大1");
- return;
- }
- }
- #region 增加
- if (Wcs_Type == "提成点")
- {
- model.Wcs_Type = "提成点";
- }
- if (Wcs_Type == "后期方案")
- {
- model.Wcs_Type = "后期方案";
- }
- model.Wcs_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
- model.Wcs_TypeCode = Wcs_TypeCode;
- model.Wcs_PerformanceBeginValue = Convert.ToInt32(txtWcs_PerformanceBeginValue.Text);
- model.Wcs_PerformanceEndValue = Convert.ToInt32(txtWcs_PerformanceEndValue.Text);
- model.Wcs_Percentage = Convert.ToDecimal(txtWcs_Percentage.Text);
- model.Wcs_PerformanceHight = false;
- // model.Wcs_Rule = ""; Convert.ToInt32(model.Wcs_PerformanceBeginValue) + "-" + Convert.ToInt32(model.Wcs_PerformanceEndValue) + " 提:" + Convert.ToDecimal(model.Wcs_Percentage)+"%";
- model.Wcs_CreateTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
- bll.Add(model);
- bind();
- #endregion
- }
- catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
- }
- #endregion
- #region 删除
- protected override void btnDelete_Click(object sender, EventArgs e)
- {
- try
- {
- if (this.dgv.Rows.Count > 0)
- {
- if (dgv.SelectedRows.Count == 0)
- {
- MessageBoxCustom.Show("请选择你要删除的数据!");
- return;
- }
- if(dgv.CurrentRow.Index!= dgv.Rows.Count-1)
- {
- MessageBoxCustom.Show("此条规则不能删除,请删除最后一条(从后往前删)!");
- return;
- }
- if (MessageBoxCustom.Show("你确定要删除此规则吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
- {
- LYFZ.BLL.BLL_ErpWageCommissionSet bllwage = new BLL.BLL_ErpWageCommissionSet();
- bllwage.DeleteWageCommissionSet("Wcs_TypeCode='" + Wcs_TypeCode + "' and Wcs_PerformanceBeginValue='" + dgv.CurrentRow.Cells["Wcs_PerformanceBeginValue"].Value + "'");
- MessageBoxCustom.Show("删除成功!");
- bind();
- }
- }
- }
- catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
- }
- #endregion
- #region 业绩超出部分才按高提成
- protected override void chkWcs_PerformanceHight_Click(object sender, EventArgs e)
- {
- try
- {
- if (chkWcs_PerformanceHight.Checked)
- {
- LYFZ.BLL.BLL_ErpWageCommissionSet bll = new BLL.BLL_ErpWageCommissionSet();
- bll.UpdateWageCommissionSet(1, "Wcs_TypeCode='" + Wcs_TypeCode + "'");
- bind();
- }
- else
- {
- LYFZ.BLL.BLL_ErpWageCommissionSet bll = new BLL.BLL_ErpWageCommissionSet();
- bll.UpdateWageCommissionSet(0, "Wcs_TypeCode='" + Wcs_TypeCode + "'");
- bind();
- }
- }
- catch (Exception ex)
- {
- MessageBoxCustom.Show(ex.Message);
- }
- }
- #endregion
- #region 规则试算
- protected override void btnResults_Click(object sender, EventArgs e)
- {
- try
- {
- if (dgv.Rows.Count == 0)
- {
- MessageBoxCustom.Show("请设置规则!");
- return;
- }
- if (string.IsNullOrEmpty(txtValue.Text))
- {
- MessageBoxCustom.Show("请输入数字!");
- return;
- }
- if (txtValue.Text.Length >= 11)
- {
- string Value = txtValue.Text;
- txtValue.Text = Value.Substring(0, 10);
- }
- LYFZ.BLL.BLL_ErpWageCommissionSet bll = new BLL.BLL_ErpWageCommissionSet();
- txtResults.Text = bll.GetCommissionSpecifications(Wcs_TypeCode, Convert.ToDecimal(txtValue.Text)).ToString("N2");
- }
- catch (Exception ex)
- {
- MessageBoxCustom.Show(ex.Message);
- }
- }
-
- #endregion
- }
- }
|