프로젝트

일반

사용자정보

개정판 ee82162b

IDee82162bf21d5f3cfe7fd2c7f4a604d8fd990784
상위 99c0623d
하위 770ecc71

유성호이(가) 일년 이상 전에 추가함

issue #0000
AVEVA : Gateway(성공/실패), 시스템등록(성공,실패) 조회 조건 추가

Change-Id: Ibeb7f18b7f6ab34c37eb41f1ee8483729bd20c02

차이점 보기:

ID2.Manager/ID2.Manager.Controller/Controllers/DocumentController.cs
31 31
            }
32 32
        }
33 33

  
34
        public (IEnumerable<Documents> dwgs, int totalCnt) GetDocuments(string projectCode, string personIncharge, string jobLevel, string documentNo, string isToIsDiscussion, string isFrReviewStatus, string isID2Work, string id2Status, string avevaStatus, string prodIsResult, string clientIsResult)
34
        public (IEnumerable<Documents> dwgs, int totalCnt) GetDocuments(string projectCode, string personIncharge, string jobLevel, string documentNo, string isToIsDiscussion, string isFrReviewStatus, string isID2Work, string id2Status, string avevaStatus, string prodIsResult, string clientIsResult, string isGateWay, string isRegSystem)
35 35
        {
36 36
            try
37 37
            {
38 38
                using (DocumentRepository rep = new DocumentRepository(this._MSSQLCONNSTR))
39 39
                {
40
                    return rep.GetDocuments(projectCode, personIncharge, jobLevel, documentNo, isToIsDiscussion, isFrReviewStatus, isID2Work, id2Status, avevaStatus, prodIsResult, clientIsResult);
40
                    return rep.GetDocuments(projectCode, personIncharge, jobLevel, documentNo, isToIsDiscussion, isFrReviewStatus, isID2Work, id2Status, avevaStatus, prodIsResult, clientIsResult, isGateWay, isRegSystem);
41 41
                }
42 42
            }
43 43
            catch (Exception ex)
......
46 46
            }
47 47
        }
48 48

  
49
        public (IEnumerable<Documents> dwgs, int totalCnt) GetDocuments(List<ID2ProjectInfo> id2Infos, string projectCode, string personIncharge, string jobLevel, string documentNo, string isToIsDiscussion, string isFrReviewStatus, string isID2Work, string id2Status, string avevaStatus, string prodIsResult, string clientIsResult)
49
        public (IEnumerable<Documents> dwgs, int totalCnt) GetDocuments(List<ID2ProjectInfo> id2Infos, string projectCode, string personIncharge, string jobLevel, string documentNo, string isToIsDiscussion, string isFrReviewStatus, string isID2Work, string id2Status, string avevaStatus, string prodIsResult, string clientIsResult, string isGateWay, string isRegSystem)
50 50
        {
51 51
            try
52 52
            {
53
                var (dwgs, totalCnt) = this.GetDocuments(projectCode, personIncharge, jobLevel, documentNo, isToIsDiscussion, isFrReviewStatus, isID2Work, id2Status, avevaStatus, prodIsResult, clientIsResult);
53
                var (dwgs, totalCnt) = this.GetDocuments(projectCode, personIncharge, jobLevel, documentNo, isToIsDiscussion, isFrReviewStatus, isID2Work, id2Status, avevaStatus, prodIsResult, clientIsResult, isGateWay, isRegSystem);
54 54

  
55 55
                IEnumerable<Documents> docs = dwgs;
56 56
                List<ID2Drawings> id2docs = null;
ID2.Manager/ID2.Manager.Dapper/Repository/DocumentRepository.cs
48 48
            }
49 49
        }
50 50

  
51
        public (IEnumerable<Documents> dwgs, int totalCnt) GetDocuments(string projectCode, string personIncharge, string jobLevel, string documentNo, string isToIsDiscussion, string isFrReviewStatus, string isID2Work, string id2Status, string avevaStatus, string prodIsResult, string clientIsResult)
51
        public (IEnumerable<Documents> dwgs, int totalCnt) GetDocuments(string projectCode, string personIncharge, string jobLevel, string documentNo, string isToIsDiscussion, string isFrReviewStatus, string isID2Work, string id2Status, string avevaStatus, string prodIsResult, string clientIsResult, string isGateWay, string isRegSystem)
52 52
        {
53 53
            var dynamicParameters = new DynamicParameters();
54 54
            dynamicParameters.Add("Total", dbType: DbType.Int32, direction: ParameterDirection.Output);
......
117 117
                sbWhere.Append(" and doc.ClientIsResult=@ClientIsResult ");
118 118
                parameters.Add("ClientIsResult", clientIsResult);
119 119
            }
120
            if (!string.IsNullOrEmpty(isGateWay))
121
            {
122
                sbWhere.Append(" and doc.DTIsGateWay=@DTIsGateWay ");
123
                parameters.Add("DTIsGateWay", isGateWay);
124
            }
125
            if (!string.IsNullOrEmpty(isRegSystem))
126
            {
127
                sbWhere.Append(" and doc.DTIsRegSystem=@DTIsRegSystem ");
128
                parameters.Add("DTIsRegSystem", isRegSystem);
129
            }
120 130

  
121 131
            try
122 132
            {
ID2.Manager/ID2.Manager/Classes/DocumentsWorker.cs
30 30
        string AvevaStatus { get; set; }
31 31
        string ProdIsResult { get; set; }
32 32
        string ClientIsResult { get; set; }
33
        string DTIsGateWay { get; set; }
34
        string DTIsRegSystem { get; set; }
33 35

  
34
        public LoadDocumentsWorker(string projectCode, string personIncharge, string jobLevel, string documentNo, string isToIsDiscussion, string isFrReviewStatus, string isID2Work, string id2Status, string avevaStatus, string prodIsResult, string clientIsResult, Control parent = null) : base(parent)
36
        public LoadDocumentsWorker(string projectCode, string personIncharge, string jobLevel, string documentNo, string isToIsDiscussion, string isFrReviewStatus, string isID2Work, string id2Status, string avevaStatus, string prodIsResult, string clientIsResult, string isGateWay, string isRegSystem, Control parent = null) : base(parent)
35 37
        {
36 38
            this.ProjectCode = projectCode;
37 39
            this.PersonIncharge = personIncharge;
......
44 46
            this.AvevaStatus = avevaStatus;
45 47
            this.ProdIsResult = prodIsResult;
46 48
            this.ClientIsResult = clientIsResult;
49
            this.DTIsGateWay = isGateWay;
50
            this.DTIsRegSystem = isRegSystem;
47 51
        }
48 52

  
49 53
        protected override void DoWork(BackgroundWorker worker, DoWorkEventArgs e)
50 54
        {
51 55
            try
52 56
            {
53
                var (dwgs, totalCnt) = new DocumentController().GetDocuments(this.ProjectCode, this.PersonIncharge, this.JobLevel, this.DocumentNo, this.IsToIsDiscussion, this.IsFrReviewStatus, this.IsID2Work, this.Id2Status, this.AvevaStatus, this.ProdIsResult, this.ClientIsResult);
57
                var (dwgs, totalCnt) = new DocumentController().GetDocuments(this.ProjectCode, this.PersonIncharge, this.JobLevel, this.DocumentNo, this.IsToIsDiscussion, this.IsFrReviewStatus, this.IsID2Work, this.Id2Status, this.AvevaStatus, this.ProdIsResult, this.ClientIsResult, this.DTIsGateWay, this.DTIsRegSystem);
54 58
                e.Result = new DocumentsResult() { Dwgs = dwgs.ToList(), TotalCount = totalCnt };
55 59
            }
56 60
            catch (Exception ex)
ID2.Manager/ID2.Manager/Main.Designer.cs
91 91
            this.radButtonElementSync = new Telerik.WinControls.UI.RadButtonElement();
92 92
            this.radRibbonBarGroup1 = new Telerik.WinControls.UI.RadRibbonBarGroup();
93 93
            this.radButtonElementNotice = new Telerik.WinControls.UI.RadButtonElement();
94
            this.radButtonElementNoticeUpload = new Telerik.WinControls.UI.RadButtonElement();
94 95
            this.ribbonTabProjMgt = new Telerik.WinControls.UI.RibbonTab();
95 96
            this.radRibbonBarGroupExcel = new Telerik.WinControls.UI.RadRibbonBarGroup();
96 97
            this.radButtonElementExcelImport = new Telerik.WinControls.UI.RadButtonElement();
......
128 129
            this.radDropDownListAVEVAStatus = new Telerik.WinControls.UI.RadDropDownList();
129 130
            this.radDropDownListProdIsResult = new Telerik.WinControls.UI.RadDropDownList();
130 131
            this.radDropDownListClientIsResult = new Telerik.WinControls.UI.RadDropDownList();
132
            this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
133
            this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
134
            this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
135
            this.radDropDownListGateway = new Telerik.WinControls.UI.RadDropDownList();
136
            this.radDropDownListRegistration = new Telerik.WinControls.UI.RadDropDownList();
131 137
            this.tableLayoutPanelGroup = new System.Windows.Forms.TableLayoutPanel();
132 138
            this.radLabelGroupVIew = new Telerik.WinControls.UI.RadLabel();
133 139
            this.radCheckBox4 = new Telerik.WinControls.UI.RadCheckBox();
......
164 170
            this.radStatusStripMain = new Telerik.WinControls.UI.RadStatusStrip();
165 171
            this.radLabelElementSpace = new Telerik.WinControls.UI.RadLabelElement();
166 172
            this.radLabelElementUser = new Telerik.WinControls.UI.RadLabelElement();
167
            this.radButtonElementNoticeUpload = new Telerik.WinControls.UI.RadButtonElement();
168 173
            ((System.ComponentModel.ISupportInitialize)(this.ID2ManagerRadRibbonBar)).BeginInit();
169 174
            ((System.ComponentModel.ISupportInitialize)(this.radRibbonBarBackstageViewID2Manager)).BeginInit();
170 175
            this.radRibbonBarBackstageViewID2Manager.SuspendLayout();
......
201 206
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownListAVEVAStatus)).BeginInit();
202 207
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownListProdIsResult)).BeginInit();
203 208
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownListClientIsResult)).BeginInit();
209
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
210
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
211
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
212
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownListGateway)).BeginInit();
213
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownListRegistration)).BeginInit();
204 214
            this.tableLayoutPanelGroup.SuspendLayout();
205 215
            ((System.ComponentModel.ISupportInitialize)(this.radLabelGroupVIew)).BeginInit();
206 216
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox4)).BeginInit();
......
340 350
            this.radButtonElementNotice.TextAlignment = System.Drawing.ContentAlignment.BottomCenter;
341 351
            this.radButtonElementNotice.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
342 352
            // 
353
            // radButtonElementNoticeUpload
354
            // 
355
            this.radButtonElementNoticeUpload.Name = "radButtonElementNoticeUpload";
356
            this.radButtonElementNoticeUpload.Text = "Upload";
357
            // 
343 358
            // ribbonTabProjMgt
344 359
            // 
345 360
            this.ribbonTabProjMgt.IsSelected = false;
......
432 447
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
433 448
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
434 449
            this.tableLayoutPanel1.RowCount = 4;
435
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 120F));
450
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 150F));
436 451
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
437 452
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
438 453
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
......
444 459
            this.tableLayoutPanelCondition.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(207)))), ((int)(((byte)(223)))), ((int)(((byte)(245)))));
445 460
            this.tableLayoutPanelCondition.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
446 461
            this.tableLayoutPanelCondition.ColumnCount = 10;
447
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 50F));
462
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 55F));
448 463
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 85F));
449 464
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
450 465
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 85F));
......
453 468
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
454 469
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 85F));
455 470
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
456
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 86F));
457
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
471
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 61F));
458 472
            this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListFrReviewStatus, 4, 1);
459 473
            this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListToIsDiscussion, 2, 1);
460 474
            this.tableLayoutPanelCondition.Controls.Add(this.radLabelFrReviewStatus, 3, 1);
......
482 496
            this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListAVEVAStatus, 4, 2);
483 497
            this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListProdIsResult, 2, 3);
484 498
            this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListClientIsResult, 4, 3);
499
            this.tableLayoutPanelCondition.Controls.Add(this.radLabel6, 0, 4);
500
            this.tableLayoutPanelCondition.Controls.Add(this.radLabel7, 3, 4);
501
            this.tableLayoutPanelCondition.Controls.Add(this.radLabel5, 1, 4);
502
            this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListGateway, 2, 4);
503
            this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListRegistration, 4, 4);
485 504
            this.tableLayoutPanelCondition.Dock = System.Windows.Forms.DockStyle.Fill;
486 505
            this.tableLayoutPanelCondition.Location = new System.Drawing.Point(13, 3);
487 506
            this.tableLayoutPanelCondition.Name = "tableLayoutPanelCondition";
488
            this.tableLayoutPanelCondition.RowCount = 4;
489
            this.tableLayoutPanelCondition.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
490
            this.tableLayoutPanelCondition.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
491
            this.tableLayoutPanelCondition.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
492
            this.tableLayoutPanelCondition.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
493
            this.tableLayoutPanelCondition.Size = new System.Drawing.Size(946, 114);
507
            this.tableLayoutPanelCondition.RowCount = 5;
508
            this.tableLayoutPanelCondition.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20.83333F));
509
            this.tableLayoutPanelCondition.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20.83333F));
510
            this.tableLayoutPanelCondition.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20.83333F));
511
            this.tableLayoutPanelCondition.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20.83333F));
512
            this.tableLayoutPanelCondition.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66667F));
513
            this.tableLayoutPanelCondition.Size = new System.Drawing.Size(946, 144);
494 514
            this.tableLayoutPanelCondition.TabIndex = 6;
495 515
            // 
496 516
            // radDropDownListFrReviewStatus
......
498 518
            this.radDropDownListFrReviewStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
499 519
            this.radDropDownListFrReviewStatus.DropDownAnimationEnabled = true;
500 520
            this.radDropDownListFrReviewStatus.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
501
            this.radDropDownListFrReviewStatus.Location = new System.Drawing.Point(342, 32);
521
            this.radDropDownListFrReviewStatus.Location = new System.Drawing.Point(352, 34);
502 522
            this.radDropDownListFrReviewStatus.Name = "radDropDownListFrReviewStatus";
503
            this.radDropDownListFrReviewStatus.Size = new System.Drawing.Size(108, 20);
523
            this.radDropDownListFrReviewStatus.Size = new System.Drawing.Size(113, 20);
504 524
            this.radDropDownListFrReviewStatus.TabIndex = 18;
505 525
            // 
506 526
            // radDropDownListToIsDiscussion
......
508 528
            this.radDropDownListToIsDiscussion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
509 529
            this.radDropDownListToIsDiscussion.DropDownAnimationEnabled = true;
510 530
            this.radDropDownListToIsDiscussion.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
511
            this.radDropDownListToIsDiscussion.Location = new System.Drawing.Point(141, 32);
531
            this.radDropDownListToIsDiscussion.Location = new System.Drawing.Point(146, 34);
512 532
            this.radDropDownListToIsDiscussion.Name = "radDropDownListToIsDiscussion";
513
            this.radDropDownListToIsDiscussion.Size = new System.Drawing.Size(108, 20);
533
            this.radDropDownListToIsDiscussion.Size = new System.Drawing.Size(113, 20);
514 534
            this.radDropDownListToIsDiscussion.TabIndex = 17;
515 535
            // 
516 536
            // radLabelFrReviewStatus
517 537
            // 
518 538
            this.radLabelFrReviewStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
519 539
            this.radLabelFrReviewStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
520
            this.radLabelFrReviewStatus.Location = new System.Drawing.Point(256, 34);
540
            this.radLabelFrReviewStatus.Location = new System.Drawing.Point(266, 35);
521 541
            this.radLabelFrReviewStatus.Name = "radLabelFrReviewStatus";
522 542
            this.radLabelFrReviewStatus.Size = new System.Drawing.Size(59, 17);
523 543
            this.radLabelFrReviewStatus.TabIndex = 7;
......
527 547
            // 
528 548
            this.radLabelToIsDiscussion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
529 549
            this.radLabelToIsDiscussion.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
530
            this.radLabelToIsDiscussion.Location = new System.Drawing.Point(55, 34);
550
            this.radLabelToIsDiscussion.Location = new System.Drawing.Point(60, 35);
531 551
            this.radLabelToIsDiscussion.Name = "radLabelToIsDiscussion";
532 552
            this.radLabelToIsDiscussion.Size = new System.Drawing.Size(79, 17);
533 553
            this.radLabelToIsDiscussion.TabIndex = 7;
......
537 557
            // 
538 558
            this.radLabel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
539 559
            this.radLabel9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
540
            this.radLabel9.Location = new System.Drawing.Point(55, 90);
560
            this.radLabel9.Location = new System.Drawing.Point(60, 93);
541 561
            this.radLabel9.Name = "radLabel9";
542 562
            this.radLabel9.Size = new System.Drawing.Size(79, 17);
543 563
            this.radLabel9.TabIndex = 8;
......
547 567
            // 
548 568
            this.radLabelAVEVAStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
549 569
            this.radLabelAVEVAStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
550
            this.radLabelAVEVAStatus.Location = new System.Drawing.Point(256, 62);
570
            this.radLabelAVEVAStatus.Location = new System.Drawing.Point(266, 64);
551 571
            this.radLabelAVEVAStatus.Name = "radLabelAVEVAStatus";
552 572
            this.radLabelAVEVAStatus.Size = new System.Drawing.Size(86, 17);
553 573
            this.radLabelAVEVAStatus.TabIndex = 8;
......
557 577
            // 
558 578
            this.radLabelIsID2Work.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
559 579
            this.radLabelIsID2Work.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
560
            this.radLabelIsID2Work.Location = new System.Drawing.Point(457, 34);
580
            this.radLabelIsID2Work.Location = new System.Drawing.Point(472, 35);
561 581
            this.radLabelIsID2Work.Name = "radLabelIsID2Work";
562 582
            this.radLabelIsID2Work.Size = new System.Drawing.Size(80, 17);
563 583
            this.radLabelIsID2Work.TabIndex = 6;
......
567 587
            // 
568 588
            this.radLabelJobLevel.Anchor = System.Windows.Forms.AnchorStyles.Left;
569 589
            this.radLabelJobLevel.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
570
            this.radLabelJobLevel.Location = new System.Drawing.Point(457, 6);
590
            this.radLabelJobLevel.Location = new System.Drawing.Point(472, 6);
571 591
            this.radLabelJobLevel.Name = "radLabelJobLevel";
572 592
            this.radLabelJobLevel.Size = new System.Drawing.Size(47, 17);
573 593
            this.radLabelJobLevel.TabIndex = 7;
......
577 597
            // 
578 598
            this.radLabel4.Anchor = System.Windows.Forms.AnchorStyles.Left;
579 599
            this.radLabel4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
580
            this.radLabel4.Location = new System.Drawing.Point(4, 90);
600
            this.radLabel4.Location = new System.Drawing.Point(4, 93);
581 601
            this.radLabel4.Name = "radLabel4";
582
            this.radLabel4.Size = new System.Drawing.Size(41, 17);
602
            this.radLabel4.Size = new System.Drawing.Size(34, 17);
583 603
            this.radLabel4.TabIndex = 6;
584 604
            this.radLabel4.Text = "검수";
585 605
            // 
......
587 607
            // 
588 608
            this.radLabel3.Anchor = System.Windows.Forms.AnchorStyles.Left;
589 609
            this.radLabel3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
590
            this.radLabel3.Location = new System.Drawing.Point(4, 62);
610
            this.radLabel3.Location = new System.Drawing.Point(4, 64);
591 611
            this.radLabel3.Name = "radLabel3";
592
            this.radLabel3.Size = new System.Drawing.Size(41, 17);
612
            this.radLabel3.Size = new System.Drawing.Size(34, 17);
593 613
            this.radLabel3.TabIndex = 6;
594 614
            this.radLabel3.Text = "작업";
595 615
            // 
......
597 617
            // 
598 618
            this.radLabel2.Anchor = System.Windows.Forms.AnchorStyles.Left;
599 619
            this.radLabel2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
600
            this.radLabel2.Location = new System.Drawing.Point(4, 34);
620
            this.radLabel2.Location = new System.Drawing.Point(4, 35);
601 621
            this.radLabel2.Name = "radLabel2";
602
            this.radLabel2.Size = new System.Drawing.Size(41, 17);
622
            this.radLabel2.Size = new System.Drawing.Size(34, 17);
603 623
            this.radLabel2.TabIndex = 6;
604 624
            this.radLabel2.Text = "검토";
605 625
            // 
......
607 627
            // 
608 628
            this.radLabelTeam.Anchor = System.Windows.Forms.AnchorStyles.Left;
609 629
            this.radLabelTeam.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
610
            this.radLabelTeam.Location = new System.Drawing.Point(55, 6);
630
            this.radLabelTeam.Location = new System.Drawing.Point(60, 6);
611 631
            this.radLabelTeam.Name = "radLabelTeam";
612
            this.radLabelTeam.Size = new System.Drawing.Size(41, 17);
632
            this.radLabelTeam.Size = new System.Drawing.Size(38, 17);
613 633
            this.radLabelTeam.TabIndex = 5;
614 634
            this.radLabelTeam.Text = "Team";
615 635
            // 
......
618 638
            this.radButtonSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
619 639
            this.radButtonSearch.Cursor = System.Windows.Forms.Cursors.Hand;
620 640
            this.radButtonSearch.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
621
            this.radButtonSearch.Location = new System.Drawing.Point(873, 4);
641
            this.radButtonSearch.Location = new System.Drawing.Point(886, 4);
622 642
            this.radButtonSearch.Name = "radButtonSearch";
623
            this.tableLayoutPanelCondition.SetRowSpan(this.radButtonSearch, 4);
624
            this.radButtonSearch.Size = new System.Drawing.Size(54, 106);
643
            this.tableLayoutPanelCondition.SetRowSpan(this.radButtonSearch, 5);
644
            this.radButtonSearch.Size = new System.Drawing.Size(54, 136);
625 645
            this.radButtonSearch.TabIndex = 3;
626 646
            this.radButtonSearch.Text = "Search";
627 647
            // 
......
630 650
            this.radDropDownListProject.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
631 651
            this.radDropDownListProject.DropDownAnimationEnabled = true;
632 652
            this.radDropDownListProject.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
633
            this.radDropDownListProject.Location = new System.Drawing.Point(141, 4);
653
            this.radDropDownListProject.Location = new System.Drawing.Point(146, 5);
634 654
            this.radDropDownListProject.Name = "radDropDownListProject";
635
            this.radDropDownListProject.Size = new System.Drawing.Size(108, 20);
655
            this.radDropDownListProject.Size = new System.Drawing.Size(113, 20);
636 656
            this.radDropDownListProject.TabIndex = 7;
637 657
            // 
638 658
            // radLabelDocumentNo
639 659
            // 
640 660
            this.radLabelDocumentNo.Anchor = System.Windows.Forms.AnchorStyles.Left;
641 661
            this.radLabelDocumentNo.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
642
            this.radLabelDocumentNo.Location = new System.Drawing.Point(658, 6);
662
            this.radLabelDocumentNo.Location = new System.Drawing.Point(678, 6);
643 663
            this.radLabelDocumentNo.Name = "radLabelDocumentNo";
644 664
            this.radLabelDocumentNo.Size = new System.Drawing.Size(49, 17);
645 665
            this.radLabelDocumentNo.TabIndex = 6;
......
648 668
            // radTextBoxDocumentNo
649 669
            // 
650 670
            this.radTextBoxDocumentNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
651
            this.radTextBoxDocumentNo.Location = new System.Drawing.Point(744, 4);
671
            this.radTextBoxDocumentNo.Location = new System.Drawing.Point(764, 5);
652 672
            this.radTextBoxDocumentNo.Name = "radTextBoxDocumentNo";
653
            this.radTextBoxDocumentNo.Size = new System.Drawing.Size(108, 20);
673
            this.radTextBoxDocumentNo.Size = new System.Drawing.Size(113, 20);
654 674
            this.radTextBoxDocumentNo.TabIndex = 8;
655 675
            // 
656 676
            // radLabelPersonInCharge
657 677
            // 
658 678
            this.radLabelPersonInCharge.Anchor = System.Windows.Forms.AnchorStyles.Left;
659 679
            this.radLabelPersonInCharge.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
660
            this.radLabelPersonInCharge.Location = new System.Drawing.Point(256, 6);
680
            this.radLabelPersonInCharge.Location = new System.Drawing.Point(266, 6);
661 681
            this.radLabelPersonInCharge.Name = "radLabelPersonInCharge";
662 682
            this.radLabelPersonInCharge.Size = new System.Drawing.Size(47, 17);
663 683
            this.radLabelPersonInCharge.TabIndex = 6;
......
668 688
            this.radDropDownListPersonInCharge.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
669 689
            this.radDropDownListPersonInCharge.DropDownAnimationEnabled = true;
670 690
            this.radDropDownListPersonInCharge.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
671
            this.radDropDownListPersonInCharge.Location = new System.Drawing.Point(342, 4);
691
            this.radDropDownListPersonInCharge.Location = new System.Drawing.Point(352, 5);
672 692
            this.radDropDownListPersonInCharge.Name = "radDropDownListPersonInCharge";
673
            this.radDropDownListPersonInCharge.Size = new System.Drawing.Size(108, 20);
693
            this.radDropDownListPersonInCharge.Size = new System.Drawing.Size(113, 20);
674 694
            this.radDropDownListPersonInCharge.TabIndex = 9;
675 695
            // 
676 696
            // radLabel1
......
679 699
            this.radLabel1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
680 700
            this.radLabel1.Location = new System.Drawing.Point(4, 6);
681 701
            this.radLabel1.Name = "radLabel1";
682
            this.radLabel1.Size = new System.Drawing.Size(41, 17);
702
            this.radLabel1.Size = new System.Drawing.Size(34, 17);
683 703
            this.radLabel1.TabIndex = 10;
684 704
            this.radLabel1.Text = "도면";
685 705
            // 
......
688 708
            this.radDropDownListJobLevel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
689 709
            this.radDropDownListJobLevel.DropDownAnimationEnabled = true;
690 710
            this.radDropDownListJobLevel.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
691
            this.radDropDownListJobLevel.Location = new System.Drawing.Point(543, 4);
711
            this.radDropDownListJobLevel.Location = new System.Drawing.Point(558, 5);
692 712
            this.radDropDownListJobLevel.Name = "radDropDownListJobLevel";
693
            this.radDropDownListJobLevel.Size = new System.Drawing.Size(108, 20);
713
            this.radDropDownListJobLevel.Size = new System.Drawing.Size(113, 20);
694 714
            this.radDropDownListJobLevel.TabIndex = 11;
695 715
            // 
696 716
            // radLabelID2Status
697 717
            // 
698 718
            this.radLabelID2Status.Anchor = System.Windows.Forms.AnchorStyles.Left;
699 719
            this.radLabelID2Status.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
700
            this.radLabelID2Status.Location = new System.Drawing.Point(55, 62);
720
            this.radLabelID2Status.Location = new System.Drawing.Point(60, 64);
701 721
            this.radLabelID2Status.Name = "radLabelID2Status";
702
            this.radLabelID2Status.Size = new System.Drawing.Size(60, 17);
722
            this.radLabelID2Status.Size = new System.Drawing.Size(64, 17);
703 723
            this.radLabelID2Status.TabIndex = 7;
704 724
            this.radLabelID2Status.Text = "ID2 Status";
705 725
            // 
......
707 727
            // 
708 728
            this.radLabel10.Anchor = System.Windows.Forms.AnchorStyles.Left;
709 729
            this.radLabel10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
710
            this.radLabel10.Location = new System.Drawing.Point(256, 90);
730
            this.radLabel10.Location = new System.Drawing.Point(266, 93);
711 731
            this.radLabel10.Name = "radLabel10";
712 732
            this.radLabel10.Size = new System.Drawing.Size(61, 17);
713 733
            this.radLabel10.TabIndex = 9;
......
718 738
            this.radDropDownListIsID2Work.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
719 739
            this.radDropDownListIsID2Work.DropDownAnimationEnabled = true;
720 740
            this.radDropDownListIsID2Work.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
721
            this.radDropDownListIsID2Work.Location = new System.Drawing.Point(543, 32);
741
            this.radDropDownListIsID2Work.Location = new System.Drawing.Point(558, 34);
722 742
            this.radDropDownListIsID2Work.Name = "radDropDownListIsID2Work";
723
            this.radDropDownListIsID2Work.Size = new System.Drawing.Size(108, 20);
743
            this.radDropDownListIsID2Work.Size = new System.Drawing.Size(113, 20);
724 744
            this.radDropDownListIsID2Work.TabIndex = 12;
725 745
            // 
726 746
            // radDropDownListID2Status
......
728 748
            this.radDropDownListID2Status.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
729 749
            this.radDropDownListID2Status.DropDownAnimationEnabled = true;
730 750
            this.radDropDownListID2Status.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
731
            this.radDropDownListID2Status.Location = new System.Drawing.Point(141, 60);
751
            this.radDropDownListID2Status.Location = new System.Drawing.Point(146, 63);
732 752
            this.radDropDownListID2Status.Name = "radDropDownListID2Status";
733
            this.radDropDownListID2Status.Size = new System.Drawing.Size(108, 20);
753
            this.radDropDownListID2Status.Size = new System.Drawing.Size(113, 20);
734 754
            this.radDropDownListID2Status.TabIndex = 13;
735 755
            // 
736 756
            // radDropDownListAVEVAStatus
......
738 758
            this.radDropDownListAVEVAStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
739 759
            this.radDropDownListAVEVAStatus.DropDownAnimationEnabled = true;
740 760
            this.radDropDownListAVEVAStatus.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
741
            this.radDropDownListAVEVAStatus.Location = new System.Drawing.Point(342, 60);
761
            this.radDropDownListAVEVAStatus.Location = new System.Drawing.Point(352, 63);
742 762
            this.radDropDownListAVEVAStatus.Name = "radDropDownListAVEVAStatus";
743
            this.radDropDownListAVEVAStatus.Size = new System.Drawing.Size(108, 20);
763
            this.radDropDownListAVEVAStatus.Size = new System.Drawing.Size(113, 20);
744 764
            this.radDropDownListAVEVAStatus.TabIndex = 14;
745 765
            // 
746 766
            // radDropDownListProdIsResult
......
748 768
            this.radDropDownListProdIsResult.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
749 769
            this.radDropDownListProdIsResult.DropDownAnimationEnabled = true;
750 770
            this.radDropDownListProdIsResult.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
751
            this.radDropDownListProdIsResult.Location = new System.Drawing.Point(141, 89);
771
            this.radDropDownListProdIsResult.Location = new System.Drawing.Point(146, 92);
752 772
            this.radDropDownListProdIsResult.Name = "radDropDownListProdIsResult";
753
            this.radDropDownListProdIsResult.Size = new System.Drawing.Size(108, 20);
773
            this.radDropDownListProdIsResult.Size = new System.Drawing.Size(113, 20);
754 774
            this.radDropDownListProdIsResult.TabIndex = 15;
755 775
            // 
756 776
            // radDropDownListClientIsResult
......
758 778
            this.radDropDownListClientIsResult.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
759 779
            this.radDropDownListClientIsResult.DropDownAnimationEnabled = true;
760 780
            this.radDropDownListClientIsResult.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
761
            this.radDropDownListClientIsResult.Location = new System.Drawing.Point(342, 89);
781
            this.radDropDownListClientIsResult.Location = new System.Drawing.Point(352, 92);
762 782
            this.radDropDownListClientIsResult.Name = "radDropDownListClientIsResult";
763
            this.radDropDownListClientIsResult.Size = new System.Drawing.Size(108, 20);
783
            this.radDropDownListClientIsResult.Size = new System.Drawing.Size(113, 20);
764 784
            this.radDropDownListClientIsResult.TabIndex = 16;
765 785
            // 
786
            // radLabel6
787
            // 
788
            this.radLabel6.Anchor = System.Windows.Forms.AnchorStyles.Left;
789
            this.radLabel6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
790
            this.radLabel6.Location = new System.Drawing.Point(4, 121);
791
            this.radLabel6.Name = "radLabel6";
792
            this.radLabel6.Size = new System.Drawing.Size(49, 17);
793
            this.radLabel6.TabIndex = 10;
794
            this.radLabel6.Text = "AVEVA";
795
            // 
796
            // radLabel7
797
            // 
798
            this.radLabel7.Anchor = System.Windows.Forms.AnchorStyles.Left;
799
            this.radLabel7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
800
            this.radLabel7.Location = new System.Drawing.Point(266, 121);
801
            this.radLabel7.Name = "radLabel7";
802
            this.radLabel7.Size = new System.Drawing.Size(72, 17);
803
            this.radLabel7.TabIndex = 12;
804
            this.radLabel7.Text = "Registration";
805
            // 
806
            // radLabel5
807
            // 
808
            this.radLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
809
            this.radLabel5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
810
            this.radLabel5.Location = new System.Drawing.Point(60, 121);
811
            this.radLabel5.Name = "radLabel5";
812
            this.radLabel5.Size = new System.Drawing.Size(79, 17);
813
            this.radLabel5.TabIndex = 11;
814
            this.radLabel5.Text = "Gateway";
815
            // 
816
            // radDropDownListGateway
817
            // 
818
            this.radDropDownListGateway.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
819
            this.radDropDownListGateway.DropDownAnimationEnabled = true;
820
            this.radDropDownListGateway.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
821
            this.radDropDownListGateway.Location = new System.Drawing.Point(146, 120);
822
            this.radDropDownListGateway.Name = "radDropDownListGateway";
823
            this.radDropDownListGateway.Size = new System.Drawing.Size(113, 20);
824
            this.radDropDownListGateway.TabIndex = 19;
825
            // 
826
            // radDropDownListRegistration
827
            // 
828
            this.radDropDownListRegistration.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
829
            this.radDropDownListRegistration.DropDownAnimationEnabled = true;
830
            this.radDropDownListRegistration.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
831
            this.radDropDownListRegistration.Location = new System.Drawing.Point(352, 120);
832
            this.radDropDownListRegistration.Name = "radDropDownListRegistration";
833
            this.radDropDownListRegistration.Size = new System.Drawing.Size(113, 20);
834
            this.radDropDownListRegistration.TabIndex = 20;
835
            // 
766 836
            // tableLayoutPanelGroup
767 837
            // 
768 838
            this.tableLayoutPanelGroup.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(207)))), ((int)(((byte)(223)))), ((int)(((byte)(245)))));
......
780 850
            this.tableLayoutPanelGroup.Controls.Add(this.radCheckBox2, 2, 0);
781 851
            this.tableLayoutPanelGroup.Controls.Add(this.radCheckBox1, 1, 0);
782 852
            this.tableLayoutPanelGroup.Dock = System.Windows.Forms.DockStyle.Fill;
783
            this.tableLayoutPanelGroup.Location = new System.Drawing.Point(13, 123);
853
            this.tableLayoutPanelGroup.Location = new System.Drawing.Point(13, 153);
784 854
            this.tableLayoutPanelGroup.Name = "tableLayoutPanelGroup";
785 855
            this.tableLayoutPanelGroup.RowCount = 1;
786 856
            this.tableLayoutPanelGroup.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
......
854 924
            this.tableLayoutMain.Controls.Add(this.radCommandBar1, 0, 0);
855 925
            this.tableLayoutMain.Controls.Add(this.lbSelectAndTotal, 1, 0);
856 926
            this.tableLayoutMain.Dock = System.Windows.Forms.DockStyle.Fill;
857
            this.tableLayoutMain.Location = new System.Drawing.Point(11, 151);
927
            this.tableLayoutMain.Location = new System.Drawing.Point(11, 181);
858 928
            this.tableLayoutMain.Margin = new System.Windows.Forms.Padding(1);
859 929
            this.tableLayoutMain.Name = "tableLayoutMain";
860 930
            this.tableLayoutMain.RowCount = 2;
861 931
            this.tableLayoutMain.RowStyles.Add(new System.Windows.Forms.RowStyle());
862 932
            this.tableLayoutMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
863
            this.tableLayoutMain.Size = new System.Drawing.Size(950, 367);
933
            this.tableLayoutMain.Size = new System.Drawing.Size(950, 337);
864 934
            this.tableLayoutMain.TabIndex = 8;
865 935
            // 
866 936
            // radGridViewDocuments
......
1211 1281
            gridViewRelation1});
1212 1282
            this.radGridViewDocuments.RightToLeft = System.Windows.Forms.RightToLeft.No;
1213 1283
            this.radGridViewDocuments.ShowHeaderCellButtons = true;
1214
            this.radGridViewDocuments.Size = new System.Drawing.Size(944, 325);
1284
            this.radGridViewDocuments.Size = new System.Drawing.Size(944, 295);
1215 1285
            this.radGridViewDocuments.TabIndex = 0;
1216 1286
            // 
1217 1287
            // DetailViewTemplate
......
1545 1615
            this.radLabelElementUser.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1546 1616
            this.radLabelElementUser.TextWrap = true;
1547 1617
            // 
1548
            // radButtonElementNoticeUpload
1549
            // 
1550
            this.radButtonElementNoticeUpload.Name = "radButtonElementNoticeUpload";
1551
            this.radButtonElementNoticeUpload.Text = "Upload";
1552
            // 
1553 1618
            // Main
1554 1619
            // 
1555 1620
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
......
1602 1667
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownListAVEVAStatus)).EndInit();
1603 1668
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownListProdIsResult)).EndInit();
1604 1669
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownListClientIsResult)).EndInit();
1670
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
1671
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
1672
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
1673
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownListGateway)).EndInit();
1674
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownListRegistration)).EndInit();
1605 1675
            this.tableLayoutPanelGroup.ResumeLayout(false);
1606 1676
            this.tableLayoutPanelGroup.PerformLayout();
1607 1677
            ((System.ComponentModel.ISupportInitialize)(this.radLabelGroupVIew)).EndInit();
......
1724 1794
        private Telerik.WinControls.UI.RadRibbonBarGroup radRibbonBarGroup1;
1725 1795
        private Telerik.WinControls.UI.RadButtonElement radButtonElementNotice;
1726 1796
        private Telerik.WinControls.UI.RadButtonElement radButtonElementNoticeUpload;
1797
        private Telerik.WinControls.UI.RadLabel radLabel6;
1798
        private Telerik.WinControls.UI.RadLabel radLabel7;
1799
        private Telerik.WinControls.UI.RadLabel radLabel5;
1800
        private Telerik.WinControls.UI.RadDropDownList radDropDownListGateway;
1801
        private Telerik.WinControls.UI.RadDropDownList radDropDownListRegistration;
1727 1802
    }
1728 1803
}
ID2.Manager/ID2.Manager/Main.cs
525 525
                allAVEVAStatus.Selected = true;
526 526
                #endregion
527 527

  
528
                #region 확인
528
                #region 검수
529 529
                //도프텍 결과
530 530
                if (this.radDropDownListProdIsResult.Items.Count > 0)
531 531
                    this.radDropDownListProdIsResult.Items.Clear();
......
549 549
                allClientIsResult.Selected = true;
550 550
                #endregion
551 551

  
552
                #region AVEVA
553
                //Gateway
554
                if (this.radDropDownListGateway.Items.Count > 0)
555
                    this.radDropDownListGateway.Items.Clear();
556
                informations.IsSuccess.ForEach(x =>
557
                {
558
                    this.radDropDownListGateway.Items.Add(new RadListDataItem(x, x));
559
                });
560
                var allDTIsGateWay = new RadListDataItem("== 전체 ==", string.Empty);
561
                this.radDropDownListGateway.Items.Insert(0, allDTIsGateWay);
562
                allDTIsGateWay.Selected = true;
563

  
564
                //Registration
565
                if (this.radDropDownListRegistration.Items.Count > 0)
566
                    this.radDropDownListRegistration.Items.Clear();
567
                informations.IsSuccess.ForEach(x =>
568
                {
569
                    this.radDropDownListRegistration.Items.Add(new RadListDataItem(x, x));
570
                });
571
                var allDTIsRegSystem = new RadListDataItem("== 전체 ==", string.Empty);
572
                this.radDropDownListRegistration.Items.Insert(0, allDTIsRegSystem);
573
                allDTIsRegSystem.Selected = true;
574
                #endregion
575

  
552 576
                this.GetDocList();
553 577
            }
554 578
            catch (Exception ex)
......
579 603
                    string prodIsResult = this.radDropDownListProdIsResult.SelectedValue.ToString();
580 604
                    string clientIsResult = this.radDropDownListClientIsResult.SelectedValue.ToString();
581 605

  
582
                    var worker = new LoadDocumentsWorker(projectCode, personIncharge, jobLevel, documentNo, isToIsDiscussion, isFrReviewStatus, isID2Work, id2Status, avevaStatus, prodIsResult, clientIsResult, this.radGridViewDocuments);
606
                    string isGateWay = this.radDropDownListGateway.SelectedValue.ToString();
607
                    string isRegSystem = this.radDropDownListRegistration.SelectedValue.ToString();
608

  
609
                    var worker = new LoadDocumentsWorker(projectCode, personIncharge, jobLevel, documentNo, isToIsDiscussion, isFrReviewStatus, isID2Work, id2Status, avevaStatus, prodIsResult, clientIsResult, isGateWay, isRegSystem, this.radGridViewDocuments);
583 610
                    worker.OnWorkCompletedHandler += (e) =>
584 611
                    {
585 612
                        var docData = e.Result as DocumentsResult;

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)