Exemplo n.º 1
0
        public ProductModule()
        {
            this.CurrentModuleName     = "Product";
            CurrentModuleEntity        = new ProductEntities();
            CurrentModuleEntity.Module = this;
            InitializeModule();


            WoodTypeLookupEditControl = (VinaLookupEdit)Controls[WoodTypeLookupEditName];
            WoodTypeLookupEditControl.Properties.DataSource = GetProductAttributesByGroup(ProductAttributeGroup.WoodType);

            ColorLookupEditControl = (VinaLookupEdit)Controls[ColorLookupEditName];
            ColorLookupEditControl.Properties.DataSource = GetProductAttributesByGroup(ProductAttributeGroup.Color);

            ProductGroupLookupEditControl = (VinaLookupEdit)Controls[ProductGroupLookupEditName];

            WoodTypeCheckedComboBoxControl = (CheckedComboBoxEdit)Controls[WoodTypeCheckedComboBoxControlName];
            WoodTypeCheckedComboBoxControl.Properties.DataSource    = GetProductAttributesByGroup(ProductAttributeGroup.WoodType);
            WoodTypeCheckedComboBoxControl.Properties.DisplayMember = "ICProductAttributeName";
            WoodTypeCheckedComboBoxControl.Properties.ValueMember   = "ICProductAttributeID";

            ColorCheckedComboBoxControl = (CheckedComboBoxEdit)Controls[ColorCheckedComboBoxControlName];
            ColorCheckedComboBoxControl.Properties.DataSource    = GetProductAttributesByGroup(ProductAttributeGroup.Color);
            ColorCheckedComboBoxControl.Properties.DisplayMember = "ICProductAttributeName";
            ColorCheckedComboBoxControl.Properties.ValueMember   = "ICProductAttributeID";
        }
Exemplo n.º 2
0
        private void fld_lkeFK_ADWorkingShiftID_CloseUp(object sender, DevExpress.XtraEditors.Controls.CloseUpEventArgs e)
        {
            VinaLookupEdit lke = (VinaLookupEdit)sender;

            if (e.Value != null && e.Value != lke.OldEditValue)
            {
                ((OverTimeModule)Module).UpdateHREmployeeOTByWorkingShift(Convert.ToInt32(e.Value));
            }
        }
Exemplo n.º 3
0
        private void fld_lkeHRTimeSheetType_CloseUp(object sender, DevExpress.XtraEditors.Controls.CloseUpEventArgs e)
        {
            VinaLookupEdit lke = (VinaLookupEdit)sender;

            if (e.Value != null && lke.OldEditValue != e.Value)
            {
                ((TimeSheetModule)Module).ChangeTimeSheetType(e.Value.ToString());
            }
        }
Exemplo n.º 4
0
        private void fld_lkeFK_ICProductGroupID_QueryPopUp(object sender, CancelEventArgs e)
        {
            VinaLookupEdit lke = sender as VinaLookupEdit;

            if (lke == null)
            {
                return;
            }
            lke.Properties.DataSource = ((ProductModule)Module).GetProductGroupByDepartmentForDataSource();
        }
Exemplo n.º 5
0
        private void Fld_lkeICStockID_QueryPopUp(object sender, CancelEventArgs e)
        {
            VinaLookupEdit lke = (VinaLookupEdit)sender;

            if (lke != null)
            {
                ICStocksController  objStocksController = new ICStocksController();
                List <ICStocksInfo> stockList           = new List <ICStocksInfo>();
                stockList.Insert(0, new ICStocksInfo());
                stockList.AddRange(objStocksController.GetAllStockByStockType("Sale"));
                lke.Properties.DataSource = stockList;
            }
        }
Exemplo n.º 6
0
        public InventoryStatisticsModule()
        {
            this.CurrentModuleName     = "InventoryStatistics";
            CurrentModuleEntity        = new InventoryStatisticsEntities();
            CurrentModuleEntity.Module = this;
            InitializeModule();

            FromDateDateEdit           = (VinaDateEdit)Controls[InventoryStatisticsModule.FromDateDateEditControlName];
            ToDateDateEdit             = (VinaDateEdit)Controls[InventoryStatisticsModule.ToDateDateEditControlName];
            StockLookup                = (VinaLookupEdit)Controls[InventoryStatisticsModule.StockLookupControlName];
            ProductLookup              = (VinaLookupEdit)Controls[InventoryStatisticsModule.ProductLookupControlName];
            IsGroupByStock             = (VinaCheckBox)Controls[InventoryStatisticsModule.IsGroupByStockControlName];
            FromDateDateEdit.EditValue = DateTime.Now;
            ToDateDateEdit.EditValue   = DateTime.Now.AddDays(7);
        }
Exemplo n.º 7
0
        public void SetMaskForTextBox()
        {
            VinaLookupEdit rewardTypeLookupEdit = (VinaLookupEdit)Controls[RewardModule.RewardTypeLookupEditName];
            VinaTextBox    rewardValueTextBox   = (VinaTextBox)Controls[RewardModule.RewardValueTextBoxName];

            if (rewardTypeLookupEdit.EditValue.ToString() == RewardType.Percent.ToString())
            {
                rewardValueTextBox.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
                rewardValueTextBox.Properties.Mask.EditMask = "n";
                rewardValueTextBox.Properties.Mask.UseMaskAsDisplayFormat = true;
            }
            if (rewardTypeLookupEdit.EditValue.ToString() == RewardType.Amount.ToString())
            {
                rewardValueTextBox.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
                rewardValueTextBox.Properties.Mask.EditMask = "n";
                rewardValueTextBox.Properties.Mask.UseMaskAsDisplayFormat = true;
            }
            if (rewardTypeLookupEdit.EditValue.ToString() == RewardType.Other.ToString())
            {
                rewardValueTextBox.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
                rewardValueTextBox.Properties.Mask.UseMaskAsDisplayFormat = false;
            }
        }
Exemplo n.º 8
0
        public void SetMaskForTextBox()
        {
            VinaLookupEdit DisciplineTypeLookupEdit = (VinaLookupEdit)Controls[DisciplineModule.DisciplineTypeLookupEditName];
            VinaTextBox    DisciplineValueTextBox   = (VinaTextBox)Controls[DisciplineModule.DisciplineValueTextBoxName];

            if (DisciplineTypeLookupEdit.EditValue.ToString() == DisciplineType.Percent.ToString())
            {
                DisciplineValueTextBox.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
                DisciplineValueTextBox.Properties.Mask.EditMask = "n";
                DisciplineValueTextBox.Properties.Mask.UseMaskAsDisplayFormat = true;
            }
            if (DisciplineTypeLookupEdit.EditValue.ToString() == DisciplineType.Amount.ToString())
            {
                DisciplineValueTextBox.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
                DisciplineValueTextBox.Properties.Mask.EditMask = "n";
                DisciplineValueTextBox.Properties.Mask.UseMaskAsDisplayFormat = true;
            }
            if (DisciplineTypeLookupEdit.EditValue.ToString() == DisciplineType.Other.ToString())
            {
                DisciplineValueTextBox.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
                DisciplineValueTextBox.Properties.Mask.UseMaskAsDisplayFormat = false;
            }
        }
Exemplo n.º 9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.fld_lkeFK_ICProductID = new DevExpress.XtraTab.XtraTabPage();
     this.fld_dgcHREmployeePayrollFormulaItems = new VinaERP.Modules.EmployeePayRollFormula.HREmployeePayrollFormulaItemsGridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.fld_dgcHRWorkingShifts = new VinaERP.Modules.EmployeePayRollFormula.WorkingShiftGridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.fld_dgcHROTFactors = new VinaERP.Modules.EmployeePayRollFormula.HROTFactorsGridControl();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.fld_dgcHRTimesheetEmployeeLates = new VinaERP.Modules.EmployeePayRollFormula.HRTimesheetEmployeeLatesGridControl();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.fld_dgcHRTimesheetConfigs = new VinaERP.Modules.EmployeePayRollFormula.HRTimesheetConfigsGridControl();
     this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.fld_dgcHRAllowanceConfigs = new VinaERP.Modules.EmployeePayRollFormula.AllowanceConfigGridControl();
     this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.fld_txtHREmployeePayrollFormulaNo = new VinaLib.BaseProvider.VinaTextBox();
     this.fld_mneHREmployeePayrollFormulaDesc = new VinaLib.BaseProvider.Components.VinaMemoEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.fld_txtHREmployeePayrollFormulaName = new VinaLib.BaseProvider.VinaTextBox();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.fld_dteHREmployeePayrollFormulaFromDate = new VinaLib.BaseProvider.VinaDateEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo = new VinaLib.BaseProvider.VinaLookupEdit();
     this.fld_dteHREmployeePayrollFormulaToDate = new VinaLib.BaseProvider.VinaDateEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.fld_lkeFK_ICProductID.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dgcHREmployeePayrollFormulaItems)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dgcHRWorkingShifts)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dgcHROTFactors)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dgcHRTimesheetEmployeeLates)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dgcHRTimesheetConfigs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
     this.xtraTabPage5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dgcHRAllowanceConfigs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_txtHREmployeePayrollFormulaNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_mneHREmployeePayrollFormulaDesc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_txtHREmployeePayrollFormulaName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dteHREmployeePayrollFormulaFromDate.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dteHREmployeePayrollFormulaFromDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dteHREmployeePayrollFormulaToDate.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dteHREmployeePayrollFormulaToDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControl1.Location = new System.Drawing.Point(4, 101);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.fld_lkeFK_ICProductID;
     this.xtraTabControl1.Size = new System.Drawing.Size(1055, 457);
     this.xtraTabControl1.TabIndex = 4;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.fld_lkeFK_ICProductID,
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3,
     this.xtraTabPage4,
     this.xtraTabPage5});
     //
     // fld_lkeFK_ICProductID
     //
     this.fld_lkeFK_ICProductID.Controls.Add(this.fld_dgcHREmployeePayrollFormulaItems);
     this.fld_lkeFK_ICProductID.Name = "fld_lkeFK_ICProductID";
     this.fld_lkeFK_ICProductID.Size = new System.Drawing.Size(1049, 429);
     this.fld_lkeFK_ICProductID.Text = "Danh mục lương";
     //
     // fld_dgcHREmployeePayrollFormulaItems
     //
     this.fld_dgcHREmployeePayrollFormulaItems.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fld_dgcHREmployeePayrollFormulaItems.Location = new System.Drawing.Point(0, 0);
     this.fld_dgcHREmployeePayrollFormulaItems.MainView = this.gridView1;
     this.fld_dgcHREmployeePayrollFormulaItems.Name = "fld_dgcHREmployeePayrollFormulaItems";
     this.fld_dgcHREmployeePayrollFormulaItems.Screen = null;
     this.fld_dgcHREmployeePayrollFormulaItems.Size = new System.Drawing.Size(1049, 429);
     this.fld_dgcHREmployeePayrollFormulaItems.TabIndex = 16;
     this.fld_dgcHREmployeePayrollFormulaItems.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     this.fld_dgcHREmployeePayrollFormulaItems.VinaDataMember = null;
     this.fld_dgcHREmployeePayrollFormulaItems.VinaDataSource = "HREmployeePayrollFormulaItems";
     this.fld_dgcHREmployeePayrollFormulaItems.VinaPropertyName = null;
     //
     // gridView1
     //
     this.gridView1.GridControl = this.fld_dgcHREmployeePayrollFormulaItems;
     this.gridView1.Name = "gridView1";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.fld_dgcHRWorkingShifts);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(1049, 429);
     this.xtraTabPage1.Text = "Cấu hình ca làm việc";
     //
     // fld_dgcHRWorkingShifts
     //
     this.fld_dgcHRWorkingShifts.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fld_dgcHRWorkingShifts.Location = new System.Drawing.Point(0, 0);
     this.fld_dgcHRWorkingShifts.MainView = this.gridView2;
     this.fld_dgcHRWorkingShifts.Name = "fld_dgcHRWorkingShifts";
     this.fld_dgcHRWorkingShifts.Screen = null;
     this.fld_dgcHRWorkingShifts.Size = new System.Drawing.Size(1049, 429);
     this.fld_dgcHRWorkingShifts.TabIndex = 17;
     this.fld_dgcHRWorkingShifts.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     this.fld_dgcHRWorkingShifts.VinaDataMember = null;
     this.fld_dgcHRWorkingShifts.VinaDataSource = "HRWorkingShifts";
     this.fld_dgcHRWorkingShifts.VinaPropertyName = null;
     //
     // gridView2
     //
     this.gridView2.GridControl = this.fld_dgcHRWorkingShifts;
     this.gridView2.Name = "gridView2";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.fld_dgcHROTFactors);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(1049, 429);
     this.xtraTabPage2.Text = "Cấu hình hệ số tăng ca";
     //
     // fld_dgcHROTFactors
     //
     this.fld_dgcHROTFactors.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fld_dgcHROTFactors.Location = new System.Drawing.Point(0, 0);
     this.fld_dgcHROTFactors.MainView = this.gridView3;
     this.fld_dgcHROTFactors.Name = "fld_dgcHROTFactors";
     this.fld_dgcHROTFactors.Screen = null;
     this.fld_dgcHROTFactors.Size = new System.Drawing.Size(1049, 429);
     this.fld_dgcHROTFactors.TabIndex = 17;
     this.fld_dgcHROTFactors.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView3});
     this.fld_dgcHROTFactors.VinaDataMember = null;
     this.fld_dgcHROTFactors.VinaDataSource = "HROTFactors";
     this.fld_dgcHROTFactors.VinaPropertyName = null;
     //
     // gridView3
     //
     this.gridView3.GridControl = this.fld_dgcHROTFactors;
     this.gridView3.Name = "gridView3";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.fld_dgcHRTimesheetEmployeeLates);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.PageVisible = false;
     this.xtraTabPage3.Size = new System.Drawing.Size(1049, 429);
     this.xtraTabPage3.Text = "Cấu hình đi trễ";
     //
     // fld_dgcHRTimesheetEmployeeLates
     //
     this.fld_dgcHRTimesheetEmployeeLates.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fld_dgcHRTimesheetEmployeeLates.Location = new System.Drawing.Point(0, 0);
     this.fld_dgcHRTimesheetEmployeeLates.MainView = this.gridView4;
     this.fld_dgcHRTimesheetEmployeeLates.Name = "fld_dgcHRTimesheetEmployeeLates";
     this.fld_dgcHRTimesheetEmployeeLates.Screen = null;
     this.fld_dgcHRTimesheetEmployeeLates.Size = new System.Drawing.Size(1049, 429);
     this.fld_dgcHRTimesheetEmployeeLates.TabIndex = 17;
     this.fld_dgcHRTimesheetEmployeeLates.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView4});
     this.fld_dgcHRTimesheetEmployeeLates.VinaDataMember = null;
     this.fld_dgcHRTimesheetEmployeeLates.VinaDataSource = "HRTimesheetEmployeeLates";
     this.fld_dgcHRTimesheetEmployeeLates.VinaPropertyName = null;
     //
     // gridView4
     //
     this.gridView4.GridControl = this.fld_dgcHRTimesheetEmployeeLates;
     this.gridView4.Name = "gridView4";
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.fld_dgcHRTimesheetConfigs);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(1049, 429);
     this.xtraTabPage4.Text = "Cấu hình công tháng";
     //
     // fld_dgcHRTimesheetConfigs
     //
     this.fld_dgcHRTimesheetConfigs.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fld_dgcHRTimesheetConfigs.Location = new System.Drawing.Point(0, 0);
     this.fld_dgcHRTimesheetConfigs.MainView = this.gridView5;
     this.fld_dgcHRTimesheetConfigs.Name = "fld_dgcHRTimesheetConfigs";
     this.fld_dgcHRTimesheetConfigs.Screen = null;
     this.fld_dgcHRTimesheetConfigs.Size = new System.Drawing.Size(1049, 429);
     this.fld_dgcHRTimesheetConfigs.TabIndex = 17;
     this.fld_dgcHRTimesheetConfigs.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView5});
     this.fld_dgcHRTimesheetConfigs.VinaDataMember = null;
     this.fld_dgcHRTimesheetConfigs.VinaDataSource = "HRTimesheetConfigs";
     this.fld_dgcHRTimesheetConfigs.VinaPropertyName = null;
     //
     // gridView5
     //
     this.gridView5.GridControl = this.fld_dgcHRTimesheetConfigs;
     this.gridView5.Name = "gridView5";
     //
     // xtraTabPage5
     //
     this.xtraTabPage5.Controls.Add(this.fld_dgcHRAllowanceConfigs);
     this.xtraTabPage5.Name = "xtraTabPage5";
     this.xtraTabPage5.Size = new System.Drawing.Size(1049, 429);
     this.xtraTabPage5.Text = "Phụ cấp";
     //
     // fld_dgcHRAllowanceConfigs
     //
     this.fld_dgcHRAllowanceConfigs.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fld_dgcHRAllowanceConfigs.Location = new System.Drawing.Point(0, 0);
     this.fld_dgcHRAllowanceConfigs.MainView = this.gridView6;
     this.fld_dgcHRAllowanceConfigs.Name = "fld_dgcHRAllowanceConfigs";
     this.fld_dgcHRAllowanceConfigs.Screen = null;
     this.fld_dgcHRAllowanceConfigs.Size = new System.Drawing.Size(1049, 429);
     this.fld_dgcHRAllowanceConfigs.TabIndex = 17;
     this.fld_dgcHRAllowanceConfigs.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView6});
     this.fld_dgcHRAllowanceConfigs.VinaDataMember = null;
     this.fld_dgcHRAllowanceConfigs.VinaDataSource = "HRAllowanceConfigs";
     this.fld_dgcHRAllowanceConfigs.VinaPropertyName = null;
     //
     // gridView6
     //
     this.gridView6.GridControl = this.fld_dgcHRAllowanceConfigs;
     this.gridView6.Name = "gridView6";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(12, 13);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(65, 13);
     this.labelControl1.TabIndex = 34;
     this.labelControl1.Text = "Mã công thức";
     //
     // fld_txtHREmployeePayrollFormulaNo
     //
     this.fld_txtHREmployeePayrollFormulaNo.Location = new System.Drawing.Point(116, 10);
     this.fld_txtHREmployeePayrollFormulaNo.Name = "fld_txtHREmployeePayrollFormulaNo";
     this.fld_txtHREmployeePayrollFormulaNo.Screen = null;
     this.fld_txtHREmployeePayrollFormulaNo.Size = new System.Drawing.Size(199, 20);
     this.fld_txtHREmployeePayrollFormulaNo.TabIndex = 0;
     this.fld_txtHREmployeePayrollFormulaNo.Tag = "DC";
     this.fld_txtHREmployeePayrollFormulaNo.VinaDataMember = "HREmployeePayrollFormulaNo";
     this.fld_txtHREmployeePayrollFormulaNo.VinaDataSource = "HREmployeePayrollFormulas";
     this.fld_txtHREmployeePayrollFormulaNo.VinaPropertyName = "EditValue";
     //
     // fld_mneHREmployeePayrollFormulaDesc
     //
     this.fld_mneHREmployeePayrollFormulaDesc.Location = new System.Drawing.Point(116, 62);
     this.fld_mneHREmployeePayrollFormulaDesc.Name = "fld_mneHREmployeePayrollFormulaDesc";
     this.fld_mneHREmployeePayrollFormulaDesc.Screen = null;
     this.fld_mneHREmployeePayrollFormulaDesc.Size = new System.Drawing.Size(525, 33);
     this.fld_mneHREmployeePayrollFormulaDesc.TabIndex = 3;
     this.fld_mneHREmployeePayrollFormulaDesc.Tag = "DC";
     this.fld_mneHREmployeePayrollFormulaDesc.VinaDataMember = "HREmployeePayrollFormulaDesc";
     this.fld_mneHREmployeePayrollFormulaDesc.VinaDataSource = "HREmployeePayrollFormulas";
     this.fld_mneHREmployeePayrollFormulaDesc.VinaPropertyName = "EditValue";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(12, 63);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(40, 13);
     this.labelControl4.TabIndex = 61;
     this.labelControl4.Text = "Diễn giải";
     //
     // fld_txtHREmployeePayrollFormulaName
     //
     this.fld_txtHREmployeePayrollFormulaName.Location = new System.Drawing.Point(442, 10);
     this.fld_txtHREmployeePayrollFormulaName.Name = "fld_txtHREmployeePayrollFormulaName";
     this.fld_txtHREmployeePayrollFormulaName.Screen = null;
     this.fld_txtHREmployeePayrollFormulaName.Size = new System.Drawing.Size(199, 20);
     this.fld_txtHREmployeePayrollFormulaName.TabIndex = 63;
     this.fld_txtHREmployeePayrollFormulaName.Tag = "DC";
     this.fld_txtHREmployeePayrollFormulaName.VinaDataMember = "HREmployeePayrollFormulaName";
     this.fld_txtHREmployeePayrollFormulaName.VinaDataSource = "HREmployeePayrollFormulas";
     this.fld_txtHREmployeePayrollFormulaName.VinaPropertyName = "EditValue";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(345, 13);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 64;
     this.labelControl5.Text = "Nhóm chấm công";
     //
     // fld_dteHREmployeePayrollFormulaFromDate
     //
     this.fld_dteHREmployeePayrollFormulaFromDate.EditValue = null;
     this.fld_dteHREmployeePayrollFormulaFromDate.Location = new System.Drawing.Point(116, 36);
     this.fld_dteHREmployeePayrollFormulaFromDate.Name = "fld_dteHREmployeePayrollFormulaFromDate";
     this.fld_dteHREmployeePayrollFormulaFromDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.fld_dteHREmployeePayrollFormulaFromDate.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.fld_dteHREmployeePayrollFormulaFromDate.Screen = null;
     this.fld_dteHREmployeePayrollFormulaFromDate.Size = new System.Drawing.Size(199, 20);
     this.fld_dteHREmployeePayrollFormulaFromDate.TabIndex = 74;
     this.fld_dteHREmployeePayrollFormulaFromDate.Tag = "DC";
     this.fld_dteHREmployeePayrollFormulaFromDate.VinaDataMember = "HREmployeePayrollFormulaFromDate";
     this.fld_dteHREmployeePayrollFormulaFromDate.VinaDataSource = "HREmployeePayrollFormulas";
     this.fld_dteHREmployeePayrollFormulaFromDate.VinaPropertyName = "EditValue";
     this.fld_dteHREmployeePayrollFormulaFromDate.Validated += new System.EventHandler(this.fld_dteHRRewardFromDate_Validated);
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(12, 39);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(40, 13);
     this.labelControl9.TabIndex = 73;
     this.labelControl9.Text = "Từ ngày";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(673, 15);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(51, 13);
     this.labelControl11.TabIndex = 81;
     this.labelControl11.Text = "Cách xử lý";
     //
     // fld_lkeHREmployeePayrollFormulaHandleTypeCombo
     //
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.Location = new System.Drawing.Point(770, 12);
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.Name = "fld_lkeHREmployeePayrollFormulaHandleTypeCombo";
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.Screen = null;
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.Size = new System.Drawing.Size(199, 20);
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.TabIndex = 80;
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.Tag = "DC";
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.VinaAllowDummy = true;
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.VinaAutoGenarateDataSoure = true;
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.VinaDataMember = "HREmployeePayrollFormulaHandleTypeCombo";
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.VinaDataSource = "HREmployeePayrollFormulas";
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.VinaPropertyName = "EditValue";
     this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.Validated += new System.EventHandler(this.fld_txtHRRewardType_Validated);
     //
     // fld_dteHREmployeePayrollFormulaToDate
     //
     this.fld_dteHREmployeePayrollFormulaToDate.EditValue = null;
     this.fld_dteHREmployeePayrollFormulaToDate.Location = new System.Drawing.Point(442, 36);
     this.fld_dteHREmployeePayrollFormulaToDate.Name = "fld_dteHREmployeePayrollFormulaToDate";
     this.fld_dteHREmployeePayrollFormulaToDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.fld_dteHREmployeePayrollFormulaToDate.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.fld_dteHREmployeePayrollFormulaToDate.Screen = null;
     this.fld_dteHREmployeePayrollFormulaToDate.Size = new System.Drawing.Size(199, 20);
     this.fld_dteHREmployeePayrollFormulaToDate.TabIndex = 87;
     this.fld_dteHREmployeePayrollFormulaToDate.Tag = "DC";
     this.fld_dteHREmployeePayrollFormulaToDate.VinaDataMember = "HREmployeePayrollFormulaToDate";
     this.fld_dteHREmployeePayrollFormulaToDate.VinaDataSource = "HREmployeePayrollFormulas";
     this.fld_dteHREmployeePayrollFormulaToDate.VinaPropertyName = "EditValue";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(345, 39);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(47, 13);
     this.labelControl2.TabIndex = 86;
     this.labelControl2.Text = "Đến ngày";
     //
     // DMPF100
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1063, 563);
     this.Controls.Add(this.fld_dteHREmployeePayrollFormulaToDate);
     this.Controls.Add(this.labelControl2);
     this.Controls.Add(this.labelControl11);
     this.Controls.Add(this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo);
     this.Controls.Add(this.fld_dteHREmployeePayrollFormulaFromDate);
     this.Controls.Add(this.labelControl9);
     this.Controls.Add(this.fld_txtHREmployeePayrollFormulaName);
     this.Controls.Add(this.labelControl5);
     this.Controls.Add(this.labelControl4);
     this.Controls.Add(this.fld_mneHREmployeePayrollFormulaDesc);
     this.Controls.Add(this.fld_txtHREmployeePayrollFormulaNo);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.labelControl1);
     this.Name = "DMPF100";
     this.Tag = "DC";
     this.Text = "Thông tin";
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.fld_lkeFK_ICProductID.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.fld_dgcHREmployeePayrollFormulaItems)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.fld_dgcHRWorkingShifts)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.fld_dgcHROTFactors)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.fld_dgcHRTimesheetEmployeeLates)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.fld_dgcHRTimesheetConfigs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
     this.xtraTabPage5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.fld_dgcHRAllowanceConfigs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_txtHREmployeePayrollFormulaNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_mneHREmployeePayrollFormulaDesc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_txtHREmployeePayrollFormulaName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dteHREmployeePayrollFormulaFromDate.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dteHREmployeePayrollFormulaFromDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_lkeHREmployeePayrollFormulaHandleTypeCombo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dteHREmployeePayrollFormulaToDate.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fld_dteHREmployeePayrollFormulaToDate.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }