private void Initialize()
        {
            staffSet = new StaffDataSet(AppRes.DB.Connect, null, null);

            p2Bookmark = new GridBookmark(p2ResultGridView);
            P2Rows     = new List <PhysicalPage2Row>();
            p2ResultGrid.DataSource = P2Rows;
            AppHelper.SetGridEvenRow(p2ResultGridView);

            p3Bookmark = new GridBookmark(p3ClauseGridView);
            P3Rows     = new List <PhysicalPage3Row>();
            p3ClauseGrid.DataSource = P3Rows;
            AppHelper.SetGridEvenRow(p3ClauseGridView);

            p40Bookmark             = new GridBookmark(p4ClauseGridView);
            P40Rows                 = new List <PhysicalPage3Row>();
            p4ClauseGrid.DataSource = P40Rows;
            AppHelper.SetGridEvenRow(p4ClauseGridView);

            p41Bookmark             = new GridBookmark(p4SampleGridView);
            P41Rows                 = new List <PhysicalPage4Row>();
            p4SampleGrid.DataSource = P41Rows;
            AppHelper.SetGridEvenRow(p4SampleGridView);

            p5Bookmark             = new GridBookmark(p5StuffGridView);
            P5Rows                 = new List <PhysicalPage5Row>();
            p5StuffGrid.DataSource = P5Rows;
            AppHelper.SetGridEvenRow(p5StuffGridView);
        }
示例#2
0
        private void Initialize()
        {
            bomSet     = new BomDataSet(AppRes.DB.Connect, null, null);
            productSet = new ProductDataSet(AppRes.DB.Connect, null, null);
            partSet    = new PartDataSet(AppRes.DB.Connect, null, null);
            phyMainSet = new PhysicalMainDataSet(AppRes.DB.Connect, null, null);
            cheMainSet = new ChemicalMainDataSet(AppRes.DB.Connect, null, null);

            phyQuery = new PhysicalQuery(true);
            cheQuery = new ChemicalQuery(true);

            bomRec = new BomColumns();

            bookmark = new GridBookmark(bomGridView);

            AppHelper.SetGridEvenRow(bomGridView);
            AppHelper.SetGridEvenRow(productGridView);
            AppHelper.SetGridEvenRow(partGridView);

            bomAreaColumn.DisplayFormat.FormatType = FormatType.Custom;
            bomAreaColumn.DisplayFormat.Format     = new ReportAreaFormat();

            bomRegTimeColumn.DisplayFormat.FormatType = FormatType.Custom;
            bomRegTimeColumn.DisplayFormat.Format     = new ReportDateTimeFormat();

            bomAreaCombo.DataSource    = EnumHelper.GetNameValues <EReportArea>();
            bomAreaCombo.DisplayMember = "Name";
            bomAreaCombo.ValueMember   = "Value";
        }
示例#3
0
        private void Initialize()
        {
            cheCheckSet      = new ChemicalMainDataSet(AppRes.DB.Connect, null, null);
            cheMainSet       = new ChemicalMainDataSet(AppRes.DB.Connect, null, null);
            cheJoinSet       = new ChemicalItemJoinDataSet(AppRes.DB.Connect, null, null);
            cheImageSet      = new ChemicalImageDataSet(AppRes.DB.Connect, null, null);
            cheP2Set         = new ChemicalP2DataSet(AppRes.DB.Connect, null, null);
            cheP2ExtendSet   = new ChemicalP2ExtendDataSet(AppRes.DB.Connect, null, null);
            cheReportSet     = new ChemicalReportDataSet(AppRes.DB.Connect, null, null);
            profJobSet       = new ProfJobDataSet(AppRes.DB.Connect, null, null);
            profJobSchemeSet = new ProfJobSchemeDataSet(AppRes.DB.Connect, null, null);

            ctrlUs             = new CtrlEditChemicalUs();
            ctrlUs.MainSet     = cheMainSet;
            ctrlUs.P2Set       = cheP2Set;
            ctrlUs.P2ExtendSet = cheP2ExtendSet;
            ctrlUs.ImageSet    = cheImageSet;

            ctrlEu          = new CtrlEditChemicalEu();
            ctrlEu.MainSet  = cheMainSet;
            ctrlEu.P2Set    = cheP2Set;
            ctrlEu.ImageSet = cheImageSet;

            cheQuery                  = new ChemicalQuery();
            cheQuery.MainSet          = cheMainSet;
            cheQuery.ImageSet         = cheImageSet;
            cheQuery.JoinSet          = cheJoinSet;
            cheQuery.P2Set            = cheP2Set;
            cheQuery.P2ExtendSet      = cheP2ExtendSet;
            cheQuery.ProfJobSet       = profJobSet;
            cheQuery.ProfJobSchemeSet = profJobSchemeSet;
            cheQuery.CtrlUs           = ctrlUs;
            cheQuery.CtrlEu           = ctrlEu;

            bookmark = new GridBookmark(chemicalGridView);
            AppHelper.SetGridEvenRow(chemicalGridView);

            chemicalAreaColumn.DisplayFormat.FormatType = FormatType.Custom;
            chemicalAreaColumn.DisplayFormat.Format     = new ReportAreaFormat();

            chemicalRegTimeColumn.DisplayFormat.FormatType = FormatType.Custom;
            chemicalRegTimeColumn.DisplayFormat.Format     = new ReportDateTimeFormat();

            approvalCombo.DataSource    = EnumHelper.GetNameValues <EReportApproval>();
            approvalCombo.DisplayMember = "Name";
            approvalCombo.ValueMember   = "Value";

            areaCombo.DataSource    = EnumHelper.GetNameValues <EReportArea>();
            areaCombo.DisplayMember = "Name";
            areaCombo.ValueMember   = "Value";

            SetControl(null);
        }
示例#4
0
        private void Initialize()
        {
            profJobSet = new ProfJobDataSet(AppRes.DB.Connect, null, null);
            bookmark   = new GridBookmark(reportGridView);
            AppHelper.SetGridEvenRow(reportGridView);

            reportAreaColumn.DisplayFormat.FormatType = FormatType.Custom;
            reportAreaColumn.DisplayFormat.Format     = new ReportAreaFormat();

            areaCombo.DataSource    = EnumHelper.GetNameValues <EReportArea>();
            areaCombo.DisplayMember = "Name";
            areaCombo.ValueMember   = "Value";

            Type   = EReportType.None;
            JobNo  = string.Empty;
            ItemNo = string.Empty;
        }
        private void Initialize()
        {
            productSet = new ProductDataSet(AppRes.DB.Connect, null, null);

            ctrlUs = new CtrlEditIntegrationUs();

            ctrlEu = new CtrlEditIntegrationEu();

            bookmark = new GridBookmark(integrationGridView);
            AppHelper.SetGridEvenRow(integrationGridView);

            integAreaColumn.DisplayFormat.FormatType = FormatType.Custom;
            integAreaColumn.DisplayFormat.Format     = new ReportAreaFormat();

            integRegTimeColumn.DisplayFormat.FormatType = FormatType.Custom;
            integRegTimeColumn.DisplayFormat.Format     = new ReportDateTimeFormat();

            areaCombo.DataSource    = EnumHelper.GetNameValues <EReportArea>();
            areaCombo.DisplayMember = "Name";
            areaCombo.ValueMember   = "Value";

            SetControl(null);
        }
        private void Initialize()
        {
            phyCheckSet  = new PhysicalMainDataSet(AppRes.DB.Connect, null, null);
            phyMainSet   = new PhysicalMainDataSet(AppRes.DB.Connect, null, null);
            phyImageSet  = new PhysicalImageDataSet(AppRes.DB.Connect, null, null);
            phyP2Set     = new PhysicalP2DataSet(AppRes.DB.Connect, null, null);
            phyP3Set     = new PhysicalP3DataSet(AppRes.DB.Connect, null, null);
            phyP40Set    = new PhysicalP40DataSet(AppRes.DB.Connect, null, null);
            phyP41Set    = new PhysicalP41DataSet(AppRes.DB.Connect, null, null);
            phyP5Set     = new PhysicalP5DataSet(AppRes.DB.Connect, null, null);
            phyReportSet = new PhysicalReportDataSet(AppRes.DB.Connect, null, null);
            profJobSet   = new ProfJobDataSet(AppRes.DB.Connect, null, null);

            ctrlUs          = new CtrlEditPhysicalUs();
            ctrlUs.MainSet  = phyMainSet;
            ctrlUs.ImageSet = phyImageSet;
            ctrlUs.P2Set    = phyP2Set;
            ctrlUs.P3Set    = phyP3Set;
            ctrlUs.P4Set    = phyP41Set;
            ctrlUs.P5Set    = phyP5Set;

            ctrlEu          = new CtrlEditPhysicalEu();
            ctrlEu.MainSet  = phyMainSet;
            ctrlEu.ImageSet = phyImageSet;
            ctrlEu.P2Set    = phyP2Set;
            ctrlEu.P3Set    = phyP3Set;
            ctrlEu.P40Set   = phyP40Set;
            ctrlEu.P41Set   = phyP41Set;
            ctrlEu.P5Set    = phyP5Set;

            phyQuery            = new PhysicalQuery();
            phyQuery.MainSet    = phyMainSet;
            phyQuery.ImageSet   = phyImageSet;
            phyQuery.P2Set      = phyP2Set;
            phyQuery.P3Set      = phyP3Set;
            phyQuery.P40Set     = phyP40Set;
            phyQuery.P41Set     = phyP41Set;
            phyQuery.P5Set      = phyP5Set;
            phyQuery.ProfJobSet = profJobSet;
            phyQuery.CtrlUs     = ctrlUs;
            phyQuery.CtrlEu     = ctrlEu;

            bookmark = new GridBookmark(physicalGridView);
            AppHelper.SetGridEvenRow(physicalGridView);

            physicalAreaColumn.DisplayFormat.FormatType = FormatType.Custom;
            physicalAreaColumn.DisplayFormat.Format     = new ReportAreaFormat();

            physicalRegTimeColumn.DisplayFormat.FormatType = FormatType.Custom;
            physicalRegTimeColumn.DisplayFormat.Format     = new ReportDateTimeFormat();

            approvalCombo.DataSource    = EnumHelper.GetNameValues <EReportApproval>();
            approvalCombo.DisplayMember = "Name";
            approvalCombo.ValueMember   = "Value";

            areaCombo.DataSource    = EnumHelper.GetNameValues <EReportArea>();
            areaCombo.DisplayMember = "Name";
            areaCombo.ValueMember   = "Value";

            SetControl(null);
        }