Esempio n. 1
0
 public static void InitCtrl(PLDMGrid dmGrid, bool ReadOnly)
 {
     GroupElementType type = (ReadOnly ? GroupElementType.ONLY_CHOICE : GroupElementType.CHOICE_N_ADD);
     dmGrid._init(type, TABLE_MAP, "ID", "NAME", new string[] { "ID" }, new string[] { "ID" }, InitColumn, GetRule, null, null);
     dmGrid.GetDMGrid.Grid.ValidateRow += delegate(object sender, DevExpress.XtraGrid.Views.Base.ValidateRowEventArgs e)
     {
         GridView grid=(GridView)sender;
         DataRow row = grid.GetDataRow(e.RowHandle);
         if (row == null) return;
         HelpInputData.CheckDuplicateField(grid, row.Table.DataSet, e, "NAME", nameTitle);
     };
     dmGrid.isFixPopupContainer = true;
     dmGrid.popupContainerControl1.Size = new System.Drawing.Size(450, dmGrid.popupContainerControl1.Size.Height);
     dmGrid.DefinePermission(AppDanhMuc.GetPermission(dmGrid, AppPermission.DMDienVien.featureName, string.Empty));
     HelpPermission.CheckCtrl(dmGrid);
 }
 public void InitCtrl(PLDMGrid Input, bool ReadOnly)
 {
     Input._init((ReadOnly == true ? GroupElementType.ONLY_CHOICE : GroupElementType.CHOICE_N_ADD), HelpDB.getDatabase().LoadDataSet("SELECT * FROM DM_VI_TRI_UNG_TUYEN WHERE VISIBLE_BIT='Y'", "DM_VI_TRI_UNG_TUYEN").Tables[0], "ID", "NAME",
         new string[] { "ID" }, new string[] { "ID" }, CreateDepartmentGrid, GetRuleHopDongGrid, null, null, null, null);
     if (ReadOnly)
     {
         try
         {
             ((System.Windows.Forms.ToolStrip)Input.Controls[0].Controls[0].Controls[1]).Items[4].Visible = true;// Ẩn nút sửa
             ((System.Windows.Forms.ToolStrip)Input.Controls[0].Controls[0].Controls[1]).Items[5].Visible = true;// Ẩn nút Xóa
         }
         catch (Exception)
         {
         }
     }
 }
 /// <summary>
 ///CHAUTV : Phân quyền xem dữ liệu
 /// </summary>
 /// <param name="Input"></param>
 /// <param name="featureName"></param>
 public static void ApplyPermissionData(PLDMGrid Input, string featureName)
 {
     List<Feature> features = Permission.loadAllFeatureByUser(FrameworkParams.currentUser.username);
     bool IsFull = false;
     if (features.Exists(delegate(Feature e) {
         return e.featureName.Equals(featureName) && e.isRead.Equals(true);
     }) || FrameworkParams.currentUser.username.Equals("admin"))
         IsFull = true;
     //foreach (Feature f in features)
     //{
     //    if ((f.featureName == featureName && f.isRead == true) || FrameworkParams.currentUser.username.Equals("admin"))
     //    {
     //        IsFull = true;
     //        return;
     //    }
     //}
     if (FrameworkParams.isPermision.getPublicForm().Contains(typeof(frmTimeInOutQL).FullName) == false && !IsFull)
         Input.Enabled = false;
     Input._setSelectedID(FrameworkParams.currentUser.employee_id);
 }
 public void InitCtrl(PLDMGrid Input, bool ReadOnly, bool? IsAdd)
 {
     QueryBuilder query = new QueryBuilder(string.Format("SELECT * FROM {0} WHERE 1=1", TABLE_MAP));
     if (IsAdd != null)
     {
         query.addBoolean("VISIBLE_BIT", true);
     }
     Input._init((ReadOnly == true ? GroupElementType.ONLY_CHOICE : GroupElementType.CHOICE_N_ADD), HelpDB.getDatabase().LoadDataSet(query, TABLE_MAP).Tables[0], "ID", "NAME",
         new string[] { "ID" }, new string[] { "ID" }, HelpDanhMuc.CreateDM_BASIC_V, HelpDanhMuc.GetRuleDM_BASIC, null, null, null, null);
     if (ReadOnly)
     {
         try
         {
             Input.GetDMGrid.btnUpdate.Visible = false;
             Input.GetDMGrid.btnDel.Visible = false;
         }
         catch (Exception ex)
         {
             PLException.AddException(ex);
         }
     }
 }
 public static void InitCtrlDuyet(PLDMGrid Input, bool ReadOnly, bool? IsAdd, string FeatureName)
 {
     QueryBuilder query = new QueryBuilder(@"
         SELECT e.ID,e.NAME,e.DEPARTMENT_ID FROM USER_FEATURE_REL rel, USER_CAT u, DM_NHAN_VIEN e ,FEATURE_CAT fcat
         WHERE e.ID = u.EMPLOYEE_ID AND rel.USERID=u.USERID AND fcat.ID=rel.FEATUREID AND 1=1");
     query.add("fcat.NAME", Operator.Equal, FeatureName, DbType.String);
     query.addBoolean("rel.ISREAD_BIT", true);
     if (IsAdd != null)
     {
         query.addBoolean("e.VISIBLE_BIT", true);
     }
     Input._init((ReadOnly == true ? GroupElementType.ONLY_CHOICE : GroupElementType.CHOICE_N_ADD), HelpDB.getDatabase().LoadDataSet(query, "DM_NHAN_VIEN").Tables[0], "ID", "NAME",
         new string[] { "ID" }, new string[] { "ID" }, DMNhanVienX.I.CreatePLDMGroupElementNhan_vien, DMNhanVienX.I.GetRuleDM_NHAN_VIEN, null, null, null, null);
     if (ReadOnly)
     {
         try
         {
             ((System.Windows.Forms.ToolStrip)Input.Controls[0].Controls[0].Controls[1]).Items[4].Visible = true;// Ẩn nút sửa
             ((System.Windows.Forms.ToolStrip)Input.Controls[0].Controls[0].Controls[1]).Items[5].Visible = true;// Ẩn nút Xóa
         }
         catch (Exception ex)
         {
             PLException.AddException(ex);
         }
     }
 }
Esempio n. 6
0
 public static void HelpSetID(PLDMGrid Input, long ID)
 {
     Input._setSelectedID(ID);
     System.Reflection.FieldInfo duyetInfo = Input.GetType().GetField("\a", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);
     if (duyetInfo != null) duyetInfo.SetValue(Input, ID);
 }
Esempio n. 7
0
        public static void InitCtrlBangGiaBudget(PLDMGrid dmGrid, bool readOnly)
        {
            GroupElementType type = (readOnly ? GroupElementType.ONLY_CHOICE : GroupElementType.CHOICE_N_ADD);
            const string sql = "select * from  BANG_GIA_BUDGET where (is_delete='N' or is_delete is null)";
            var ds = HelpDB.getDBService().LoadDataSet(sql);
            dmGrid._init(type, ds.Tables[0], BANG_GIA_BUDGET.BGBG_ID, BANG_GIA_BUDGET.MA_BGBG,
                         new[] { BANG_GIA_BUDGET.BGBG_ID }, new[] { BANG_GIA_BUDGET.BGBG_ID }, InitColumnBGBudget, null
                         , null, null, null, null);

            //dmGrid.GetDMGrid.Grid.ValidateRow += delegate(object sender, DevExpress.XtraGrid.Views.Base.ValidateRowEventArgs e)
            //{
            //    GridView grid = (GridView)sender;
            //    DataRow row = grid.GetDataRow(e.RowHandle);
            //    if (row == null) return;
            //    HelpInputData.CheckDuplicateField(grid, row.Table.DataSet, e, "MA_BGBG", nameTitle);
            //};
            dmGrid.isFixPopupContainer = true;
            dmGrid.popupContainerControl1.Size = new Size(450, dmGrid.popupContainerControl1.Size.Height);
            // dmGrid.DefinePermission(AppDanhMuc.GetPermission(dmGrid, AppPermission.OBangGiaBudget.featureName, string.Empty));
            // HelpPermission.CheckCtrl(dmGrid);
            dmGrid.GetDMGrid._UseAddEvent = false;
            dmGrid.GetDMGrid._UseDeleteEvent = false;
            dmGrid.GetDMGrid._UseUpdateEvent = false;
            dmGrid.GetDMGrid.btnSave.Visible = false;
            dmGrid.GetDMGrid.btnNoSave.Visible = false;
            dmGrid.GetDMGrid.btnDel.Visible = false;

            if (User.isAdmin() == false && AppPermission.FeatureBangGiaBudget.isInsert == false)
            {
                dmGrid.GetDMGrid.btnAdd.Visible = false;
            }
            else
            {

                dmGrid.GetDMGrid.btnAdd.Click += delegate
                                                     {
                                                         var frm = new frmBangGiaBudget("-2", true, dmGrid);
                                                         dmGrid.popupContainerEdit1.ClosePopup();
                                                         HelpProtocolForm.ShowDialog((XtraForm)dmGrid.FindForm(), frm);
                                                     };
            }

            if (User.isAdmin() == false && AppPermission.FeatureBangGiaBudget.isUpdate == false)
            {
                dmGrid.GetDMGrid.btnUpdate.Visible = false;
            }
            else
            {
                dmGrid.GetDMGrid.btnUpdate.Click += delegate
                                                        {
                                                            DataRow r = dmGrid.GetDMGrid.Grid.GetFocusedDataRow();
                                                            if (r == null) return;
                                                            var frm =
                                                                new frmBangGiaBudget(
                                                                    HelpNumber.ParseInt64(r[BANG_GIA_BUDGET.BGBG_ID]),
                                                                    false, dmGrid);
                                                            dmGrid.popupContainerEdit1.ClosePopup();
                                                            HelpProtocolForm.ShowDialog((XtraForm)dmGrid.FindForm(),
                                                                                        frm);
                                                        };
            }

            if (User.isAdmin() || AppPermission.FeatureBangGiaBudget.isRead)
            {

                var btnView = new ToolStripButton
                                  {
                                      ImageTransparentColor = Color.Magenta,
                                      Name = "btnView",
                                      Padding = new Padding(10, 0, 0, 0),
                                      Size = new Size(47, 22),
                                      Text = "&Xem",
                                      Image = FWImageDic.VIEW_IMAGE20
                                  };
                dmGrid.GetDMGrid.btnBar.Items.Insert(1, btnView);
                btnView.Click += delegate
                                     {
                                         DataRow r = dmGrid.GetDMGrid.Grid.GetFocusedDataRow();
                                         if (r == null) return;
                                         var frm =
                                             new frmBangGiaBudget(HelpNumber.ParseInt64(r[BANG_GIA_BUDGET.BGBG_ID]),
                                                                  null, dmGrid);
                                         dmGrid.popupContainerEdit1.ClosePopup();
                                         HelpProtocolForm.ShowDialog((XtraForm)dmGrid.FindForm(), frm);
                                     };
            }
        }
Esempio n. 8
0
        public frmBangGiaBudget(object id, bool? isAdd, PLDMGrid dmGrid)
        {
            this.dmGrid = dmGrid;

            Init(id, isAdd);
        }
Esempio n. 9
0
        public static void InitCtrl(PLDMGrid dmGrid, bool readOnly)
        {
            GroupElementType type = (readOnly ? GroupElementType.ONLY_CHOICE : GroupElementType.CHOICE_N_ADD);
            dmGrid._init(type, TABLE_MAP, "ID", "NAME", new[] { "ID" }, new[] { "ID" }, InitColumn, GetRule, null, null);
            dmGrid.GetDMGrid.Grid.ValidateRow += (sender, e) =>
                                                     {
                                                         var grid = (GridView) sender;
                                                         var row = grid.GetDataRow(e.RowHandle);
                                                         if (row == null) return;
                                                         HelpInputData.CheckDuplicateField(grid, row.Table.DataSet, e,
                                                                                           "NAME", NameTitle);
                                                     };
            dmGrid.isFixPopupContainer = true;
            dmGrid.popupContainerControl1.Size = new System.Drawing.Size(450, dmGrid.popupContainerControl1.Size.Height);

            dmGrid.DefinePermission(AppDanhMuc.GetPermission(dmGrid, AppPermission.DMDaiTruyenHinh.featureName, string.Empty));
            HelpPermission.CheckCtrl(dmGrid);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTimeInOutQL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDuyet = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemK_Duyet = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NVID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_TenNV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NgayLamViec = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_GioBatDau = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_GioKetThuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotTG_LV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_Cham_Cong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_N_Bs = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_N_BC = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NP_Nam = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NP_KL = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_Noi_Dung = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotLoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotIP_Address = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotLoaiDT_VS = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.chkVe_som = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.chkDi_tre = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.chkChuaChamCong = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.chkDaChamCong = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.PLNhanVien = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DenNgay = new DevExpress.XtraEditors.DateEdit();
     this.TuNgay = new DevExpress.XtraEditors.DateEdit();
     this.label8 = new System.Windows.Forms.PLLabel();
     this.label4 = new System.Windows.Forms.PLLabel();
     this.label1 = new System.Windows.Forms.PLLabel();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkVe_som.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDi_tre.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkChuaChamCong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDaChamCong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItemDuyet,
     this.barButtonItemK_Duyet});
     this.barManager1.MaxItemId = 37;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm"),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDuyet, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemK_Duyet),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "X&em";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem t&rước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItemDuyet
     //
     this.barButtonItemDuyet.Caption = "&Duyệt";
     this.barButtonItemDuyet.Id = 35;
     this.barButtonItemDuyet.Name = "barButtonItemDuyet";
     //
     // barButtonItemK_Duyet
     //
     this.barButtonItemK_Duyet.Caption = "&Không duyệt";
     this.barButtonItemK_Duyet.Id = 36;
     this.barButtonItemK_Duyet.Name = "barButtonItemK_Duyet";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "&Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tì&m kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điề&u kiện tìm kiếm";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đón&g";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 90);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(804, 407);
     this.splitContainerControl1.SplitterPosition = 196;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(804, 196);
     this.gridControlMaster.TabIndex = 0;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Inch);
     this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ID,
     this.Cot_NVID,
     this.Cot_TenNV,
     this.Cot_NgayLamViec,
     this.Cot_GioBatDau,
     this.Cot_GioKetThuc,
     this.CotTG_LV,
     this.Cot_Cham_Cong,
     this.Cot_N_Bs,
     this.Cot_N_BC,
     this.Cot_NP_Nam,
     this.Cot_NP_KL,
     this.Cot_Noi_Dung,
     this.CotLoai,
     this.CotIP_Address,
     this.CotLoaiDT_VS});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupCount = 2;
     this.gridViewMaster.GroupPanelText = "Thời gian làm việc của nhân viên thỏa điều kiện tìm kiếm";
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewMaster.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsSelection.MultiSelect = true;
     this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowFooter = true;
     this.gridViewMaster.OptionsView.ShowGroupedColumns = true;
     this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Cot_NgayLamViec, DevExpress.Data.ColumnSortOrder.Descending),
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Cot_TenNV, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // ID
     //
     this.ID.Caption = "ID";
     this.ID.Name = "ID";
     this.ID.Width = 23;
     //
     // Cot_NVID
     //
     this.Cot_NVID.Caption = "NV_ID";
     this.Cot_NVID.Name = "Cot_NVID";
     this.Cot_NVID.Width = 42;
     //
     // Cot_TenNV
     //
     this.Cot_TenNV.Caption = "Nhân viên";
     this.Cot_TenNV.Name = "Cot_TenNV";
     this.Cot_TenNV.Visible = true;
     this.Cot_TenNV.VisibleIndex = 0;
     this.Cot_TenNV.Width = 73;
     //
     // Cot_NgayLamViec
     //
     this.Cot_NgayLamViec.Caption = "Ngày làm việc";
     this.Cot_NgayLamViec.Name = "Cot_NgayLamViec";
     this.Cot_NgayLamViec.Visible = true;
     this.Cot_NgayLamViec.VisibleIndex = 1;
     this.Cot_NgayLamViec.Width = 91;
     //
     // Cot_GioBatDau
     //
     this.Cot_GioBatDau.Caption = "Giờ bắt đầu";
     this.Cot_GioBatDau.Name = "Cot_GioBatDau";
     this.Cot_GioBatDau.Visible = true;
     this.Cot_GioBatDau.VisibleIndex = 2;
     this.Cot_GioBatDau.Width = 67;
     //
     // Cot_GioKetThuc
     //
     this.Cot_GioKetThuc.Caption = "Giờ kết thúc";
     this.Cot_GioKetThuc.Name = "Cot_GioKetThuc";
     this.Cot_GioKetThuc.Visible = true;
     this.Cot_GioKetThuc.VisibleIndex = 3;
     this.Cot_GioKetThuc.Width = 69;
     //
     // CotTG_LV
     //
     this.CotTG_LV.Caption = "Thời gian làm việc (giờ : phút)";
     this.CotTG_LV.Name = "CotTG_LV";
     this.CotTG_LV.SummaryItem.DisplayFormat = "Thời gian: {0:#.##0}";
     this.CotTG_LV.SummaryItem.FieldName = "TG";
     this.CotTG_LV.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.CotTG_LV.Visible = true;
     this.CotTG_LV.VisibleIndex = 4;
     this.CotTG_LV.Width = 153;
     //
     // Cot_Cham_Cong
     //
     this.Cot_Cham_Cong.Caption = "Đã chấm công";
     this.Cot_Cham_Cong.Name = "Cot_Cham_Cong";
     this.Cot_Cham_Cong.Visible = true;
     this.Cot_Cham_Cong.VisibleIndex = 9;
     this.Cot_Cham_Cong.Width = 80;
     //
     // Cot_N_Bs
     //
     this.Cot_N_Bs.Caption = "Sáng (giờ : phút)";
     this.Cot_N_Bs.Name = "Cot_N_Bs";
     this.Cot_N_Bs.Visible = true;
     this.Cot_N_Bs.VisibleIndex = 5;
     this.Cot_N_Bs.Width = 59;
     //
     // Cot_N_BC
     //
     this.Cot_N_BC.Caption = "Chiều (giờ : phút)";
     this.Cot_N_BC.Name = "Cot_N_BC";
     this.Cot_N_BC.Visible = true;
     this.Cot_N_BC.VisibleIndex = 6;
     this.Cot_N_BC.Width = 61;
     //
     // Cot_NP_Nam
     //
     this.Cot_NP_Nam.Caption = "Nghỉ phép năm";
     this.Cot_NP_Nam.Name = "Cot_NP_Nam";
     this.Cot_NP_Nam.Visible = true;
     this.Cot_NP_Nam.VisibleIndex = 10;
     this.Cot_NP_Nam.Width = 83;
     //
     // Cot_NP_KL
     //
     this.Cot_NP_KL.Caption = "Nghỉ không lương";
     this.Cot_NP_KL.Name = "Cot_NP_KL";
     this.Cot_NP_KL.Visible = true;
     this.Cot_NP_KL.VisibleIndex = 11;
     this.Cot_NP_KL.Width = 95;
     //
     // Cot_Noi_Dung
     //
     this.Cot_Noi_Dung.Caption = "Nội dung";
     this.Cot_Noi_Dung.Name = "Cot_Noi_Dung";
     this.Cot_Noi_Dung.Visible = true;
     this.Cot_Noi_Dung.VisibleIndex = 8;
     this.Cot_Noi_Dung.Width = 54;
     //
     // CotLoai
     //
     this.CotLoai.Caption = "Loại";
     this.CotLoai.Name = "CotLoai";
     this.CotLoai.Width = 31;
     //
     // CotIP_Address
     //
     this.CotIP_Address.Caption = "IP_Address";
     this.CotIP_Address.Name = "CotIP_Address";
     this.CotIP_Address.Visible = true;
     this.CotIP_Address.VisibleIndex = 12;
     this.CotIP_Address.Width = 67;
     //
     // CotLoaiDT_VS
     //
     this.CotLoaiDT_VS.Caption = "Đi trễ / Về sớm";
     this.CotLoaiDT_VS.Name = "CotLoaiDT_VS";
     this.CotLoaiDT_VS.Visible = true;
     this.CotLoaiDT_VS.VisibleIndex = 7;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(804, 205);
     this.xtraTabControlDetail.TabIndex = 0;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(797, 176);
     this.xtraTabPageDetail.Text = "Chi tiết";
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit1,
     this.repositoryItemImageComboBox1});
     this.gridControlDetail.Size = new System.Drawing.Size(797, 176);
     this.gridControlDetail.TabIndex = 0;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewDetail.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AutoHeight = false;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.chkVe_som);
     this.popupControlContainerFilter.Controls.Add(this.chkDi_tre);
     this.popupControlContainerFilter.Controls.Add(this.chkChuaChamCong);
     this.popupControlContainerFilter.Controls.Add(this.chkDaChamCong);
     this.popupControlContainerFilter.Controls.Add(this.PLNhanVien);
     this.popupControlContainerFilter.Controls.Add(this.DenNgay);
     this.popupControlContainerFilter.Controls.Add(this.TuNgay);
     this.popupControlContainerFilter.Controls.Add(this.label8);
     this.popupControlContainerFilter.Controls.Add(this.label4);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(804, 66);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // chkVe_som
     //
     this.chkVe_som.Location = new System.Drawing.Point(427, 36);
     this.chkVe_som.Name = "chkVe_som";
     this.chkVe_som.Properties.Caption = "Về sớm";
     this.chkVe_som.Size = new System.Drawing.Size(98, 19);
     this.chkVe_som.TabIndex = 7;
     this.chkVe_som.ToolTip = "Dữ liệu bắt buộc nhập";
     this.chkVe_som.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // chkDi_tre
     //
     this.chkDi_tre.Location = new System.Drawing.Point(315, 36);
     this.chkDi_tre.Name = "chkDi_tre";
     this.chkDi_tre.Properties.Caption = "Đi trễ";
     this.chkDi_tre.Size = new System.Drawing.Size(98, 19);
     this.chkDi_tre.TabIndex = 6;
     this.chkDi_tre.ToolTip = "Dữ liệu bắt buộc nhập";
     this.chkDi_tre.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // chkChuaChamCong
     //
     this.chkChuaChamCong.Location = new System.Drawing.Point(427, 10);
     this.chkChuaChamCong.Name = "chkChuaChamCong";
     this.chkChuaChamCong.Properties.Caption = "Chưa chấm công";
     this.chkChuaChamCong.Size = new System.Drawing.Size(130, 19);
     this.chkChuaChamCong.TabIndex = 5;
     this.chkChuaChamCong.ToolTip = "Dữ liệu bắt buộc nhập";
     this.chkChuaChamCong.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // chkDaChamCong
     //
     this.chkDaChamCong.Location = new System.Drawing.Point(315, 10);
     this.chkDaChamCong.Name = "chkDaChamCong";
     this.chkDaChamCong.Properties.Caption = "Đã chấm công";
     this.chkDaChamCong.Size = new System.Drawing.Size(109, 19);
     this.chkDaChamCong.TabIndex = 4;
     this.chkDaChamCong.ToolTip = "Dữ liệu bắt buộc nhập";
     this.chkDaChamCong.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // PLNhanVien
     //
     this.PLNhanVien.Location = new System.Drawing.Point(67, 8);
     this.PLNhanVien.Name = "PLNhanVien";
     this.PLNhanVien.Size = new System.Drawing.Size(219, 21);
     this.PLNhanVien.TabIndex = 1;
     this.PLNhanVien.ZZZWidthFactor = 2F;
     //
     // DenNgay
     //
     this.DenNgay.EditValue = null;
     this.DenNgay.Location = new System.Drawing.Point(199, 35);
     this.DenNgay.Name = "DenNgay";
     this.DenNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DenNgay.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DenNgay.Size = new System.Drawing.Size(87, 20);
     this.DenNgay.TabIndex = 3;
     //
     // TuNgay
     //
     this.TuNgay.EditValue = null;
     this.TuNgay.Location = new System.Drawing.Point(67, 35);
     this.TuNgay.Name = "TuNgay";
     this.TuNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TuNgay.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TuNgay.Size = new System.Drawing.Size(88, 20);
     this.TuNgay.TabIndex = 2;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(166, 39);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(18, 13);
     this.label8.TabIndex = 3;
     this.label8.Text = "đến";
     this.label8.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label8.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(9, 39);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(40, 13);
     this.label4.TabIndex = 2;
     this.label4.Text = "Từ ngày";
     this.label4.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label4.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(9, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 13);
     this.label1.TabIndex = 5;
     this.label1.Text = "Nhân viên";
     this.label1.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label1.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "VAT";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 5;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "VAT";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 96;
     //
     // frmTimeInOutQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(804, 497);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.popupControlContainerFilter);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmTimeInOutQL";
     this.Text = "Thời gian làm việc";
     this.Load += new System.EventHandler(this.frmTimeInOutQL_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkVe_som.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDi_tre.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkChuaChamCong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDaChamCong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 11
0
 /// <summary>
 ///CHAUTV : Phân quyền xem dữ liệu
 /// </summary>
 /// <param name="Input"></param>
 /// <param name="featureName"></param>
 private void ApplyPermissionData(PLDMGrid Input, string featureName)
 {
     List<Feature> features = Permission.loadAllFeatureByUser(FrameworkParams.currentUser.username);
     bool IsFull = false;
     foreach (Feature f in features)
     {
         if ((f.featureName == featureName && f.isRead == true) || FrameworkParams.currentUser.username.Equals("admin"))
         {
             IsFull = true;
             break;
         }
     }
     if (FrameworkParams.isPermision.getPublicForm().Contains(typeof(frmTimeInOutQL).FullName) == false && !IsFull)
     {
         Input._setSelectedID(FrameworkParams.currentUser.employee_id);
         Input.Enabled = false;
     }
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTKThuocTinhBienMuc));
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode3 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode4 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode5 = new DevExpress.XtraGrid.GridLevelNode();
     this.gridDetail_LoaiBang = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Cot_LoaiBang_Ten = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_SoLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridDetail_TietMuc = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Cot_TietMuc_Ten = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_TietMuc_SoLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridDetail_TietMuc_BienMuc = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Cot_TietMuc_BienMuc_MaBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_TietMuc_BienMuc_NoiDung = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.CotMatserSoLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridDetail_LoaiBang_ThongSo_BienMuc = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_Rating = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridDetail_LoaiBang_ThongSo = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Cot_LoaiBang_ThongSo_Ten = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_SoLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.checkedListBoxControl2 = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.label3 = new System.Windows.Forms.Label();
     this.ThongSoLoaiBang = new ProtocolVN.Framework.Win.PLDMGrid();
     this.label9 = new System.Windows.Forms.Label();
     this.plCombobox3 = new ProtocolVN.Framework.Win.PLCombobox();
     this.NguoiXuat = new ProtocolVN.Framework.Win.PLCombobox();
     this.label2 = new System.Windows.Forms.Label();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.label4 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.dateEdit2 = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.checkedListBoxControl1 = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.plTreeSelectItem1 = new ProtocolVN.Framework.Win.PLDMTreeGroupElement();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_LoaiBang)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_TietMuc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_TietMuc_BienMuc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_LoaiBang_ThongSo_BienMuc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_LoaiBang_ThongSo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).BeginInit();
     this.SuspendLayout();
     //
     // gridDetail_LoaiBang
     //
     this.gridDetail_LoaiBang.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridDetail_LoaiBang.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridDetail_LoaiBang.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Cot_LoaiBang_Ten,
     this.Cot_LoaiBang_SoLuong});
     this.gridDetail_LoaiBang.CustomizationFormBounds = new System.Drawing.Rectangle(816, 401, 208, 168);
     this.gridDetail_LoaiBang.GridControl = this.gridControlMaster;
     this.gridDetail_LoaiBang.IndicatorWidth = 40;
     this.gridDetail_LoaiBang.Name = "gridDetail_LoaiBang";
     this.gridDetail_LoaiBang.OptionsLayout.Columns.AddNewColumns = false;
     this.gridDetail_LoaiBang.OptionsNavigation.AutoFocusNewRow = true;
     this.gridDetail_LoaiBang.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridDetail_LoaiBang.OptionsPrint.UsePrintStyles = true;
     this.gridDetail_LoaiBang.OptionsView.EnableAppearanceEvenRow = true;
     this.gridDetail_LoaiBang.OptionsView.EnableAppearanceOddRow = true;
     this.gridDetail_LoaiBang.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridDetail_LoaiBang.OptionsView.ShowGroupedColumns = true;
     //
     // Cot_LoaiBang_Ten
     //
     this.Cot_LoaiBang_Ten.Caption = "Tên loại băng";
     this.Cot_LoaiBang_Ten.Name = "Cot_LoaiBang_Ten";
     this.Cot_LoaiBang_Ten.Visible = true;
     this.Cot_LoaiBang_Ten.VisibleIndex = 0;
     this.Cot_LoaiBang_Ten.Width = 76;
     //
     // Cot_LoaiBang_SoLuong
     //
     this.Cot_LoaiBang_SoLuong.Caption = "Số lượng";
     this.Cot_LoaiBang_SoLuong.Name = "Cot_LoaiBang_SoLuong";
     this.Cot_LoaiBang_SoLuong.Visible = true;
     this.Cot_LoaiBang_SoLuong.VisibleIndex = 1;
     this.Cot_LoaiBang_SoLuong.Width = 54;
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     gridLevelNode1.LevelTemplate = this.gridDetail_LoaiBang;
     gridLevelNode2.LevelTemplate = this.gridDetail_LoaiBang_ThongSo;
     gridLevelNode3.LevelTemplate = this.gridDetail_LoaiBang_ThongSo_BienMuc;
     gridLevelNode3.RelationName = "Biên mục theo thông số";
     gridLevelNode2.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode3});
     gridLevelNode2.RelationName = "Thông số loại băng";
     gridLevelNode1.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     gridLevelNode1.RelationName = "Thống kê theo loại băng";
     gridLevelNode4.LevelTemplate = this.gridDetail_TietMuc;
     gridLevelNode5.LevelTemplate = this.gridDetail_TietMuc_BienMuc;
     gridLevelNode5.RelationName = "Biên mục theo tiết mục";
     gridLevelNode4.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode5});
     gridLevelNode4.RelationName = "Thống kê theo tiết mục";
     this.gridControlMaster.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1,
     gridLevelNode4});
     this.gridControlMaster.Location = new System.Drawing.Point(0, 141);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(1006, 356);
     this.gridControlMaster.TabIndex = 7;
     this.gridControlMaster.TabStop = false;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridDetail_TietMuc,
     this.gridDetail_TietMuc_BienMuc,
     this.gridViewMaster,
     this.gridDetail_LoaiBang_ThongSo_BienMuc,
     this.gridDetail_LoaiBang_ThongSo,
     this.gridDetail_LoaiBang});
     //
     // gridDetail_TietMuc
     //
     this.gridDetail_TietMuc.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridDetail_TietMuc.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridDetail_TietMuc.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Cot_TietMuc_Ten,
     this.cot_TietMuc_SoLuong});
     this.gridDetail_TietMuc.GridControl = this.gridControlMaster;
     this.gridDetail_TietMuc.IndicatorWidth = 40;
     this.gridDetail_TietMuc.Name = "gridDetail_TietMuc";
     this.gridDetail_TietMuc.OptionsLayout.Columns.AddNewColumns = false;
     this.gridDetail_TietMuc.OptionsNavigation.AutoFocusNewRow = true;
     this.gridDetail_TietMuc.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridDetail_TietMuc.OptionsPrint.UsePrintStyles = true;
     this.gridDetail_TietMuc.OptionsView.EnableAppearanceEvenRow = true;
     this.gridDetail_TietMuc.OptionsView.EnableAppearanceOddRow = true;
     this.gridDetail_TietMuc.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridDetail_TietMuc.OptionsView.ShowGroupedColumns = true;
     //
     // Cot_TietMuc_Ten
     //
     this.Cot_TietMuc_Ten.Caption = "Tên tiết mục";
     this.Cot_TietMuc_Ten.Name = "Cot_TietMuc_Ten";
     this.Cot_TietMuc_Ten.Visible = true;
     this.Cot_TietMuc_Ten.VisibleIndex = 0;
     this.Cot_TietMuc_Ten.Width = 71;
     //
     // cot_TietMuc_SoLuong
     //
     this.cot_TietMuc_SoLuong.Caption = "Số lượng";
     this.cot_TietMuc_SoLuong.Name = "cot_TietMuc_SoLuong";
     this.cot_TietMuc_SoLuong.Visible = true;
     this.cot_TietMuc_SoLuong.VisibleIndex = 1;
     this.cot_TietMuc_SoLuong.Width = 54;
     //
     // gridDetail_TietMuc_BienMuc
     //
     this.gridDetail_TietMuc_BienMuc.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridDetail_TietMuc_BienMuc.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridDetail_TietMuc_BienMuc.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Cot_TietMuc_BienMuc_MaBang,
     this.Cot_TietMuc_BienMuc_NoiDung});
     this.gridDetail_TietMuc_BienMuc.GridControl = this.gridControlMaster;
     this.gridDetail_TietMuc_BienMuc.IndicatorWidth = 40;
     this.gridDetail_TietMuc_BienMuc.Name = "gridDetail_TietMuc_BienMuc";
     this.gridDetail_TietMuc_BienMuc.OptionsLayout.Columns.AddNewColumns = false;
     this.gridDetail_TietMuc_BienMuc.OptionsNavigation.AutoFocusNewRow = true;
     this.gridDetail_TietMuc_BienMuc.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridDetail_TietMuc_BienMuc.OptionsPrint.UsePrintStyles = true;
     this.gridDetail_TietMuc_BienMuc.OptionsView.EnableAppearanceEvenRow = true;
     this.gridDetail_TietMuc_BienMuc.OptionsView.EnableAppearanceOddRow = true;
     this.gridDetail_TietMuc_BienMuc.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridDetail_TietMuc_BienMuc.OptionsView.ShowGroupedColumns = true;
     //
     // Cot_TietMuc_BienMuc_MaBang
     //
     this.Cot_TietMuc_BienMuc_MaBang.Caption = "Mã băng";
     this.Cot_TietMuc_BienMuc_MaBang.Name = "Cot_TietMuc_BienMuc_MaBang";
     this.Cot_TietMuc_BienMuc_MaBang.Visible = true;
     this.Cot_TietMuc_BienMuc_MaBang.VisibleIndex = 1;
     this.Cot_TietMuc_BienMuc_MaBang.Width = 53;
     //
     // Cot_TietMuc_BienMuc_NoiDung
     //
     this.Cot_TietMuc_BienMuc_NoiDung.Caption = "Nội dung";
     this.Cot_TietMuc_BienMuc_NoiDung.Name = "Cot_TietMuc_BienMuc_NoiDung";
     this.Cot_TietMuc_BienMuc_NoiDung.Visible = true;
     this.Cot_TietMuc_BienMuc_NoiDung.VisibleIndex = 0;
     this.Cot_TietMuc_BienMuc_NoiDung.Width = 54;
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch);
     this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.CotMatserSoLuong});
     this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(423, 322, 208, 168);
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupPanelText = "Các biên mục thỏa điều kiện tìm kiếm";
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsSelection.MultiSelect = true;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowGroupedColumns = true;
     this.gridViewMaster.OptionsView.ShowGroupPanel = false;
     //
     // CotMatserSoLuong
     //
     this.CotMatserSoLuong.Caption = "Tổng số lượng biên mục";
     this.CotMatserSoLuong.Name = "CotMatserSoLuong";
     this.CotMatserSoLuong.Visible = true;
     this.CotMatserSoLuong.VisibleIndex = 0;
     this.CotMatserSoLuong.Width = 125;
     //
     // gridDetail_LoaiBang_ThongSo_BienMuc
     //
     this.gridDetail_LoaiBang_ThongSo_BienMuc.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang,
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc,
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung,
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap,
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong,
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster,
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp,
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD,
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem,
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa,
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL,
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK,
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke,
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan,
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang,
     this.Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat,
     this.Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau,
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen,
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu,
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap,
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc,
     this.Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia,
     this.Cot_LoaiBang_ThongSo_BienMuc_Rating,
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn,
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut,
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration});
     this.gridDetail_LoaiBang_ThongSo_BienMuc.CustomizationFormBounds = new System.Drawing.Rectangle(734, 488, 208, 168);
     this.gridDetail_LoaiBang_ThongSo_BienMuc.GridControl = this.gridControlMaster;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.IndicatorWidth = 40;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.Name = "gridDetail_LoaiBang_ThongSo_BienMuc";
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsLayout.Columns.AddNewColumns = false;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsNavigation.AutoFocusNewRow = true;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsPrint.UsePrintStyles = true;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsView.ColumnAutoWidth = false;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsView.EnableAppearanceEvenRow = true;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsView.EnableAppearanceOddRow = true;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsView.ShowGroupedColumns = true;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_MaBang
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang.Caption = "Mã băng";
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang.Name = "Cot_LoaiBang_ThongSo_BienMuc_MaBang";
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang.VisibleIndex = 0;
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang.Width = 53;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc.Caption = "Tiết mục";
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc.Name = "Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc";
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc.VisibleIndex = 1;
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc.Width = 52;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_NoiDung
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung.Caption = "Nội dung";
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung.Name = "Cot_LoaiBang_ThongSo_BienMuc_NoiDung";
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung.VisibleIndex = 2;
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung.Width = 54;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_SoTap
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap.Caption = "Tập số";
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap.Name = "Cot_LoaiBang_ThongSo_BienMuc_SoTap";
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap.VisibleIndex = 3;
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap.Width = 43;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong.Caption = "Thời lượng";
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong.Name = "Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong";
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong.VisibleIndex = 4;
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong.Width = 62;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_PostMaster
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster.Caption = "Tình trạng";
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster.Name = "Cot_LoaiBang_ThongSo_BienMuc_PostMaster";
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster.VisibleIndex = 5;
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster.Width = 70;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_PopUp
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp.Caption = "Pop Up";
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp.Name = "Cot_LoaiBang_ThongSo_BienMuc_PopUp";
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp.VisibleIndex = 6;
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp.Width = 46;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD.Caption = "Số ĐKCB HD";
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD.Name = "Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD";
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD.VisibleIndex = 7;
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD.Width = 71;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem.Caption = "File đính kèm";
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem.Name = "Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem";
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem.VisibleIndex = 8;
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem.Width = 73;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_TuKhoa
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa.Caption = "Từ khóa";
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa.Name = "Cot_LoaiBang_ThongSo_BienMuc_TuKhoa";
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa.VisibleIndex = 9;
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa.Width = 51;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_KHPL
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL.Caption = "KHPL";
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL.Name = "Cot_LoaiBang_ThongSo_BienMuc_KHPL";
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL.VisibleIndex = 10;
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL.Width = 36;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_KHXK
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK.Caption = "KHXK";
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK.Name = "Cot_LoaiBang_ThongSo_BienMuc_KHXK";
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK.VisibleIndex = 11;
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK.Width = 37;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_Ke
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke.Caption = "Kệ";
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke.Name = "Cot_LoaiBang_ThongSo_BienMuc_Ke";
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke.VisibleIndex = 12;
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke.Width = 24;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_Ngan
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan.Caption = "Ngăn";
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan.Name = "Cot_LoaiBang_ThongSo_BienMuc_Ngan";
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan.VisibleIndex = 13;
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan.Width = 37;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_Tang
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang.Caption = "Tầng";
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang.Name = "Cot_LoaiBang_ThongSo_BienMuc_Tang";
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang.VisibleIndex = 14;
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang.Width = 36;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat.Caption = "Số lần đã phát trên HTV2";
     this.Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat.Name = "Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat";
     this.Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat.Width = 132;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau.Caption = "Phát lần đầu trên HTV2";
     this.Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau.Name = "Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau";
     this.Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau.Width = 123;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen.Caption = "Thời hạn bản quyền";
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen.Name = "Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen";
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen.Width = 107;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu.Caption = "Đơn vị sở hữu";
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu.Name = "Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu";
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu.Width = 79;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap.Caption = "Đơn vị cung cấp";
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap.Name = "Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap";
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap.Width = 89;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_Nuoc
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc.Caption = "Nước SX";
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc.Name = "Cot_LoaiBang_ThongSo_BienMuc_Nuoc";
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc.VisibleIndex = 15;
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc.Width = 37;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia.Caption = "Đối tượng khán giả";
     this.Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia.Name = "Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia";
     this.Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia.Width = 103;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_Rating
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_Rating.Caption = "Rating trung bình (%)";
     this.Cot_LoaiBang_ThongSo_BienMuc_Rating.Name = "Cot_LoaiBang_ThongSo_BienMuc_Rating";
     this.Cot_LoaiBang_ThongSo_BienMuc_Rating.Width = 95;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn.Caption = "Time code in";
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn.Name = "Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn";
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn.VisibleIndex = 16;
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn.Width = 71;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut.Caption = "Time code out";
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut.Name = "Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut";
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut.VisibleIndex = 17;
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut.Width = 79;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_Duration
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration.Caption = "Duration";
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration.Name = "Cot_LoaiBang_ThongSo_BienMuc_Duration";
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration.VisibleIndex = 18;
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration.Width = 53;
     //
     // gridDetail_LoaiBang_ThongSo
     //
     this.gridDetail_LoaiBang_ThongSo.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridDetail_LoaiBang_ThongSo.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridDetail_LoaiBang_ThongSo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Cot_LoaiBang_ThongSo_Ten,
     this.Cot_LoaiBang_ThongSo_SoLuong});
     this.gridDetail_LoaiBang_ThongSo.GridControl = this.gridControlMaster;
     this.gridDetail_LoaiBang_ThongSo.IndicatorWidth = 40;
     this.gridDetail_LoaiBang_ThongSo.Name = "gridDetail_LoaiBang_ThongSo";
     this.gridDetail_LoaiBang_ThongSo.OptionsLayout.Columns.AddNewColumns = false;
     this.gridDetail_LoaiBang_ThongSo.OptionsNavigation.AutoFocusNewRow = true;
     this.gridDetail_LoaiBang_ThongSo.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridDetail_LoaiBang_ThongSo.OptionsPrint.UsePrintStyles = true;
     this.gridDetail_LoaiBang_ThongSo.OptionsView.EnableAppearanceEvenRow = true;
     this.gridDetail_LoaiBang_ThongSo.OptionsView.EnableAppearanceOddRow = true;
     this.gridDetail_LoaiBang_ThongSo.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridDetail_LoaiBang_ThongSo.OptionsView.ShowGroupedColumns = true;
     //
     // Cot_LoaiBang_ThongSo_Ten
     //
     this.Cot_LoaiBang_ThongSo_Ten.Caption = "Thông số";
     this.Cot_LoaiBang_ThongSo_Ten.Name = "Cot_LoaiBang_ThongSo_Ten";
     this.Cot_LoaiBang_ThongSo_Ten.Visible = true;
     this.Cot_LoaiBang_ThongSo_Ten.VisibleIndex = 0;
     this.Cot_LoaiBang_ThongSo_Ten.Width = 56;
     //
     // Cot_LoaiBang_ThongSo_SoLuong
     //
     this.Cot_LoaiBang_ThongSo_SoLuong.Caption = "Số lượng";
     this.Cot_LoaiBang_ThongSo_SoLuong.Name = "Cot_LoaiBang_ThongSo_SoLuong";
     this.Cot_LoaiBang_ThongSo_SoLuong.Visible = true;
     this.Cot_LoaiBang_ThongSo_SoLuong.VisibleIndex = 1;
     this.Cot_LoaiBang_ThongSo_SoLuong.Width = 54;
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5});
     this.barManager1.MaxItemId = 36;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm", false, true, false, 0),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemAdd.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "X&em";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemXem.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemDelete.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemUpdate.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem t&rước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemCommit.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemNoCommit.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "&Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barSubItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tì&m kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điề&u kiện tìm kiếm";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đón&g";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1006, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 497);
     this.barDockControlBottom.Size = new System.Drawing.Size(1006, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 473);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1006, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 473);
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "barButtonItem5";
     this.barButtonItem5.Id = 34;
     this.barButtonItem5.Name = "barButtonItem5";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(879, 263);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(41, 38);
     this.splitContainerControl1.SplitterPosition = 76;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.groupControl2);
     this.popupControlContainerFilter.Controls.Add(this.groupControl1);
     this.popupControlContainerFilter.Controls.Add(this.splitContainerControl1);
     this.popupControlContainerFilter.Controls.Add(this.plTreeSelectItem1);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(1006, 117);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.checkedListBoxControl2);
     this.groupControl2.Controls.Add(this.label3);
     this.groupControl2.Controls.Add(this.ThongSoLoaiBang);
     this.groupControl2.Controls.Add(this.label9);
     this.groupControl2.Controls.Add(this.plCombobox3);
     this.groupControl2.Controls.Add(this.NguoiXuat);
     this.groupControl2.Controls.Add(this.label2);
     this.groupControl2.Controls.Add(this.textEdit2);
     this.groupControl2.Controls.Add(this.textEdit1);
     this.groupControl2.Controls.Add(this.label4);
     this.groupControl2.Controls.Add(this.label1);
     this.groupControl2.Controls.Add(this.label29);
     this.groupControl2.Controls.Add(this.label31);
     this.groupControl2.Controls.Add(this.dateEdit2);
     this.groupControl2.Controls.Add(this.dateEdit1);
     this.groupControl2.Location = new System.Drawing.Point(3, 6);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(524, 105);
     this.groupControl2.TabIndex = 199;
     this.groupControl2.Text = "Tiêu chí tìm kiếm";
     //
     // checkedListBoxControl2
     //
     this.checkedListBoxControl2.CheckOnClick = true;
     this.checkedListBoxControl2.ColumnWidth = 80;
     this.checkedListBoxControl2.ItemHeight = 20;
     this.checkedListBoxControl2.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "POST", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "MASTER", System.Windows.Forms.CheckState.Checked)});
     this.checkedListBoxControl2.Location = new System.Drawing.Point(346, 74);
     this.checkedListBoxControl2.MultiColumn = true;
     this.checkedListBoxControl2.Name = "checkedListBoxControl2";
     this.checkedListBoxControl2.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.checkedListBoxControl2.Size = new System.Drawing.Size(166, 21);
     this.checkedListBoxControl2.TabIndex = 245;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(268, 78);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 13);
     this.label3.TabIndex = 246;
     this.label3.Text = "Tình trạng";
     //
     // ThongSoLoaiBang
     //
     this.ThongSoLoaiBang.Location = new System.Drawing.Point(461, 49);
     this.ThongSoLoaiBang.Name = "ThongSoLoaiBang";
     this.ThongSoLoaiBang.Size = new System.Drawing.Size(51, 21);
     this.ThongSoLoaiBang.TabIndex = 244;
     this.ThongSoLoaiBang.ZZZWidthFactor = 2F;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(268, 53);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(53, 13);
     this.label9.TabIndex = 243;
     this.label9.Text = "Loại lưu trữ";
     //
     // plCombobox3
     //
     this.plCombobox3.DataSource = null;
     this.plCombobox3.DisplayField = null;
     this.plCombobox3.Location = new System.Drawing.Point(346, 49);
     this.plCombobox3.Name = "plCombobox3";
     this.plCombobox3.Size = new System.Drawing.Size(109, 21);
     this.plCombobox3.TabIndex = 240;
     this.plCombobox3.ValueField = null;
     //
     // NguoiXuat
     //
     this.NguoiXuat.DataSource = null;
     this.NguoiXuat.DisplayField = null;
     this.NguoiXuat.Location = new System.Drawing.Point(346, 25);
     this.NguoiXuat.Name = "NguoiXuat";
     this.NguoiXuat.Size = new System.Drawing.Size(166, 21);
     this.NguoiXuat.TabIndex = 242;
     this.NguoiXuat.ValueField = null;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(268, 28);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(47, 13);
     this.label2.TabIndex = 241;
     this.label2.Text = "Tiết mục";
     //
     // textEdit2
     //
     this.textEdit2.Location = new System.Drawing.Point(80, 71);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Size = new System.Drawing.Size(176, 20);
     this.textEdit2.TabIndex = 232;
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(80, 23);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(176, 20);
     this.textEdit1.TabIndex = 232;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(5, 74);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(49, 13);
     this.label4.TabIndex = 230;
     this.label4.Text = "Nội dung";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(5, 27);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 13);
     this.label1.TabIndex = 230;
     this.label1.Text = "Mã băng";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(5, 50);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(73, 13);
     this.label29.TabIndex = 5;
     this.label29.Text = "Ngày nhập từ";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(155, 51);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(25, 13);
     this.label31.TabIndex = 5;
     this.label31.Text = "đến";
     //
     // dateEdit2
     //
     this.dateEdit2.EditValue = null;
     this.dateEdit2.Location = new System.Drawing.Point(186, 47);
     this.dateEdit2.Name = "dateEdit2";
     this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit2.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit2.Size = new System.Drawing.Size(70, 20);
     this.dateEdit2.TabIndex = 198;
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location = new System.Drawing.Point(80, 47);
     this.dateEdit1.MenuManager = this.barManager1;
     this.dateEdit1.Name = "dateEdit1";
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit1.Size = new System.Drawing.Size(71, 20);
     this.dateEdit1.TabIndex = 198;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.checkedListBoxControl1);
     this.groupControl1.Location = new System.Drawing.Point(533, 6);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(439, 108);
     this.groupControl1.TabIndex = 199;
     this.groupControl1.Text = "Tiêu chí thống kê";
     //
     // checkedListBoxControl1
     //
     this.checkedListBoxControl1.CheckOnClick = true;
     this.checkedListBoxControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.checkedListBoxControl1.ItemHeight = 25;
     this.checkedListBoxControl1.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("0", "Loại lưu trữ", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("1", "Tiết mục", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("2", "Thời lượng"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("3", "Rating"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("4", "Số lần đã phát"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("5", "Tình trạng", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("6", "Pop up", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("7", "Tổng tập"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("8", "Ký hiệu phân loại"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("9", "Vị trí", System.Windows.Forms.CheckState.Checked)});
     this.checkedListBoxControl1.Location = new System.Drawing.Point(2, 22);
     this.checkedListBoxControl1.MultiColumn = true;
     this.checkedListBoxControl1.Name = "checkedListBoxControl1";
     this.checkedListBoxControl1.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.checkedListBoxControl1.Size = new System.Drawing.Size(435, 84);
     this.checkedListBoxControl1.TabIndex = 0;
     //
     // plTreeSelectItem1
     //
     this.plTreeSelectItem1.Location = new System.Drawing.Point(605, -20);
     this.plTreeSelectItem1.Name = "plTreeSelectItem1";
     this.plTreeSelectItem1.Size = new System.Drawing.Size(167, 20);
     this.plTreeSelectItem1.TabIndex = 193;
     this.plTreeSelectItem1.ZZZWidthFactor = 2F;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "VAT";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 5;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "VAT";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 96;
     //
     // frmTKThuocTinhBienMuc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1006, 497);
     this.Controls.Add(this.gridControlMaster);
     this.Controls.Add(this.popupControlContainerFilter);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmTKThuocTinhBienMuc";
     this.Text = "Thống kê biên mục theo ngày nhập";
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_LoaiBang)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_TietMuc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_TietMuc_BienMuc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_LoaiBang_ThongSo_BienMuc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_LoaiBang_ThongSo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).EndInit();
     this.ResumeLayout(false);
 }