private void RaiseItemSelectedEventHander(DIC_GROUP_RATE item) { if (this.ItemSelected != null) { this.ItemSelected(this, item); } }
protected override string uc_Update() { string str; if (MyRule.Get(MyLogin.RoleId, "bbiJob") != "OK") { str = ""; } else if (MyRule.AllowEdit) { // SYS_LOG.Insert("Nhóm Tiêu Chí", "Cập Nhật", this.txtID.Text); base.SetWaitDialogCaption("Đang cập nhật dữ liệu..."); DIC_GROUP_RATE dICGROUPRATE = new DIC_GROUP_RATE(this.txtID.Text, this.txtNAME.Text, this.txtDescription.Text, this.chxUse.Checked); string str1 = dICGROUPRATE.Update(); if (str1 == "OK") { this.RaiseSuccessEventHander(dICGROUPRATE); } if (str1 != "OK") { XtraMessageBox.Show(str1, "Cảnh Báo", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } this.DoHide(); str = str1; } else { MyRule.Notify(); str = ""; } return(str); }
public override void Change() { if (!(MyRule.Get(MyLogin.RoleId, "bbiJob") != "OK")) { if (MyRule.AllowAccess) { DIC_GROUP_RATE dICGROUPRATE = new DIC_GROUP_RATE(); object cellValue = base.GetCellValue(this.m_RowClickEventArgs.RowIndex, "GroupRateCode"); if (cellValue != null) { base.SetWaitDialogCaption("Đang kiểm tra dữ liệu...."); if (!(dICGROUPRATE.Get(cellValue.ToString()) != "OK")) { this.DoHide(); xfmGroupRateAdd _xfmGroupRateAdd = new xfmGroupRateAdd(Actions.Update, dICGROUPRATE); _xfmGroupRateAdd.Updated += new xfmGroupRateAdd.UpdatedEventHander(this.frm_Updated); _xfmGroupRateAdd.Added += new xfmGroupRateAdd.AddedEventHander(this.frm_Added); _xfmGroupRateAdd.ShowDialog(); } else { this.DoHide(); XtraMessageBox.Show("Dữ liệu không tồn tại", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } } else { MyRule.Notify(); } } }
public void RaiseUpdatedEventHander(DIC_GROUP_RATE Item) { if (this.Updated != null) { this.Updated(this, Item); } }
private void RaiseSuccessEventHander(DIC_GROUP_RATE item) { if (this.Success != null) { this.Success(this, item); } }
protected override void Add() { base.Add(); DIC_GROUP_RATE dICGROUPRATE = new DIC_GROUP_RATE(); this.txtID.Text = dICGROUPRATE.NewID(); this.txtNAME.Focus(); }
public xfmGroupRateAdd(Actions Action) { this.InitializeComponent(); this.Init(); this.ucAdd.Status = Action; DIC_GROUP_RATE dICGROUPRATE = new DIC_GROUP_RATE(); this.ucAdd.SetData(dICGROUPRATE.NewID()); this.Text = "Thêm"; }
private void UpdateRow(DIC_GROUP_RATE item, RowClickEventArgs e) { AdvBandedGridView advBandedGridView = this.gbList; int rowIndex = e.RowIndex; advBandedGridView.SetRowCellValue(rowIndex, "Active", item.Active); advBandedGridView.SetRowCellValue(rowIndex, "GroupRateCode", item.GroupRateCode); advBandedGridView.SetRowCellValue(rowIndex, "GroupRateName", item.GroupRateName); advBandedGridView.SetRowCellValue(rowIndex, "Description", item.Description); advBandedGridView.UpdateCurrentRow(); }
public void SetData(DIC_GROUP_RATE item) { this.txtID.Text = item.GroupRateCode; // SYS_LOG.Insert("Nhóm Tiêu Chí", "Xem", this.txtID.Text); if (this.m_Status == Actions.Update) { this.txtID.Properties.ReadOnly = true; } this.txtNAME.Text = item.GroupRateName; this.txtDescription.Text = item.Description; this.chxUse.Checked = item.Active; }
private void AddRow(DIC_GROUP_RATE Item) { AdvBandedGridView advBandedGridView = this.gbList; int focusedRowHandle = advBandedGridView.FocusedRowHandle; advBandedGridView.AddNewRow(); focusedRowHandle = advBandedGridView.FocusedRowHandle; advBandedGridView.SetRowCellValue(focusedRowHandle, "Active", Item.Active); advBandedGridView.SetRowCellValue(focusedRowHandle, "GroupRateCode", Item.GroupRateCode); advBandedGridView.SetRowCellValue(focusedRowHandle, "GroupRateName", Item.GroupRateName); advBandedGridView.SetRowCellValue(focusedRowHandle, "Description", Item.Description); advBandedGridView.UpdateCurrentRow(); }
protected override string uc_Delete() { DIC_GROUP_RATE dICGROUPRATE = new DIC_GROUP_RATE() { GroupRateCode = this.txtID.Text }; string str = dICGROUPRATE.Delete(); if (str == "OK") { this.RaiseSuccessEventHander(dICGROUPRATE); } return(str); }
public xfmGroupRateAdd(Actions Action, DIC_GROUP_RATE Item) { this.InitializeComponent(); this.Init(); this.ucAdd.Status = Action; if (Action == Actions.Update) { this.ucAdd.SetData(Item); this.Text = "Cập nhật"; } else if (Action == Actions.Delete) { this.ucAdd.SetData(Item.GroupRateCode); } }
private void ucAdd_Success(object sender, DIC_GROUP_RATE Item) { if (this.ucAdd.Status == Actions.Add) { this.RaiseAddedEventHander(Item); } else if (this.ucAdd.Status == Actions.Update) { this.RaiseUpdatedEventHander(Item); } if (this.ucAdd.IsClose == CloseOrNew.Close) { base.Close(); } this.ucAdd.Clear(); }
protected override void txtID_KeyDown(object sender, KeyEventArgs e) { TextEdit textEdit = (TextEdit)sender; if (e.KeyCode == Keys.Return | e.KeyCode == Keys.Tab) { DIC_GROUP_RATE dICGROUPRATE = new DIC_GROUP_RATE(); if (this.m_Status == Actions.Add) { if (dICGROUPRATE.Exist(textEdit.Text)) { this.Err.SetError(textEdit, "Mã đã tồn tại."); textEdit.Focus(); } } } }
public override void ReLoad() { base.SetWaitDialogCaption("Đang nạp dữ liệu..."); DIC_GROUP_RATE dICGROUPRATE = new DIC_GROUP_RATE(); this.gcList.DataSource = dICGROUPRATE.GetList(); base.SetWaitDialogCaption("Đang nạp cấu hình..."); this.List_Init(this.gbList); base.SetWaitDialogCaption("Nạp quyền sử dụng..."); MyRule.Get(MyLogin.RoleId, "bbiJob"); if (!MyRule.AllowPrint) { this.ucToolBar.bbiPrint.Visibility = BarItemVisibility.Never; } MyRule.Get(MyLogin.RoleId, "bbiJob"); if (!MyRule.AllowExport) { this.ucToolBar.bbiExport.Visibility = BarItemVisibility.Never; } MyRule.Get(MyLogin.RoleId, "bbiJob"); if (!MyRule.AllowAdd) { this.ucToolBar.bbiAdd.Visibility = BarItemVisibility.Never; } MyRule.Get(MyLogin.RoleId, "bbiJob"); if (!MyRule.AllowDelete) { this.ucToolBar.bbiDelete.Visibility = BarItemVisibility.Never; } MyRule.Get(MyLogin.RoleId, "bbiJob"); if (!MyRule.AllowEdit) { this.ucToolBar.bbiEdit.Visibility = BarItemVisibility.Never; } base.SetWaitDialogCaption("Đã xong..."); this.DoHide(); }
private void frm_Added(object sender, DIC_GROUP_RATE e) { this.AddRow(e); }
public override void Delete() { object cellValue; if (!(MyRule.Get(MyLogin.RoleId, "bbiJob") != "OK")) { if (MyRule.AllowDelete) { if (ClsOption.System2.IsQuestion) { if (XtraMessageBox.Show("Bạn có muốn xóa không?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) { return; } } base.SetWaitDialogCaption("Đang xóa..."); string str = ""; bool flag = false; AdvBandedGridView advBandedGridView = this.gbList; int[] selectedRows = advBandedGridView.GetSelectedRows(); DIC_GROUP_RATE dICGROUPRATE = new DIC_GROUP_RATE(); for (int i = (int)selectedRows.Length; i > 0; i--) { flag = true; cellValue = base.GetCellValue(selectedRows[i - 1], "GroupRateCode"); if (cellValue != null) { // SYS_LOG.Insert("Nhóm Tiêu Chí", "Xoá", cellValue.ToString()); str = dICGROUPRATE.Delete(cellValue.ToString()); if (str == "OK") { advBandedGridView.DeleteRow(selectedRows[i - 1]); } else if (str != "OK") { MessageBox.Show(string.Concat("Thông tin không được xóa\n", str), "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Hand); } } } this.DoHide(); if (!flag) { if (advBandedGridView.DataSource != null) { RowClickEventArgs rowClickEventArg = new RowClickEventArgs((advBandedGridView == null ? -1 : advBandedGridView.FocusedRowHandle), (advBandedGridView.FocusedColumn == null ? -1 : advBandedGridView.FocusedColumn.ColumnHandle), (advBandedGridView.FocusedColumn == null ? "" : advBandedGridView.FocusedColumn.FieldName)); this.m_RowClickEventArgs = rowClickEventArg; cellValue = null; cellValue = base.GetCellValue(rowClickEventArg.RowIndex, "GroupRateCode"); if (cellValue != null) { // SYS_LOG.Insert("Nhóm Tiêu Chí", "Xoá", cellValue.ToString()); base.SetWaitDialogCaption("Đang xóa..."); str = dICGROUPRATE.Delete(cellValue.ToString()); if (str == "OK") { advBandedGridView.DeleteRow(rowClickEventArg.RowIndex); } else if (str != "OK") { MessageBox.Show(string.Concat("Thông tin không được xóa\n", str), "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Hand); } this.DoHide(); } } } } else { MyRule.Notify(); } } }
private void frm_Updated(object sender, DIC_GROUP_RATE Item) { this.UpdateRow(Item, this.m_RowClickEventArgs); }