예제 #1
0
 public void RaiseUpdatedEventHander(DIC_RELATIVE Item)
 {
     if (this.Updated != null)
     {
         this.Updated(this, Item);
     }
 }
예제 #2
0
 public override void Change()
 {
     if (!(MyRule.Get(MyLogin.RoleId, "bbiRelative") != "OK"))
     {
         if (MyRule.AllowAccess)
         {
             DIC_RELATIVE dICRELATIVE = new DIC_RELATIVE();
             object       cellValue   = base.GetCellValue(this.m_RowClickEventArgs.RowIndex, "RelativeCode");
             if (cellValue != null)
             {
                 base.SetWaitDialogCaption("Đang kiểm tra dữ liệu....");
                 if (!(dICRELATIVE.Get(cellValue.ToString()) != "OK"))
                 {
                     this.DoHide();
                     xfmRelativeAdd _xfmRelativeAdd = new xfmRelativeAdd(Actions.Update, dICRELATIVE);
                     _xfmRelativeAdd.Updated += new xfmRelativeAdd.UpdatedEventHander(this.frm_Updated);
                     _xfmRelativeAdd.Added   += new xfmRelativeAdd.AddedEventHander(this.frm_Added);
                     _xfmRelativeAdd.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();
         }
     }
 }
예제 #3
0
 private void RaiseSuccessEventHander(DIC_RELATIVE item)
 {
     if (this.Success != null)
     {
         this.Success(this, item);
     }
 }
예제 #4
0
 private void RaiseItemSelectedEventHander(DIC_RELATIVE item)
 {
     if (this.ItemSelected != null)
     {
         this.ItemSelected(this, item);
     }
 }
예제 #5
0
        protected override void Add()
        {
            base.Add();
            DIC_RELATIVE dICRELATIVE = new DIC_RELATIVE();

            this.txtID.Text = dICRELATIVE.NewID();
            this.txtNAME.Focus();
        }
예제 #6
0
        public xfmRelativeAdd(Actions Action)
        {
            this.InitializeComponent();
            this.Init();
            this.ucAdd.Status = Action;
            DIC_RELATIVE dICRELATIVE = new DIC_RELATIVE();

            this.ucAdd.SetData(dICRELATIVE.NewID());
            this.Text = "Thêm";
        }
예제 #7
0
        private void UpdateRow(DIC_RELATIVE item, RowClickEventArgs e)
        {
            AdvBandedGridView advBandedGridView = this.gbList;
            int rowIndex = e.RowIndex;

            advBandedGridView.SetRowCellValue(rowIndex, "Active", item.Active);
            advBandedGridView.SetRowCellValue(rowIndex, "RelativeCode", item.RelativeCode);
            advBandedGridView.SetRowCellValue(rowIndex, "RelativeName", item.RelativeName);
            advBandedGridView.SetRowCellValue(rowIndex, "Description", item.Description);
            advBandedGridView.UpdateCurrentRow();
        }
예제 #8
0
 public void SetData(DIC_RELATIVE item)
 {
     this.txtID.Text = item.RelativeCode;
     //   SYS_LOG.Insert("Danh Mục Mối Quan Hệ Gia Đình", "Xem", this.txtID.Text);
     if (this.m_Status == Actions.Update)
     {
         this.txtID.Properties.ReadOnly = true;
     }
     this.txtNAME.Text        = item.RelativeName;
     this.txtDescription.Text = item.Description;
     this.chxUse.Checked      = item.Active;
 }
예제 #9
0
        private void AddRow(DIC_RELATIVE Item)
        {
            AdvBandedGridView advBandedGridView = this.gbList;
            int focusedRowHandle = advBandedGridView.FocusedRowHandle;

            advBandedGridView.AddNewRow();
            focusedRowHandle = advBandedGridView.FocusedRowHandle;
            advBandedGridView.SetRowCellValue(focusedRowHandle, "Active", Item.Active);
            advBandedGridView.SetRowCellValue(focusedRowHandle, "RelativeCode", Item.RelativeCode);
            advBandedGridView.SetRowCellValue(focusedRowHandle, "RelativeName", Item.RelativeName);
            advBandedGridView.SetRowCellValue(focusedRowHandle, "Description", Item.Description);
            advBandedGridView.UpdateCurrentRow();
        }
예제 #10
0
        protected override string uc_Delete()
        {
            DIC_RELATIVE dICRELATIVE = new DIC_RELATIVE()
            {
                RelativeCode = this.txtID.Text
            };
            string str = dICRELATIVE.Delete();

            if (str == "OK")
            {
                this.RaiseSuccessEventHander(dICRELATIVE);
            }
            return(str);
        }
예제 #11
0
 public xfmRelativeAdd(Actions Action, DIC_RELATIVE 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.RelativeCode);
     }
 }
예제 #12
0
 private void ucAdd_Success(object sender, DIC_RELATIVE 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();
 }
예제 #13
0
        protected override void txtID_KeyDown(object sender, KeyEventArgs e)
        {
            TextEdit textEdit = (TextEdit)sender;

            if (e.KeyCode == Keys.Return | e.KeyCode == Keys.Tab)
            {
                DIC_RELATIVE dICRELATIVE = new DIC_RELATIVE();
                if (this.m_Status == Actions.Add)
                {
                    if (dICRELATIVE.Exist(textEdit.Text))
                    {
                        this.Err.SetError(textEdit, "Mã đã tồn tại.");
                        textEdit.Focus();
                    }
                }
            }
        }
예제 #14
0
        protected override string uc_Update()
        {
            //  SYS_LOG.Insert("Danh Mục Mối Quan Hệ Gia Đình", "Cập Nhật", this.txtID.Text);
            base.SetWaitDialogCaption("Đang cập nhật dữ liệu...");
            DIC_RELATIVE dICRELATIVE = new DIC_RELATIVE(this.txtID.Text, this.txtNAME.Text, this.txtDescription.Text, this.chxUse.Checked);
            string       str         = dICRELATIVE.Update();

            if (str == "OK")
            {
                this.RaiseSuccessEventHander(dICRELATIVE);
            }
            if (str != "OK")
            {
                XtraMessageBox.Show(str, "Cảnh Báo", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
            this.DoHide();
            return(str);
        }
예제 #15
0
        protected override string uc_Save()
        {
            //  SYS_LOG.Insert("Danh Mục Mối Quan Hệ Gia Đình", "Thêm", this.txtID.Text);
            base.SetWaitDialogCaption("Đang lưu dữ liệu...");
            Cursor.Current = Cursors.WaitCursor;
            DIC_RELATIVE dICRELATIVE = new DIC_RELATIVE(this.txtID.Text, this.txtNAME.Text, this.txtDescription.Text, this.chxUse.Checked);
            string       str         = dICRELATIVE.Insert();

            if (str == "OK")
            {
                this.RaiseSuccessEventHander(dICRELATIVE);
            }
            Cursor.Current = Cursors.Default;
            this.DoHide();
            if (str != "OK")
            {
                XtraMessageBox.Show(str, "Cảnh Báo", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
            return(str);
        }
예제 #16
0
        public override void ReLoad()
        {
            base.SetWaitDialogCaption("Đang nạp dữ liệu...");
            DIC_RELATIVE dICRELATIVE = new DIC_RELATIVE();

            this.gcList.DataSource = dICRELATIVE.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, "bbiRelative");
            if (!MyRule.AllowPrint)
            {
                this.ucToolBar.bbiPrint.Visibility = BarItemVisibility.Never;
            }
            MyRule.Get(MyLogin.RoleId, "bbiRelative");
            if (!MyRule.AllowExport)
            {
                this.ucToolBar.bbiExport.Visibility = BarItemVisibility.Never;
            }
            MyRule.Get(MyLogin.RoleId, "bbiRelative");
            if (!MyRule.AllowAdd)
            {
                this.ucToolBar.bbiAdd.Visibility = BarItemVisibility.Never;
            }
            MyRule.Get(MyLogin.RoleId, "bbiRelative");
            if (!MyRule.AllowDelete)
            {
                this.ucToolBar.bbiDelete.Visibility = BarItemVisibility.Never;
            }
            MyRule.Get(MyLogin.RoleId, "bbiRelative");
            if (!MyRule.AllowEdit)
            {
                this.ucToolBar.bbiEdit.Visibility = BarItemVisibility.Never;
            }
            base.SetWaitDialogCaption("Đã xong...");
            this.DoHide();
        }
예제 #17
0
 private void frm_Added(object sender, DIC_RELATIVE e)
 {
     this.AddRow(e);
 }
예제 #18
0
        public override void Delete()
        {
            object cellValue;

            if (!(MyRule.Get(MyLogin.RoleId, "bbiRelative") != "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_RELATIVE      dICRELATIVE       = new DIC_RELATIVE();
                    for (int i = (int)selectedRows.Length; i > 0; i--)
                    {
                        flag      = true;
                        cellValue = base.GetCellValue(selectedRows[i - 1], "RelativeCode");
                        if (cellValue != null)
                        {
                            //  SYS_LOG.Insert("Danh Mục Mối Quan Hệ Gia Đình", "Xoá", cellValue.ToString());
                            str = dICRELATIVE.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, "RelativeCode");
                            if (cellValue != null)
                            {
                                //   SYS_LOG.Insert("Danh Mục Mối Quan Hệ Gia Đình", "Xoá", cellValue.ToString());
                                base.SetWaitDialogCaption("Đang xóa...");
                                str = dICRELATIVE.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();
                }
            }
        }
예제 #19
0
 private void frm_Updated(object sender, DIC_RELATIVE Item)
 {
     this.UpdateRow(Item, this.m_RowClickEventArgs);
 }