프로젝트

일반

사용자정보

개정판 6c3bdda6

ID6c3bdda6ee3763268743d7d2ed1e21e0daad12ca
상위 d0f44dbd
하위 3cf51d85

유성호이(가) 약 2년 전에 추가함

issue #0000
Place 필드 삭제

Change-Id: I46c0ebd187360921f652b4cabf10b9e4c72935d9

차이점 보기:

ID2.Manager/ID2.Manager.Controller/Controllers/MarkusInfoController.cs
22 22
                {
23 23
                    try
24 24
                    {
25
                        result = rep.Insert(item.Place, item.DocumentNo);
25
                        result = rep.Insert(item.RefProjectCode, item.DocumentNo);
26 26

  
27 27
                        if (!result)
28 28
                        {
ID2.Manager/ID2.Manager.Dapper/Repository/DocumentRepository.cs
120 120
    ,[RefProjectCode]
121 121
    ,[DocFilePath]
122 122
    ,[DocFileName]
123
    ,[Place]
124 123
    ,[JobLevel]
125 124
    ,[IsTypical]
126 125
    ,[PersonInCharge]
......
167 166
    ,@RefProjectCode
168 167
    ,@DocFilePath
169 168
    ,@DocFileName
170
    ,@Place
171 169
    ,@JobLevel
172 170
    ,@IsTypical
173 171
    ,@PersonInCharge
......
216 214
      ,[RefProjectCode]=@RefProjectCode
217 215
      ,[DocFilePath]=@DocFilePath
218 216
      ,[DocFileName]=@DocFileName
219
      ,[Place]=@Place
220 217
      ,[JobLevel]=@JobLevel
221 218
      ,[IsTypical]=@IsTypical
222 219
      ,[PersonInCharge]=@PersonInCharge
ID2.Manager/ID2.Manager.Data/Models/Documents.cs
36 36
        [DataMember]
37 37
        public string DocFileName { get; set; }
38 38
        [DataMember]
39
        public string Place { get; set; }
40
        [DataMember]
41 39
        public string JobLevel { get; set; }
42 40
        [DataMember]
43 41
        public string IsTypical { get; set; }
......
131 129
        {
132 130
            return other != null && this.DocumentNo == other.DocumentNo && this.RevisonNo == other.RevisonNo && this.RefProjectCode == other.RefProjectCode && this.IsLatest == other.IsLatest
133 131
                && this.AutoCADFilie == other.AutoCADFilie && this.PDFFile == other.PDFFile && this.MarkupLink == other.MarkupLink && this.AVEVALink == other.AVEVALink
134
                && this.DocFilePath == other.DocFilePath && this.DocFileName == other.DocFileName && this.Place == other.Place && this.JobLevel == other.JobLevel && this.IsTypical == other.IsTypical
132
                && this.DocFilePath == other.DocFilePath && this.DocFileName == other.DocFileName && this.JobLevel == other.JobLevel && this.IsTypical == other.IsTypical
135 133
                && this.PersonInCharge == other.PersonInCharge && this.IsDeleted == other.IsDeleted && this.ToIsDiscussion == other.ToIsDiscussion && this.ToRemarks == other.ToRemarks
136 134
                && this.ToCreator == other.ToCreator && this.ToCapturePath == other.ToCapturePath && this.ToIsMarkup == other.ToIsMarkup
137 135
                && this.FrReviewStatus == other.FrReviewStatus && this.FrRemarks == other.FrRemarks && this.FrCreator == other.FrCreator
......
149 147
        {
150 148
            return this.DocumentNo.GetHashCode() + this.RevisonNo.GetHashCode() + this.RefProjectCode.GetHashCode() + this.IsLatest.GetHashCode()
151 149
                + this.AutoCADFilie.GetHashCode() + this.PDFFile.GetHashCode() + this.MarkupLink.GetHashCode() + this.AVEVALink.GetHashCode()
152
                + this.DocFilePath.GetHashCode() + this.DocFileName.GetHashCode() + this.Place.GetHashCode() + this.JobLevel.GetHashCode() + this.IsTypical.GetHashCode()
150
                + this.DocFilePath.GetHashCode() + this.DocFileName.GetHashCode() + this.JobLevel.GetHashCode() + this.IsTypical.GetHashCode()
153 151
                + this.PersonInCharge.GetHashCode() + this.IsDeleted.GetHashCode() + this.ToIsDiscussion.GetHashCode() + this.ToRemarks.GetHashCode()
154 152
                + this.ToCreator.GetHashCode() + this.ToCapturePath.GetHashCode() + this.ToIsMarkup.GetHashCode()
155 153
                + this.FrReviewStatus.GetHashCode() + this.FrRemarks.GetHashCode() + this.FrCreator.GetHashCode()
ID2.Manager/ID2.Manager/Main.cs
887 887
                               //Thickness = p.Value == null ? 0 : Convert.ToSingle(p.Value)
888 888

  
889 889
                               RefProjectCode = ws.Rows[p.Index].Cells[5].Value == null ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(),
890
                               //Place = ws.Rows[p.Index].Cells[5].Value == null ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(),
891 890
                               DocumentNo = ws.Rows[p.Index].Cells[6].Value == null ? string.Empty : ws.Rows[p.Index].Cells[6].Value.ToString(),
892 891
                               PersonInCharge = ws.Rows[p.Index].Cells[7].Value == null ? string.Empty : this.GetUser(ws.Rows[p.Index].Cells[7].Value.ToString()).ID,
893 892
                               JobLevel = ws.Rows[p.Index].Cells[8].Value == null ? string.Empty : ws.Rows[p.Index].Cells[8].Value.ToString(),
......
996 995
                            //templateWorksheet.Cells[rowIndex, 2].Value = doc.DocumentNo;
997 996
                            //templateWorksheet.Cells[rowIndex, 3].Value = doc.DocumentNo;
998 997
                            //templateWorksheet.Cells[rowIndex, 4].Value = doc.DocumentNo;
999
                            //templateWorksheet.Cells[rowIndex, 5].Value = doc.Place;
1000 998
                            templateWorksheet.Cells[rowIndex, 5].Value = doc.RefProjectCode;
1001 999
                            templateWorksheet.Cells[rowIndex, 6].Value = doc.DocumentNo;
1002 1000
                            templateWorksheet.Cells[rowIndex, 7].Value = this.GetUser(doc.PersonInCharge).Name;

내보내기 Unified diff

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