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.StatisticsForm { public partial class ServiceItemCountSetForm : LYFZ.Software.UI.MembershipManage.StatisticsForm.ServiceItemCountSetForm { LYFZ.BLL.BLL_ErpSystemConfigure bll = new BLL.BLL_ErpSystemConfigure(); public ServiceItemCountSetForm() { this.Load += ServiceItemCountSetForm_Load; this.btnOK.Click += btnOK_Click; this.btnClose.Click += btnClose_Click; this.txtServiceItemCount.KeyPress += txtServiceItemCount_KeyPress; } /// /// 是否保存 /// public bool IsSaveed = false; public string StrValue = ""; /// /// 窗体加载事件 /// /// /// void ServiceItemCountSetForm_Load(object sender, EventArgs e) { DataTable tbl = bll.GetList("Sconfig_Code in ('MemberServiceItemCount')").Tables[0]; if (tbl.Rows.Count > 0) { this.txtServiceItemCount.Text = tbl.Rows[0]["Sconfig_Value"].ToString().Trim(); this.txtServiceItemCount.Tag = tbl.Rows[0]["ID"].ToString().Trim(); } else { this.txtServiceItemCount.Text = "0"; } } /// /// 确定 /// /// /// void btnOK_Click(object sender, EventArgs e) { DateTime strTime = SDateTime.Now; LYFZ.Model.Model_ErpSystemConfigure model = null; List clist = new List(); string strUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID; #region 服务卡服务项次数次提醒 if (this.txtServiceItemCount.Tag != null) { model = bll.GetModel("Sconfig_Code", "MemberServiceItemCount"); if (model.Sconfig_Value.Trim() != Convert.ToInt32(this.txtServiceItemCount.Text.Trim()).ToString()) { model.Sconfig_Name = "服务卡服务项次数次提醒"; model.Sconfig_Value = Convert.ToInt32(this.txtServiceItemCount.Text.Trim()).ToString(); model.Sconfig_Remark = "服务项次数低于N次提醒"; model.Sconfig_CreateDatetime = strTime; model.Sconfig_CreateName = strUserID; clist.Add(bll.GetUpdateCommandInfo(model)); } } else { model = new Model.Model_ErpSystemConfigure(); model.Sconfig_Code = "MemberServiceItemCount"; model.Sconfig_Name = "服务卡服务项次数次提醒"; model.Sconfig_Value = Convert.ToInt32(this.txtServiceItemCount.Text.Trim()).ToString(); model.Sconfig_IsEnabled = true; model.Sconfig_Remark = "服务项次数低于N次提醒"; model.Sconfig_Type = ""; model.Sconfig_Order = 1; model.Sconfig_CreateDatetime = strTime; model.Sconfig_CreateName = strUserID; clist.Add(bll.GetAddCommandInfo(model)); } #endregion if (clist.Count > 0) { if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) <= 0) { MessageBoxCustom.Show("保存失败"); return; } this.IsSaveed = true; this.StrValue = this.txtServiceItemCount.Text.Trim(); MessageBoxCustom.Show("保存成功"); this.Close(); } else { MessageBoxCustom.Show("没做任何修改,无须保存!"); return; } } /// /// 关闭 /// /// /// void btnClose_Click(object sender, EventArgs e) { this.Close(); } /// /// 输入限制 /// /// /// void txtServiceItemCount_KeyPress(object sender, KeyPressEventArgs e) { //bool IsFind = false; //IsFind = true; //if (Convert.ToString(e.KeyChar) == "-") //{ // if (this.txtServiceItemCount.BaseText.SelectedText.Trim() == this.txtServiceItemCount.Text.Trim()) // { this.txtServiceItemCount.Text = ""; } // if (this.txtServiceItemCount.Text.Trim().IndexOf('-') != -1) // { e.Handled = true; } // if (this.txtServiceItemCount.Text.Trim().Length > 0) // { e.Handled = true; } //} //else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar)) //{ e.Handled = true; } //else //{ // if (!string.IsNullOrEmpty(this.txtServiceItemCount.Text.Trim())) // { // char[] chr = this.txtServiceItemCount.Text.Trim().ToArray(); // if (chr[0].ToString().Trim() == "-") // { // if (Char.IsNumber(e.KeyChar)) // { // if (Convert.ToInt32(e.KeyChar.ToString().Trim()) != 1) // { e.Handled = true; } // } // } // } //} //if (!IsFind) { if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar)) { e.Handled = true; } } } } }