프로젝트

일반

사용자정보

개정판 cb2e1138

IDcb2e11385fc1870ebcd947956aea8ffb809c6add
상위 20e540bb
하위 089a9f5c

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

issue #0000
신규 관리항목
- AVEVA 담당자, AVEVA 작업자, ID2 답변및수정사항, ID2답변요청자, 변환여부
- Main 리스트 컬럼 추가
- Model 및 DB 삭제
- crud 수정

Change-Id: I07e6e70b143d035e3aeee76d4b9bc806ca686306

차이점 보기:

ID2.Manager/ID2.Manager.Controller/Controllers/DocumentController.cs
97 97
                                     ID2EndDate = dw?.DATETIME == null ? (DateTime?)null : Convert.ToDateTime(dw?.DATETIME),
98 98
                                     ID2Status = doc.ID2Status,
99 99
                                     ID2Issues = doc.ID2Issues,
100
                                     ReplyModifications = doc.ReplyModifications,
101
                                     ReplyRequester = doc.ReplyRequester,
102
                                     IsConvert = doc.IsConvert,
103
                                     AVEVAPersonInCharge = doc.AVEVAPersonInCharge,
104
                                     AVEVAWorker = doc.AVEVAWorker,
100 105
                                     AVEVAConvertDate = doc.AVEVAConvertDate,
101 106
                                     AVEVAReviewDate = doc.AVEVAReviewDate,
102 107
                                     AVEVAStatus = doc.AVEVAStatus,
ID2.Manager/ID2.Manager.Dapper/Repository/DocumentRepository.cs
379 379
    ,ID2EndDate
380 380
    ,ID2Status
381 381
    ,ID2Issues
382
    ,ReplyModifications
383
    ,ReplyRequester
384
    ,IsConvert
385
    ,AVEVAPersonInCharge
386
    ,AVEVAWorker
382 387
    ,AVEVAConvertDate
383 388
    ,AVEVAReviewDate
384 389
    ,AVEVAStatus
......
419 424
    ,@ID2EndDate
420 425
    ,@ID2Status
421 426
    ,@ID2Issues
427
    ,@ReplyModifications
428
    ,@ReplyRequester
429
    ,@IsConvert
430
    ,@AVEVAPersonInCharge
431
    ,@AVEVAWorker
422 432
    ,@AVEVAConvertDate
423 433
    ,@AVEVAReviewDate
424 434
    ,@AVEVAStatus
......
470 480
      ,ID2EndDate=@ID2EndDate
471 481
      ,ID2Status=@ID2Status
472 482
      ,ID2Issues=@ID2Issues
483
      ,ReplyModifications=@ReplyModifications
484
      ,ReplyRequester=@ReplyRequester
485
      ,IsConvert=@IsConvert
486
      ,AVEVAPersonInCharge=@AVEVAPersonInCharge
487
      ,AVEVAWorker=@AVEVAWorker
473 488
      ,AVEVAConvertDate=@AVEVAConvertDate
474 489
      ,AVEVAReviewDate=@AVEVAReviewDate
475 490
      ,AVEVAStatus=@AVEVAStatus
ID2.Manager/ID2.Manager.Data/Models/Documents.cs
106 106
        [DataMember]
107 107
        public string ID2Issues { get; set; }
108 108
        [DataMember]
109
        public string ReplyModifications { get; set; }
110
        [DataMember]
111
        public string ReplyRequester { get; set; }
112
        [DataMember]
113
        public string IsConvert { get; set; }
114
        [DataMember]
115
        public string AVEVAPersonInCharge { get; set; }
116
        [DataMember]
117
        public string AVEVAWorker { get; set; }
118
        [DataMember]
109 119
        public DateTime? AVEVAConvertDate { get; set; }
110 120
        [DataMember]
111 121
        public DateTime? AVEVAReviewDate { get; set; }
......
173 183
                && this.ToCreator == other.ToCreator
174 184
                && this.FrReviewStatus == other.FrReviewStatus && this.FrRemarks == other.FrRemarks && this.FrCreator == other.FrCreator
175 185
                && this.ID2StartDate == other.ID2StartDate && this.ID2EndDate == other.ID2EndDate && this.ID2Status == other.ID2Status
176
                && this.ID2Issues == other.ID2Issues && this.AVEVAConvertDate == other.AVEVAConvertDate && this.AVEVAReviewDate == other.AVEVAReviewDate
186
                && this.ID2Issues == other.ID2Issues && this.ReplyModifications == other.ReplyModifications && this.ReplyRequester == other.ReplyRequester && this.IsConvert == other.IsConvert && this.AVEVAPersonInCharge == other.AVEVAPersonInCharge && this.AVEVAWorker == other.AVEVAWorker
187
                && this.AVEVAConvertDate == other.AVEVAConvertDate && this.AVEVAReviewDate == other.AVEVAReviewDate
177 188
                && this.AVEVAStatus == other.AVEVAStatus && this.AVEVAIssues == other.AVEVAIssues && this.ReviewFilePath == other.ReviewFilePath && this.ReviewFileName == other.ReviewFileName
178 189
                && this.ProdReviewer == other.ProdReviewer && this.ProdIsResult == other.ProdIsResult && this.ProdRemarks == other.ProdRemarks && this.ClientReviewer == other.ClientReviewer
179 190
                && this.ClientIsResult == other.ClientIsResult && this.ClientRemarks == other.ClientRemarks && this.DTIsGateWay == other.DTIsGateWay && this.DTIsImport == other.DTIsImport
......
197 208
                + this.ToCreator.GetNullableHash()
198 209
                + this.FrReviewStatus.GetNullableHash() + this.FrRemarks.GetNullableHash() + this.FrCreator.GetNullableHash()
199 210
                + this.ID2StartDate.GetNullableHash() + this.ID2EndDate.GetNullableHash() + this.ID2Status.GetNullableHash()
200
                + this.ID2Issues.GetNullableHash() + this.AVEVAConvertDate.GetNullableHash() + this.AVEVAReviewDate.GetNullableHash()
211
                + this.ID2Issues.GetNullableHash() + this.ReplyModifications.GetNullableHash() + this.ReplyRequester.GetNullableHash() + this.IsConvert.GetNullableHash() + this.AVEVAPersonInCharge.GetNullableHash() + this.AVEVAWorker.GetNullableHash()
212
                + this.AVEVAConvertDate.GetNullableHash() + this.AVEVAReviewDate.GetNullableHash()
201 213
                + this.AVEVAStatus.GetNullableHash() + this.AVEVAIssues.GetNullableHash() + this.ReviewFilePath.GetNullableHash() + this.ReviewFileName.GetNullableHash()
202 214
                + this.ProdReviewer.GetNullableHash() + this.ProdIsResult.GetNullableHash() + this.ProdRemarks.GetNullableHash() + this.ClientReviewer.GetNullableHash()
203 215
                + this.ClientIsResult.GetNullableHash() + this.ClientRemarks.GetNullableHash() + this.DTIsGateWay.GetNullableHash() + this.DTIsImport.GetNullableHash()
ID2.Manager/ID2.Manager/Main.Designer.cs
54 54
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
55 55
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn9 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
56 56
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
57
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn3 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
58
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn4 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
59
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn10 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
60 57
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
61
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn6 = new Telerik.WinControls.UI.GridViewCommandColumn();
62
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn7 = new Telerik.WinControls.UI.GridViewCommandColumn();
58
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn10 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
63 59
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn11 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
64 60
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn12 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
65
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
66
            Telerik.WinControls.UI.GridViewImageColumn gridViewImageColumn3 = new Telerik.WinControls.UI.GridViewImageColumn();
67 61
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn13 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
62
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn3 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
63
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn4 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
68 64
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn14 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
69
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
70
            Telerik.WinControls.UI.GridViewImageColumn gridViewImageColumn4 = new Telerik.WinControls.UI.GridViewImageColumn();
65
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
66
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn6 = new Telerik.WinControls.UI.GridViewCommandColumn();
67
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn7 = new Telerik.WinControls.UI.GridViewCommandColumn();
71 68
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn15 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
72 69
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn16 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
70
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
71
            Telerik.WinControls.UI.GridViewImageColumn gridViewImageColumn3 = new Telerik.WinControls.UI.GridViewImageColumn();
73 72
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn17 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
73
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn18 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
74 74
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
75
            Telerik.WinControls.UI.GridViewImageColumn gridViewImageColumn4 = new Telerik.WinControls.UI.GridViewImageColumn();
76
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn19 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
77
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn20 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
78
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn21 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
79
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
75 80
            Telerik.WinControls.UI.TableViewDefinition tableViewDefinition1 = new Telerik.WinControls.UI.TableViewDefinition();
76 81
            Telerik.WinControls.UI.GridViewRelation gridViewRelation1 = new Telerik.WinControls.UI.GridViewRelation();
77 82
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
......
475 480
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
476 481
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 85F));
477 482
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
478
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 86F));
483
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 88F));
479 484
            this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListFrReviewStatus, 4, 2);
480 485
            this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListToIsDiscussion, 2, 2);
481 486
            this.tableLayoutPanelCondition.Controls.Add(this.radLabelFrReviewStatus, 3, 2);
......
530 535
            this.radDropDownListFrReviewStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
531 536
            this.radDropDownListFrReviewStatus.DropDownAnimationEnabled = true;
532 537
            this.radDropDownListFrReviewStatus.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
533
            this.radDropDownListFrReviewStatus.Location = new System.Drawing.Point(357, 60);
538
            this.radDropDownListFrReviewStatus.Location = new System.Drawing.Point(356, 60);
534 539
            this.radDropDownListFrReviewStatus.Name = "radDropDownListFrReviewStatus";
535
            this.radDropDownListFrReviewStatus.Size = new System.Drawing.Size(118, 20);
540
            this.radDropDownListFrReviewStatus.Size = new System.Drawing.Size(117, 20);
536 541
            this.radDropDownListFrReviewStatus.TabIndex = 18;
537 542
            // 
538 543
            // radDropDownListToIsDiscussion
......
542 547
            this.radDropDownListToIsDiscussion.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
543 548
            this.radDropDownListToIsDiscussion.Location = new System.Drawing.Point(146, 60);
544 549
            this.radDropDownListToIsDiscussion.Name = "radDropDownListToIsDiscussion";
545
            this.radDropDownListToIsDiscussion.Size = new System.Drawing.Size(118, 20);
550
            this.radDropDownListToIsDiscussion.Size = new System.Drawing.Size(117, 20);
546 551
            this.radDropDownListToIsDiscussion.TabIndex = 17;
547 552
            // 
548 553
            // radLabelFrReviewStatus
549 554
            // 
550 555
            this.radLabelFrReviewStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
551 556
            this.radLabelFrReviewStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
552
            this.radLabelFrReviewStatus.Location = new System.Drawing.Point(271, 62);
557
            this.radLabelFrReviewStatus.Location = new System.Drawing.Point(270, 62);
553 558
            this.radLabelFrReviewStatus.Name = "radLabelFrReviewStatus";
554 559
            this.radLabelFrReviewStatus.Size = new System.Drawing.Size(59, 17);
555 560
            this.radLabelFrReviewStatus.TabIndex = 7;
......
579 584
            // 
580 585
            this.radLabelAVEVAStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
581 586
            this.radLabelAVEVAStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
582
            this.radLabelAVEVAStatus.Location = new System.Drawing.Point(482, 90);
587
            this.radLabelAVEVAStatus.Location = new System.Drawing.Point(480, 90);
583 588
            this.radLabelAVEVAStatus.Name = "radLabelAVEVAStatus";
584 589
            this.radLabelAVEVAStatus.Size = new System.Drawing.Size(86, 17);
585 590
            this.radLabelAVEVAStatus.TabIndex = 8;
......
589 594
            // 
590 595
            this.radLabelJobLevel.Anchor = System.Windows.Forms.AnchorStyles.Left;
591 596
            this.radLabelJobLevel.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
592
            this.radLabelJobLevel.Location = new System.Drawing.Point(482, 34);
597
            this.radLabelJobLevel.Location = new System.Drawing.Point(480, 34);
593 598
            this.radLabelJobLevel.Name = "radLabelJobLevel";
594 599
            this.radLabelJobLevel.Size = new System.Drawing.Size(47, 17);
595 600
            this.radLabelJobLevel.TabIndex = 7;
......
640 645
            this.radButtonSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
641 646
            this.radButtonSearch.Cursor = System.Windows.Forms.Cursors.Default;
642 647
            this.radButtonSearch.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
643
            this.radButtonSearch.Location = new System.Drawing.Point(917, 32);
648
            this.radButtonSearch.Location = new System.Drawing.Point(915, 32);
644 649
            this.radButtonSearch.Name = "radButtonSearch";
645 650
            this.tableLayoutPanelCondition.SetRowSpan(this.radButtonSearch, 5);
646 651
            this.radButtonSearch.Size = new System.Drawing.Size(54, 138);
......
654 659
            this.radDropDownListProject.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
655 660
            this.radDropDownListProject.Location = new System.Drawing.Point(146, 32);
656 661
            this.radDropDownListProject.Name = "radDropDownListProject";
657
            this.radDropDownListProject.Size = new System.Drawing.Size(118, 20);
662
            this.radDropDownListProject.Size = new System.Drawing.Size(117, 20);
658 663
            this.radDropDownListProject.TabIndex = 7;
659 664
            // 
660 665
            // radLabelDocumentNo
661 666
            // 
662 667
            this.radLabelDocumentNo.Anchor = System.Windows.Forms.AnchorStyles.Left;
663 668
            this.radLabelDocumentNo.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
664
            this.radLabelDocumentNo.Location = new System.Drawing.Point(693, 34);
669
            this.radLabelDocumentNo.Location = new System.Drawing.Point(690, 34);
665 670
            this.radLabelDocumentNo.Name = "radLabelDocumentNo";
666 671
            this.radLabelDocumentNo.Size = new System.Drawing.Size(52, 17);
667 672
            this.radLabelDocumentNo.TabIndex = 6;
......
670 675
            // radTextBoxDocumentNo
671 676
            // 
672 677
            this.radTextBoxDocumentNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
673
            this.radTextBoxDocumentNo.Location = new System.Drawing.Point(779, 32);
678
            this.radTextBoxDocumentNo.Location = new System.Drawing.Point(776, 32);
674 679
            this.radTextBoxDocumentNo.Name = "radTextBoxDocumentNo";
675
            this.radTextBoxDocumentNo.Size = new System.Drawing.Size(118, 20);
680
            this.radTextBoxDocumentNo.Size = new System.Drawing.Size(117, 20);
676 681
            this.radTextBoxDocumentNo.TabIndex = 8;
677 682
            // 
678 683
            // radLabelPersonInCharge
679 684
            // 
680 685
            this.radLabelPersonInCharge.Anchor = System.Windows.Forms.AnchorStyles.Left;
681 686
            this.radLabelPersonInCharge.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
682
            this.radLabelPersonInCharge.Location = new System.Drawing.Point(271, 34);
687
            this.radLabelPersonInCharge.Location = new System.Drawing.Point(270, 34);
683 688
            this.radLabelPersonInCharge.Name = "radLabelPersonInCharge";
684 689
            this.radLabelPersonInCharge.Size = new System.Drawing.Size(47, 17);
685 690
            this.radLabelPersonInCharge.TabIndex = 6;
......
690 695
            this.radDropDownListPersonInCharge.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
691 696
            this.radDropDownListPersonInCharge.DropDownAnimationEnabled = true;
692 697
            this.radDropDownListPersonInCharge.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
693
            this.radDropDownListPersonInCharge.Location = new System.Drawing.Point(357, 32);
698
            this.radDropDownListPersonInCharge.Location = new System.Drawing.Point(356, 32);
694 699
            this.radDropDownListPersonInCharge.Name = "radDropDownListPersonInCharge";
695
            this.radDropDownListPersonInCharge.Size = new System.Drawing.Size(118, 20);
700
            this.radDropDownListPersonInCharge.Size = new System.Drawing.Size(117, 20);
696 701
            this.radDropDownListPersonInCharge.TabIndex = 9;
697 702
            // 
698 703
            // radLabel1
......
710 715
            this.radDropDownListJobLevel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
711 716
            this.radDropDownListJobLevel.DropDownAnimationEnabled = true;
712 717
            this.radDropDownListJobLevel.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
713
            this.radDropDownListJobLevel.Location = new System.Drawing.Point(568, 32);
718
            this.radDropDownListJobLevel.Location = new System.Drawing.Point(566, 32);
714 719
            this.radDropDownListJobLevel.Name = "radDropDownListJobLevel";
715
            this.radDropDownListJobLevel.Size = new System.Drawing.Size(118, 20);
720
            this.radDropDownListJobLevel.Size = new System.Drawing.Size(117, 20);
716 721
            this.radDropDownListJobLevel.TabIndex = 11;
717 722
            // 
718 723
            // radLabelID2Status
......
729 734
            // 
730 735
            this.radLabel10.Anchor = System.Windows.Forms.AnchorStyles.Left;
731 736
            this.radLabel10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
732
            this.radLabel10.Location = new System.Drawing.Point(271, 118);
737
            this.radLabel10.Location = new System.Drawing.Point(270, 118);
733 738
            this.radLabel10.Name = "radLabel10";
734 739
            this.radLabel10.Size = new System.Drawing.Size(61, 17);
735 740
            this.radLabel10.TabIndex = 9;
......
742 747
            this.radDropDownListID2Status.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
743 748
            this.radDropDownListID2Status.Location = new System.Drawing.Point(146, 88);
744 749
            this.radDropDownListID2Status.Name = "radDropDownListID2Status";
745
            this.radDropDownListID2Status.Size = new System.Drawing.Size(118, 20);
750
            this.radDropDownListID2Status.Size = new System.Drawing.Size(117, 20);
746 751
            this.radDropDownListID2Status.TabIndex = 13;
747 752
            // 
748 753
            // radDropDownListAVEVAStatus
......
750 755
            this.radDropDownListAVEVAStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
751 756
            this.radDropDownListAVEVAStatus.DropDownAnimationEnabled = true;
752 757
            this.radDropDownListAVEVAStatus.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
753
            this.radDropDownListAVEVAStatus.Location = new System.Drawing.Point(568, 88);
758
            this.radDropDownListAVEVAStatus.Location = new System.Drawing.Point(566, 88);
754 759
            this.radDropDownListAVEVAStatus.Name = "radDropDownListAVEVAStatus";
755
            this.radDropDownListAVEVAStatus.Size = new System.Drawing.Size(118, 20);
760
            this.radDropDownListAVEVAStatus.Size = new System.Drawing.Size(117, 20);
756 761
            this.radDropDownListAVEVAStatus.TabIndex = 14;
757 762
            // 
758 763
            // radDropDownListProdIsResult
......
762 767
            this.radDropDownListProdIsResult.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
763 768
            this.radDropDownListProdIsResult.Location = new System.Drawing.Point(146, 116);
764 769
            this.radDropDownListProdIsResult.Name = "radDropDownListProdIsResult";
765
            this.radDropDownListProdIsResult.Size = new System.Drawing.Size(118, 20);
770
            this.radDropDownListProdIsResult.Size = new System.Drawing.Size(117, 20);
766 771
            this.radDropDownListProdIsResult.TabIndex = 15;
767 772
            // 
768 773
            // radDropDownListClientIsResult
......
770 775
            this.radDropDownListClientIsResult.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
771 776
            this.radDropDownListClientIsResult.DropDownAnimationEnabled = true;
772 777
            this.radDropDownListClientIsResult.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
773
            this.radDropDownListClientIsResult.Location = new System.Drawing.Point(357, 116);
778
            this.radDropDownListClientIsResult.Location = new System.Drawing.Point(356, 116);
774 779
            this.radDropDownListClientIsResult.Name = "radDropDownListClientIsResult";
775
            this.radDropDownListClientIsResult.Size = new System.Drawing.Size(118, 20);
780
            this.radDropDownListClientIsResult.Size = new System.Drawing.Size(117, 20);
776 781
            this.radDropDownListClientIsResult.TabIndex = 16;
777 782
            // 
778 783
            // radLabel6
......
789 794
            // 
790 795
            this.radLabel7.Anchor = System.Windows.Forms.AnchorStyles.Left;
791 796
            this.radLabel7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
792
            this.radLabel7.Location = new System.Drawing.Point(271, 148);
797
            this.radLabel7.Location = new System.Drawing.Point(270, 148);
793 798
            this.radLabel7.Name = "radLabel7";
794 799
            this.radLabel7.Size = new System.Drawing.Size(72, 17);
795 800
            this.radLabel7.TabIndex = 12;
......
812 817
            this.radDropDownListGateway.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
813 818
            this.radDropDownListGateway.Location = new System.Drawing.Point(146, 147);
814 819
            this.radDropDownListGateway.Name = "radDropDownListGateway";
815
            this.radDropDownListGateway.Size = new System.Drawing.Size(118, 20);
820
            this.radDropDownListGateway.Size = new System.Drawing.Size(117, 20);
816 821
            this.radDropDownListGateway.TabIndex = 19;
817 822
            // 
818 823
            // radDropDownListRegistration
......
820 825
            this.radDropDownListRegistration.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
821 826
            this.radDropDownListRegistration.DropDownAnimationEnabled = true;
822 827
            this.radDropDownListRegistration.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
823
            this.radDropDownListRegistration.Location = new System.Drawing.Point(357, 147);
828
            this.radDropDownListRegistration.Location = new System.Drawing.Point(356, 147);
824 829
            this.radDropDownListRegistration.Name = "radDropDownListRegistration";
825
            this.radDropDownListRegistration.Size = new System.Drawing.Size(118, 20);
830
            this.radDropDownListRegistration.Size = new System.Drawing.Size(117, 20);
826 831
            this.radDropDownListRegistration.TabIndex = 20;
827 832
            // 
828 833
            // radLabel8
......
914 919
            // 
915 920
            this.radLabelID2Issues.Anchor = System.Windows.Forms.AnchorStyles.Left;
916 921
            this.radLabelID2Issues.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
917
            this.radLabelID2Issues.Location = new System.Drawing.Point(271, 90);
922
            this.radLabelID2Issues.Location = new System.Drawing.Point(270, 90);
918 923
            this.radLabelID2Issues.Name = "radLabelID2Issues";
919 924
            this.radLabelID2Issues.Size = new System.Drawing.Size(59, 17);
920 925
            this.radLabelID2Issues.TabIndex = 23;
......
924 929
            // 
925 930
            this.radLabelAVEVAIssues.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
926 931
            this.radLabelAVEVAIssues.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
927
            this.radLabelAVEVAIssues.Location = new System.Drawing.Point(693, 90);
932
            this.radLabelAVEVAIssues.Location = new System.Drawing.Point(690, 90);
928 933
            this.radLabelAVEVAIssues.Name = "radLabelAVEVAIssues";
929 934
            this.radLabelAVEVAIssues.Size = new System.Drawing.Size(81, 17);
930 935
            this.radLabelAVEVAIssues.TabIndex = 24;
......
935 940
            this.radDropDownListID2Issues.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
936 941
            this.radDropDownListID2Issues.DropDownAnimationEnabled = true;
937 942
            this.radDropDownListID2Issues.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
938
            this.radDropDownListID2Issues.Location = new System.Drawing.Point(357, 88);
943
            this.radDropDownListID2Issues.Location = new System.Drawing.Point(356, 88);
939 944
            this.radDropDownListID2Issues.Name = "radDropDownListID2Issues";
940
            this.radDropDownListID2Issues.Size = new System.Drawing.Size(118, 20);
945
            this.radDropDownListID2Issues.Size = new System.Drawing.Size(117, 20);
941 946
            this.radDropDownListID2Issues.TabIndex = 25;
942 947
            // 
943 948
            // radDropDownListAVEVAIssues
......
945 950
            this.radDropDownListAVEVAIssues.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
946 951
            this.radDropDownListAVEVAIssues.DropDownAnimationEnabled = true;
947 952
            this.radDropDownListAVEVAIssues.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
948
            this.radDropDownListAVEVAIssues.Location = new System.Drawing.Point(779, 88);
953
            this.radDropDownListAVEVAIssues.Location = new System.Drawing.Point(776, 88);
949 954
            this.radDropDownListAVEVAIssues.Name = "radDropDownListAVEVAIssues";
950
            this.radDropDownListAVEVAIssues.Size = new System.Drawing.Size(118, 20);
955
            this.radDropDownListAVEVAIssues.Size = new System.Drawing.Size(117, 20);
951 956
            this.radDropDownListAVEVAIssues.TabIndex = 26;
952 957
            // 
953 958
            // tableLayoutPanelGroup
......
1212 1217
            gridViewTextBoxColumn7.HeaderText = "이슈사항";
1213 1218
            gridViewTextBoxColumn7.Name = "ID2Issues";
1214 1219
            gridViewTextBoxColumn7.Width = 150;
1220
            gridViewTextBoxColumn8.FieldName = "ReplyModifications";
1221
            gridViewTextBoxColumn8.HeaderText = "답변 및 수정사항";
1222
            gridViewTextBoxColumn8.Name = "ReplyModifications";
1223
            gridViewTextBoxColumn8.Width = 150;
1224
            gridViewComboBoxColumn10.FieldName = "ReplyRequester";
1225
            gridViewComboBoxColumn10.HeaderText = "답변 요청자";
1226
            gridViewComboBoxColumn10.Name = "ReplyRequester";
1227
            gridViewComboBoxColumn10.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1228
            gridViewComboBoxColumn10.Width = 100;
1229
            gridViewComboBoxColumn11.FieldName = "IsConvert";
1230
            gridViewComboBoxColumn11.HeaderText = "변환여부";
1231
            gridViewComboBoxColumn11.Name = "IsConvert";
1232
            gridViewComboBoxColumn11.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1233
            gridViewComboBoxColumn11.Width = 100;
1234
            gridViewComboBoxColumn12.FieldName = "AVEVAPersonInCharge";
1235
            gridViewComboBoxColumn12.HeaderText = "담당자(AVEVA)";
1236
            gridViewComboBoxColumn12.Name = "AVEVAPersonInCharge";
1237
            gridViewComboBoxColumn12.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1238
            gridViewComboBoxColumn12.Width = 100;
1239
            gridViewComboBoxColumn13.FieldName = "AVEVAWorker";
1240
            gridViewComboBoxColumn13.HeaderText = "작업자(AVEVA)";
1241
            gridViewComboBoxColumn13.Name = "AVEVAWorker";
1242
            gridViewComboBoxColumn13.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1243
            gridViewComboBoxColumn13.Width = 100;
1215 1244
            gridViewDateTimeColumn3.EnableExpressionEditor = false;
1216 1245
            gridViewDateTimeColumn3.FieldName = "AVEVAConvertDate";
1217 1246
            gridViewDateTimeColumn3.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
......
1228 1257
            gridViewDateTimeColumn4.Name = "AVEVAReviewDate";
1229 1258
            gridViewDateTimeColumn4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1230 1259
            gridViewDateTimeColumn4.Width = 70;
1231
            gridViewComboBoxColumn10.EnableExpressionEditor = false;
1232
            gridViewComboBoxColumn10.FieldName = "AVEVAStatus";
1233
            gridViewComboBoxColumn10.HeaderText = "Status";
1234
            gridViewComboBoxColumn10.Name = "AVEVAStatus";
1235
            gridViewComboBoxColumn10.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1236
            gridViewComboBoxColumn10.Width = 70;
1237
            gridViewTextBoxColumn8.EnableExpressionEditor = false;
1238
            gridViewTextBoxColumn8.FieldName = "AVEVAIssues";
1239
            gridViewTextBoxColumn8.HeaderText = "이슈사항";
1240
            gridViewTextBoxColumn8.Name = "AVEVAIssues";
1241
            gridViewTextBoxColumn8.Width = 150;
1260
            gridViewComboBoxColumn14.EnableExpressionEditor = false;
1261
            gridViewComboBoxColumn14.FieldName = "AVEVAStatus";
1262
            gridViewComboBoxColumn14.HeaderText = "Status";
1263
            gridViewComboBoxColumn14.Name = "AVEVAStatus";
1264
            gridViewComboBoxColumn14.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1265
            gridViewComboBoxColumn14.Width = 70;
1266
            gridViewTextBoxColumn9.EnableExpressionEditor = false;
1267
            gridViewTextBoxColumn9.FieldName = "AVEVAIssues";
1268
            gridViewTextBoxColumn9.HeaderText = "이슈사항";
1269
            gridViewTextBoxColumn9.Name = "AVEVAIssues";
1270
            gridViewTextBoxColumn9.Width = 150;
1242 1271
            gridViewCommandColumn6.EnableExpressionEditor = false;
1243 1272
            gridViewCommandColumn6.FieldName = "ReviewFileName";
1244 1273
            gridViewCommandColumn6.HeaderText = "PDF";
......
1248 1277
            gridViewCommandColumn7.HeaderText = "시스템";
1249 1278
            gridViewCommandColumn7.Name = "SystemLink";
1250 1279
            gridViewCommandColumn7.Width = 70;
1251
            gridViewComboBoxColumn11.EnableExpressionEditor = false;
1252
            gridViewComboBoxColumn11.FieldName = "ProdReviewer";
1253
            gridViewComboBoxColumn11.HeaderText = "검토자";
1254
            gridViewComboBoxColumn11.Name = "ProdReviewer";
1255
            gridViewComboBoxColumn11.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1256
            gridViewComboBoxColumn11.Width = 100;
1257
            gridViewComboBoxColumn12.EnableExpressionEditor = false;
1258
            gridViewComboBoxColumn12.FieldName = "ProdIsResult";
1259
            gridViewComboBoxColumn12.HeaderText = "결과";
1260
            gridViewComboBoxColumn12.Name = "ProdIsResult";
1261
            gridViewComboBoxColumn12.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1262
            gridViewComboBoxColumn12.Width = 70;
1263
            gridViewTextBoxColumn9.EnableExpressionEditor = false;
1264
            gridViewTextBoxColumn9.FieldName = "ProdRemarks";
1265
            gridViewTextBoxColumn9.HeaderText = "비고";
1266
            gridViewTextBoxColumn9.Name = "ProdRemarks";
1267
            gridViewTextBoxColumn9.Width = 150;
1268
            gridViewImageColumn3.HeaderText = "캡쳐";
1269
            gridViewImageColumn3.Name = "ProdCapture";
1270
            gridViewComboBoxColumn13.EnableExpressionEditor = false;
1271
            gridViewComboBoxColumn13.FieldName = "ClientReviewer";
1272
            gridViewComboBoxColumn13.HeaderText = "검토자";
1273
            gridViewComboBoxColumn13.Name = "ClientReviewer";
1274
            gridViewComboBoxColumn13.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1275
            gridViewComboBoxColumn13.Width = 100;
1276
            gridViewComboBoxColumn14.EnableExpressionEditor = false;
1277
            gridViewComboBoxColumn14.FieldName = "ClientIsResult";
1278
            gridViewComboBoxColumn14.HeaderText = "결과";
1279
            gridViewComboBoxColumn14.Name = "ClientIsResult";
1280
            gridViewComboBoxColumn14.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1281
            gridViewComboBoxColumn14.Width = 70;
1282
            gridViewTextBoxColumn10.EnableExpressionEditor = false;
1283
            gridViewTextBoxColumn10.FieldName = "ClientRemarks";
1284
            gridViewTextBoxColumn10.HeaderText = "비고";
1285
            gridViewTextBoxColumn10.Name = "ClientRemarks";
1286
            gridViewTextBoxColumn10.Width = 150;
1287
            gridViewImageColumn4.HeaderText = "캡쳐";
1288
            gridViewImageColumn4.Name = "ClientCapture";
1289 1280
            gridViewComboBoxColumn15.EnableExpressionEditor = false;
1290
            gridViewComboBoxColumn15.FieldName = "DTIsGateWay";
1291
            gridViewComboBoxColumn15.HeaderText = "GateWay";
1292
            gridViewComboBoxColumn15.Name = "DTIsGateWay";
1281
            gridViewComboBoxColumn15.FieldName = "ProdReviewer";
1282
            gridViewComboBoxColumn15.HeaderText = "검토자";
1283
            gridViewComboBoxColumn15.Name = "ProdReviewer";
1293 1284
            gridViewComboBoxColumn15.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1294
            gridViewComboBoxColumn15.Width = 80;
1285
            gridViewComboBoxColumn15.Width = 100;
1295 1286
            gridViewComboBoxColumn16.EnableExpressionEditor = false;
1296
            gridViewComboBoxColumn16.FieldName = "DTIsImport";
1297
            gridViewComboBoxColumn16.HeaderText = "Import 성공여부";
1298
            gridViewComboBoxColumn16.Name = "DTIsImport";
1287
            gridViewComboBoxColumn16.FieldName = "ProdIsResult";
1288
            gridViewComboBoxColumn16.HeaderText = "결과";
1289
            gridViewComboBoxColumn16.Name = "ProdIsResult";
1299 1290
            gridViewComboBoxColumn16.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1300
            gridViewComboBoxColumn16.Width = 80;
1291
            gridViewComboBoxColumn16.Width = 70;
1292
            gridViewTextBoxColumn10.EnableExpressionEditor = false;
1293
            gridViewTextBoxColumn10.FieldName = "ProdRemarks";
1294
            gridViewTextBoxColumn10.HeaderText = "비고";
1295
            gridViewTextBoxColumn10.Name = "ProdRemarks";
1296
            gridViewTextBoxColumn10.Width = 150;
1297
            gridViewImageColumn3.HeaderText = "캡쳐";
1298
            gridViewImageColumn3.Name = "ProdCapture";
1301 1299
            gridViewComboBoxColumn17.EnableExpressionEditor = false;
1302
            gridViewComboBoxColumn17.FieldName = "DTIsRegSystem";
1303
            gridViewComboBoxColumn17.HeaderText = "시스템등록";
1304
            gridViewComboBoxColumn17.Name = "DTIsRegSystem";
1300
            gridViewComboBoxColumn17.FieldName = "ClientReviewer";
1301
            gridViewComboBoxColumn17.HeaderText = "검토자";
1302
            gridViewComboBoxColumn17.Name = "ClientReviewer";
1305 1303
            gridViewComboBoxColumn17.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1306
            gridViewComboBoxColumn17.Width = 80;
1304
            gridViewComboBoxColumn17.Width = 100;
1305
            gridViewComboBoxColumn18.EnableExpressionEditor = false;
1306
            gridViewComboBoxColumn18.FieldName = "ClientIsResult";
1307
            gridViewComboBoxColumn18.HeaderText = "결과";
1308
            gridViewComboBoxColumn18.Name = "ClientIsResult";
1309
            gridViewComboBoxColumn18.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1310
            gridViewComboBoxColumn18.Width = 70;
1307 1311
            gridViewTextBoxColumn11.EnableExpressionEditor = false;
1308
            gridViewTextBoxColumn11.FieldName = "DTRemarks";
1312
            gridViewTextBoxColumn11.FieldName = "ClientRemarks";
1309 1313
            gridViewTextBoxColumn11.HeaderText = "비고";
1310
            gridViewTextBoxColumn11.Name = "DTRemarks";
1314
            gridViewTextBoxColumn11.Name = "ClientRemarks";
1311 1315
            gridViewTextBoxColumn11.Width = 150;
1316
            gridViewImageColumn4.HeaderText = "캡쳐";
1317
            gridViewImageColumn4.Name = "ClientCapture";
1318
            gridViewComboBoxColumn19.EnableExpressionEditor = false;
1319
            gridViewComboBoxColumn19.FieldName = "DTIsGateWay";
1320
            gridViewComboBoxColumn19.HeaderText = "GateWay";
1321
            gridViewComboBoxColumn19.Name = "DTIsGateWay";
1322
            gridViewComboBoxColumn19.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1323
            gridViewComboBoxColumn19.Width = 80;
1324
            gridViewComboBoxColumn20.EnableExpressionEditor = false;
1325
            gridViewComboBoxColumn20.FieldName = "DTIsImport";
1326
            gridViewComboBoxColumn20.HeaderText = "Import 성공여부";
1327
            gridViewComboBoxColumn20.Name = "DTIsImport";
1328
            gridViewComboBoxColumn20.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1329
            gridViewComboBoxColumn20.Width = 80;
1330
            gridViewComboBoxColumn21.EnableExpressionEditor = false;
1331
            gridViewComboBoxColumn21.FieldName = "DTIsRegSystem";
1332
            gridViewComboBoxColumn21.HeaderText = "시스템등록";
1333
            gridViewComboBoxColumn21.Name = "DTIsRegSystem";
1334
            gridViewComboBoxColumn21.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
1335
            gridViewComboBoxColumn21.Width = 80;
1336
            gridViewTextBoxColumn12.EnableExpressionEditor = false;
1337
            gridViewTextBoxColumn12.FieldName = "DTRemarks";
1338
            gridViewTextBoxColumn12.HeaderText = "비고";
1339
            gridViewTextBoxColumn12.Name = "DTRemarks";
1340
            gridViewTextBoxColumn12.Width = 150;
1312 1341
            this.radGridViewDocuments.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
1313 1342
            gridViewCommandColumn1,
1314 1343
            gridViewCommandColumn2,
......
1335 1364
            gridViewDateTimeColumn2,
1336 1365
            gridViewComboBoxColumn9,
1337 1366
            gridViewTextBoxColumn7,
1338
            gridViewDateTimeColumn3,
1339
            gridViewDateTimeColumn4,
1340
            gridViewComboBoxColumn10,
1341 1367
            gridViewTextBoxColumn8,
1342
            gridViewCommandColumn6,
1343
            gridViewCommandColumn7,
1368
            gridViewComboBoxColumn10,
1344 1369
            gridViewComboBoxColumn11,
1345 1370
            gridViewComboBoxColumn12,
1346
            gridViewTextBoxColumn9,
1347
            gridViewImageColumn3,
1348 1371
            gridViewComboBoxColumn13,
1372
            gridViewDateTimeColumn3,
1373
            gridViewDateTimeColumn4,
1349 1374
            gridViewComboBoxColumn14,
1350
            gridViewTextBoxColumn10,
1351
            gridViewImageColumn4,
1375
            gridViewTextBoxColumn9,
1376
            gridViewCommandColumn6,
1377
            gridViewCommandColumn7,
1352 1378
            gridViewComboBoxColumn15,
1353 1379
            gridViewComboBoxColumn16,
1380
            gridViewTextBoxColumn10,
1381
            gridViewImageColumn3,
1354 1382
            gridViewComboBoxColumn17,
1355
            gridViewTextBoxColumn11});
1383
            gridViewComboBoxColumn18,
1384
            gridViewTextBoxColumn11,
1385
            gridViewImageColumn4,
1386
            gridViewComboBoxColumn19,
1387
            gridViewComboBoxColumn20,
1388
            gridViewComboBoxColumn21,
1389
            gridViewTextBoxColumn12});
1356 1390
            this.radGridViewDocuments.MasterTemplate.EnableAlternatingRowColor = true;
1357 1391
            this.radGridViewDocuments.MasterTemplate.EnableFiltering = true;
1358 1392
            this.radGridViewDocuments.MasterTemplate.ShowFilteringRow = false;
......
1560 1594
            // 
1561 1595
            // radPageViewPageAutoCAD
1562 1596
            // 
1563
            this.radPageViewPageAutoCAD.ItemSize = new System.Drawing.SizeF(63F, 28F);
1564 1597
            this.radPageViewPageAutoCAD.Location = new System.Drawing.Point(10, 37);
1565 1598
            this.radPageViewPageAutoCAD.Name = "radPageViewPageAutoCAD";
1566 1599
            this.radPageViewPageAutoCAD.Size = new System.Drawing.Size(258, 146);
ID2.Manager/ID2.Manager/Main.cs
1122 1122
                ColWorker.DisplayMember = "Name";
1123 1123
                ColWorker.ValueMember = "ID";
1124 1124

  
1125
                GridViewComboBoxColumn ColAVEVAPersonInCharge = this.radGridViewDocuments.Columns["AVEVAPersonInCharge"] as GridViewComboBoxColumn;
1126
                ColAVEVAPersonInCharge.DataSource = workUsers;
1127
                ColAVEVAPersonInCharge.DisplayMember = "Name";
1128
                ColAVEVAPersonInCharge.ValueMember = "ID";
1129

  
1130
                GridViewComboBoxColumn ColAVEVAWorker = this.radGridViewDocuments.Columns["AVEVAWorker"] as GridViewComboBoxColumn;
1131
                ColAVEVAWorker.DataSource = workUsers;
1132
                ColAVEVAWorker.DisplayMember = "Name";
1133
                ColAVEVAWorker.ValueMember = "ID";
1134

  
1135
                GridViewComboBoxColumn ColReplyRequester = this.radGridViewDocuments.Columns["ReplyRequester"] as GridViewComboBoxColumn;
1136
                ColReplyRequester.DataSource = workUsers;
1137
                ColReplyRequester.DisplayMember = "Name";
1138
                ColReplyRequester.ValueMember = "ID";
1139

  
1125 1140
                GridViewComboBoxColumn ColToCreator = this.radGridViewDocuments.Columns["ToCreator"] as GridViewComboBoxColumn;
1126 1141
                ColToCreator.DataSource = workUsers;
1127 1142
                ColToCreator.DisplayMember = "Name";
......
1350 1365
            {
1351 1366
                switch (e.Column.Name)
1352 1367
                {
1368
                    //case "RefProjectCode":
1369
                    //    GridViewComboBoxColumn ColProjects = this.radGridViewDocuments.Columns[e.Column.Name] as GridViewComboBoxColumn;
1370
                    //    ColProjects.DataSource = informations.ProjectList.Where(x => x.GroupID.Equals(informations.ActiveProject.ProjectID)).ToList();
1371
                    //    ColProjects.DisplayMember = "Name";
1372
                    //    ColProjects.ValueMember = "Code";
1373
                    //    break;
1374
                    //case "PersonInCharge":
1375
                    //case "Worker":
1376
                    //case "AVEVAPersonInCharge":
1377
                    //case "AVEVAWorker":
1378
                    //case "ReplyRequester":
1379
                    //case "ToCreator":
1380
                    //case "ProdReviewer":
1381
                    //    var workUsers = informations.UserList.Where(x => (new string[] { "Manager", "User" }).Contains(x.Role) && string.IsNullOrEmpty(x.RefProjectID));
1382
                    //    GridViewComboBoxColumn ColProdUsers = this.radGridViewDocuments.Columns[e.Column.Name] as GridViewComboBoxColumn;
1383
                    //    ColProdUsers.DataSource = workUsers;
1384
                    //    ColProdUsers.DisplayMember = "Name";
1385
                    //    ColProdUsers.ValueMember = "ID";
1386
                    //    break;
1387
                    //case "FrCreator":
1388
                    //case "ClientReviewer":
1389
                    //    var clientUsers = informations.UserList.Where(x => !string.IsNullOrEmpty(x.RefProjectID));
1390
                    //    GridViewComboBoxColumn ColClientUsers = this.radGridViewDocuments.Columns[e.Column.Name] as GridViewComboBoxColumn;
1391
                    //    ColClientUsers.DataSource = clientUsers;
1392
                    //    ColClientUsers.DisplayMember = "Name";
1393
                    //    ColClientUsers.ValueMember = "ID";
1394
                    //    break;
1353 1395
                    case "JobLevel":
1354 1396
                        GridViewComboBoxColumn colJobLevel = this.radGridViewDocuments.Columns[e.Column.Name] as GridViewComboBoxColumn;
1355 1397
                        colJobLevel.DataSource = informations.JobLevel;
1356 1398
                        break;
1357 1399
                    case "ToIsDiscussion":
1400
                    case "IsConvert":
1358 1401
                    case "DTIsImport":
1359 1402
                    case "DTIsGateWay":
1360 1403
                    case "DTIsRegSystem":
......
2230 2273
            ColumnGroupsViewDefinition columnGroupsView = new ColumnGroupsViewDefinition();
2231 2274

  
2232 2275
            List<string> docLinkColNames = new List<string>() { "AutoCADLink", "ID2Connection", "PDFLink", "MarkupLink", "AVEVALink" };
2233
            List<string> docInfoColNames = new List<string>() { "RefProjectCode", "System", "SubSystemCode", "DocumentNo", "PersonInCharge", "Worker", "JobLevel", "RevisonNo" };
2276
            List<string> docInfoColNames = new List<string>() { "RefProjectCode", "System", "SubSystemCode", "DocumentNo", "PersonInCharge", "Worker", "AVEVAPersonInCharge", "AVEVAWorker", "JobLevel", "RevisonNo" };
2234 2277
            List<string> rvToColNames = new List<string>() { "ToIsDiscussion", "ToRemarks", "ToCreator", "ToCapture" };
2235 2278
            List<string> rvFrColNames = new List<string>() { "FrReviewStatus", "FrRemarks", "FrCreator", "FrCapture" };
2236
            List<string> wkID2ColNames = new List<string>() { "ID2StartDate", "ID2EndDate", "ID2Status", "ID2Issues" };
2279
            List<string> wkID2ColNames = new List<string>() { "ID2StartDate", "ID2EndDate", "ID2Status", "ID2Issues", "ReplyModifications", "ReplyRequester", "IsConvert" };
2237 2280
            List<string> wkAVEVAColNames = new List<string>() { "AVEVAConvertDate", "AVEVAReviewDate", "AVEVAStatus", "AVEVAIssues" };
2238 2281
            List<string> valLinkColNames = new List<string>() { "ReviewFileName", "SystemLink" };
2239 2282
            List<string> valProdColNames = new List<string>() { "ProdReviewer", "ProdIsResult", "ProdRemarks", "ProdCapture" };

내보내기 Unified diff

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