/// <summary> /// 更新数据 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnUpdate_Click(object sender, EventArgs e) { try { Log.Info(this.GetType() + "->" + ApplicationCommon.GetMethodName() + "---START"); //判断必须输入项 if (string.IsNullOrEmpty(txtOriginalPass.Text)) { XtraMessageBox.Show("请输入代码!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } //判断密码 if (string.IsNullOrEmpty(txtPasswrod.Text) || string.IsNullOrEmpty(txtRepeatPassword.Text)) { XtraMessageBox.Show("请输入新密码并重复!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } if (txtPasswrod.Text != txtRepeatPassword.Text) { XtraMessageBox.Show("两次输入的密码必须一致!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } //get original user info ModelSYSTEM_USER originalmodelXtuser = _bllSystemUser.GetModel(AppGlobal.GUserId); if (txtOriginalPass.Text != Util.DBUtility.DESEncrypt.Decrypt(originalmodelXtuser.F_PASSWORD)) { XtraMessageBox.Show("原密码输入错误!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } //创建操作类 ModelSYSTEM_USER model = new ModelSYSTEM_USER(); //登录名 model.F_USER_ID = AppGlobal.GUserId; //密码 model.F_PASSWORD = Util.DBUtility.DESEncrypt.Encrypt(txtPasswrod.Text); //创建时间 DateTime optDateTime = DateTime.Now; //操作员 model.F_OPERATOR_ID = AppGlobal.GUserId; //操作时间 model.F_OPERATIONTIME = optDateTime; //是否删除 model.F_DEL = 0; //判断是否已经有此数据 if (_bllSystemUser.Exists(model.F_USER_ID)) { //保存数据 _bllSystemUser.ChagePassword(model); //提示信息 XtraMessageBox.Show("用户数据已更新!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { XtraMessageBox.Show("此用户不存在!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); } } catch (Exception ex) { Log.Error(this.GetType() + "->" + ApplicationCommon.GetMethodName() + "---FAILED", ex); throw ex; } }
/// <summary> /// 更新数据 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnUpdate_Click(object sender, EventArgs e) { try { Log.Info(GetType() + "->" + ApplicationCommon.GetMethodName() + "---START"); //检查必填字段 bool isAllOk = CheckNotNullField(); if (!isAllOk) { return; } //准备要存储的数据 ModelSYSTEM_USER modelSystemUser = PrepareModelSystemUser(); //判断此数据是否已经存在 bool isDataExist = _bllSystemUser.Exists(modelSystemUser.F_USER_ID); if (isDataExist) { //已经存在判断是否更新 DialogResult dialogResult = XtraMessageBox.Show("当前数据已存在,是否更新?", "选择", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (dialogResult == DialogResult.No) { return; } //更新数据 bool status = _bllSystemUser.Update(modelSystemUser); //获得当前rowhandle int rowhandle = gvList.FocusedRowHandle; //绑定数据 BindGridview(); //设置焦点行 gvList.FocusedRowHandle = rowhandle; if (status) { XtraMessageBox.Show("此数据已更新。", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { XtraMessageBox.Show("没有数据被更新,操作中断。", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } else { _bllSystemUser.Add(modelSystemUser); //获得当前rowhandle int rowhandle = gvList.FocusedRowHandle; //绑定数据 BindGridview(); //设置焦点行 gvList.FocusedRowHandle = rowhandle + 1; XtraMessageBox.Show("此数据已增加。", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); } } catch (Exception ex) { Log.Error(GetType() + "->" + ApplicationCommon.GetMethodName() + "---FAILED", ex); throw ex; } }