개정판 42d4c228
issue #0000
ToCapture, FrCapture 삭제된 로직 전체적 소스 수정
RefProjectCode 자리수 수정 20 -> 255
Change-Id: I91fccc88faa8c50f423ec23dfe5be740b98b3128
ID2.Manager/ID2.Manager.Controller/Controllers/DocumentController.cs | ||
---|---|---|
91 | 91 |
ToIsDiscussion = doc.ToIsDiscussion, |
92 | 92 |
ToRemarks = doc.ToRemarks, |
93 | 93 |
ToCreator = doc.ToCreator, |
94 |
ToCapture = doc.ToCapture, |
|
95 | 94 |
ToIsMarkup = doc.ToIsMarkup, |
96 | 95 |
FrReviewStatus = doc.FrReviewStatus, |
97 | 96 |
FrRemarks = doc.FrRemarks, |
98 | 97 |
FrCreator = doc.FrCreator, |
99 |
FrCapture = doc.FrCapture, |
|
100 | 98 |
FrIsMarkup = doc.FrIsMarkup, |
101 | 99 |
IsID2Work = doc.IsID2Work, |
102 | 100 |
ID2Connection = doc.ID2Connection, |
ID2.Manager/ID2.Manager.Dapper/Repository/DocumentRepository.cs | ||
---|---|---|
378 | 378 |
,ToIsDiscussion |
379 | 379 |
,ToRemarks |
380 | 380 |
,ToCreator |
381 |
,ToCapture |
|
382 | 381 |
,ToIsMarkup |
383 | 382 |
,FrReviewStatus |
384 | 383 |
,FrRemarks |
385 | 384 |
,FrCreator |
386 |
,FrCapture |
|
387 | 385 |
,FrIsMarkup |
388 | 386 |
,IsID2Work |
389 | 387 |
,ID2Connection |
... | ... | |
424 | 422 |
,@ToIsDiscussion |
425 | 423 |
,@ToRemarks |
426 | 424 |
,@ToCreator |
427 |
,@ToCapture |
|
428 | 425 |
,@ToIsMarkup |
429 | 426 |
,@FrReviewStatus |
430 | 427 |
,@FrRemarks |
431 | 428 |
,@FrCreator |
432 |
,@FrCapture |
|
433 | 429 |
,@FrIsMarkup |
434 | 430 |
,@IsID2Work |
435 | 431 |
,@ID2Connection |
... | ... | |
481 | 477 |
,ToIsDiscussion=@ToIsDiscussion |
482 | 478 |
,ToRemarks=@ToRemarks |
483 | 479 |
,ToCreator=@ToCreator |
484 |
,ToCapture=@ToCapture |
|
485 | 480 |
,ToIsMarkup=@ToIsMarkup |
486 | 481 |
,FrReviewStatus=@FrReviewStatus |
487 | 482 |
,FrRemarks=@FrRemarks |
488 | 483 |
,FrCreator=@FrCreator |
489 |
,FrCapture=@FrCapture |
|
490 | 484 |
,FrIsMarkup=@FrIsMarkup |
491 | 485 |
,IsID2Work=@IsID2Work |
492 | 486 |
,ID2Connection=@ID2Connection |
ID2.Manager/ID2.Manager.Data/Models/Documents.cs | ||
---|---|---|
202 | 202 |
&& this.AutoCADFilie == other.AutoCADFilie && this.PDFFile == other.PDFFile && this.MarkupLink == other.MarkupLink && this.AVEVALink == other.AVEVALink |
203 | 203 |
&& this.JobLevel == other.JobLevel && this.IsTypical == other.IsTypical |
204 | 204 |
&& this.PersonInCharge == other.PersonInCharge && this.IsDeleted == other.IsDeleted && this.ToIsDiscussion == other.ToIsDiscussion && this.ToRemarks == other.ToRemarks |
205 |
&& this.ToCreator == other.ToCreator && this.ToCapture == other.ToCapture && this.ToIsMarkup == other.ToIsMarkup
|
|
205 |
&& this.ToCreator == other.ToCreator && this.ToIsMarkup == other.ToIsMarkup |
|
206 | 206 |
&& this.FrReviewStatus == other.FrReviewStatus && this.FrRemarks == other.FrRemarks && this.FrCreator == other.FrCreator |
207 |
&& this.FrCapture == other.FrCapture && this.FrIsMarkup == other.FrIsMarkup && this.IsID2Work == other.IsID2Work && this.ID2Connection == other.ID2Connection
|
|
207 |
&& this.FrIsMarkup == other.FrIsMarkup && this.IsID2Work == other.IsID2Work && this.ID2Connection == other.ID2Connection |
|
208 | 208 |
&& this.ID2StartDate == other.ID2StartDate && this.ID2EndDate == other.ID2EndDate && this.ID2JobTime == other.ID2JobTime && this.ID2Status == other.ID2Status |
209 | 209 |
&& this.ID2Issues == other.ID2Issues && this.AVEVAConnection == other.AVEVAConnection && this.AVEVAConvertDate == other.AVEVAConvertDate && this.AVEVAReviewDate == other.AVEVAReviewDate |
210 | 210 |
&& this.AVEVAStatus == other.AVEVAStatus && this.AVEVAIssues == other.AVEVAIssues && this.ReviewFilePath == other.ReviewFilePath && this.ReviewFileName == other.ReviewFileName |
... | ... | |
227 | 227 |
+ this.AutoCADFilie.GetNullableHash() + this.PDFFile.GetNullableHash() + this.MarkupLink.GetNullableHash() + this.AVEVALink.GetNullableHash() |
228 | 228 |
+ this.JobLevel.GetNullableHash() + this.IsTypical.GetNullableHash() |
229 | 229 |
+ this.PersonInCharge.GetNullableHash() + this.IsDeleted.GetNullableHash() + this.ToIsDiscussion.GetNullableHash() + this.ToRemarks.GetNullableHash() |
230 |
+ this.ToCreator.GetNullableHash() + this.ToCapture.GetNullableHash() + this.ToIsMarkup.GetNullableHash()
|
|
230 |
+ this.ToCreator.GetNullableHash() + this.ToIsMarkup.GetNullableHash() |
|
231 | 231 |
+ this.FrReviewStatus.GetNullableHash() + this.FrRemarks.GetNullableHash() + this.FrCreator.GetNullableHash() |
232 |
+ this.FrCapture.GetNullableHash() + this.FrIsMarkup.GetNullableHash() + this.IsID2Work.GetNullableHash() + this.ID2Connection.GetNullableHash()
|
|
232 |
+ this.FrIsMarkup.GetNullableHash() + this.IsID2Work.GetNullableHash() + this.ID2Connection.GetNullableHash() |
|
233 | 233 |
+ this.ID2StartDate.GetNullableHash() + this.ID2EndDate.GetNullableHash() + this.ID2JobTime.GetNullableHash() + this.ID2Status.GetNullableHash() |
234 | 234 |
+ this.ID2Issues.GetNullableHash() + this.AVEVAConnection.GetNullableHash() + this.AVEVAConvertDate.GetNullableHash() + this.AVEVAReviewDate.GetNullableHash() |
235 | 235 |
+ this.AVEVAStatus.GetNullableHash() + this.AVEVAIssues.GetNullableHash() + this.ReviewFilePath.GetNullableHash() + this.ReviewFileName.GetNullableHash() |
ID2.Manager/ID2.Manager/Main.cs | ||
---|---|---|
1517 | 1517 |
case "SystemLink": |
1518 | 1518 |
bitmap = new Bitmap(Properties.Resources.link18_yellow); |
1519 | 1519 |
break; |
1520 |
case "ToCapture": |
|
1521 |
case "FrCapture": |
|
1522 |
bitmap = new Bitmap(Properties.Resources.files18); |
|
1523 |
break; |
|
1524 | 1520 |
case "ID2Connection": |
1525 | 1521 |
bitmap = new Bitmap(Properties.Resources.id218); |
1526 | 1522 |
break; |
... | ... | |
1535 | 1531 |
case "AVEVAConnection": |
1536 | 1532 |
case "ReviewFileName"://일단주석 |
1537 | 1533 |
case "SystemLink": |
1538 |
case "ToCapture": |
|
1539 |
case "FrCapture": |
|
1540 | 1534 |
case "ID2Connection": |
1541 | 1535 |
btnElem = (RadButtonElement)elem; |
1542 | 1536 |
btnElem.Margin = new Padding(0); |
... | ... | |
1876 | 1870 |
templateWorksheet.Cells[rowIndex, 11].Value = doc.ToIsDiscussion; |
1877 | 1871 |
templateWorksheet.Cells[rowIndex, 12].Value = doc.ToRemarks; |
1878 | 1872 |
templateWorksheet.Cells[rowIndex, 13].Value = this.GetUser(doc.ToCreator).Name; |
1879 |
templateWorksheet.Cells[rowIndex, 14].Value = doc.ToCapture; |
|
1873 |
//templateWorksheet.Cells[rowIndex, 14].Value = doc.ToCapture;
|
|
1880 | 1874 |
templateWorksheet.Cells[rowIndex, 15].Value = doc.ToIsMarkup; |
1881 | 1875 |
templateWorksheet.Cells[rowIndex, 16].Value = doc.FrReviewStatus; |
1882 | 1876 |
templateWorksheet.Cells[rowIndex, 17].Value = doc.FrRemarks; |
1883 | 1877 |
templateWorksheet.Cells[rowIndex, 18].Value = this.GetUser(doc.FrCreator).Name; |
1884 |
templateWorksheet.Cells[rowIndex, 19].Value = doc.FrCapture; |
|
1878 |
//templateWorksheet.Cells[rowIndex, 19].Value = doc.FrCapture;
|
|
1885 | 1879 |
templateWorksheet.Cells[rowIndex, 20].Value = doc.FrIsMarkup; |
1886 | 1880 |
templateWorksheet.Cells[rowIndex, 21].Value = doc.IsID2Work; |
1887 | 1881 |
templateWorksheet.Cells[rowIndex, 22].Value = doc.ID2Connection; |
내보내기 Unified diff