123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- 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;
- }
- /// <summary>
- /// 是否保存
- /// </summary>
- public bool IsSaveed = false;
- public string StrValue = "";
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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"; }
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnOK_Click(object sender, EventArgs e)
- {
- DateTime strTime = SDateTime.Now;
- LYFZ.Model.Model_ErpSystemConfigure model = null;
- List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
- 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; }
- }
- /// <summary>
- /// 关闭
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnClose_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- /// <summary>
- /// 输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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; }
- }
- }
- }
- }
|