개정판 fe310cac
issue #0000
작업시간 삭제
- Main 화면(crud 포함)
- ID2 Connection 시 자동계산 로직 삭제
- Model에서 제거
Change-Id: If868c2ff52188d7e60009a48d8e7ea7c62df7fc1
ID2.Manager/ID2.Manager.Data/Models/Documents.cs | ||
---|---|---|
108 | 108 |
[DataMember] |
109 | 109 |
public DateTime? ID2EndDate { get; set; } |
110 | 110 |
[DataMember] |
111 |
public int ID2JobTime { get; set; } |
|
112 |
public string ID2JobTimetoString |
|
113 |
{ |
|
114 |
get |
|
115 |
{ |
|
116 |
StringBuilder sbTemp; |
|
117 |
if (ID2JobTime > 0) |
|
118 |
{ |
|
119 |
sbTemp = new StringBuilder(TimeSpan.FromSeconds(Convert.ToInt32(ID2JobTime)).ToString(@"dd\:hh\:mm\:ss")); |
|
120 |
} |
|
121 |
else if (ID2JobTime < 0) |
|
122 |
{ |
|
123 |
sbTemp = new StringBuilder(TimeSpan.FromSeconds(Convert.ToInt32(ID2JobTime)).ToString(@"dd\:hh\:mm\:ss")); |
|
124 |
sbTemp.Insert(0, "-"); |
|
125 |
} |
|
126 |
else |
|
127 |
{ |
|
128 |
sbTemp = new StringBuilder(); |
|
129 |
} |
|
130 |
|
|
131 |
return sbTemp.ToString(); |
|
132 |
} |
|
133 |
} |
|
134 |
[DataMember] |
|
135 | 111 |
public string ID2Status { get; set; } |
136 | 112 |
[DataMember] |
137 | 113 |
public string ID2Issues { get; set; } |
... | ... | |
205 | 181 |
&& this.ToCreator == other.ToCreator && this.ToIsMarkup == other.ToIsMarkup |
206 | 182 |
&& this.FrReviewStatus == other.FrReviewStatus && this.FrRemarks == other.FrRemarks && this.FrCreator == other.FrCreator |
207 | 183 |
&& this.FrIsMarkup == other.FrIsMarkup && this.IsID2Work == other.IsID2Work && this.ID2Connection == other.ID2Connection |
208 |
&& this.ID2StartDate == other.ID2StartDate && this.ID2EndDate == other.ID2EndDate && this.ID2JobTime == other.ID2JobTime && this.ID2Status == other.ID2Status
|
|
184 |
&& this.ID2StartDate == other.ID2StartDate && this.ID2EndDate == other.ID2EndDate && this.ID2Status == other.ID2Status |
|
209 | 185 |
&& this.ID2Issues == other.ID2Issues && this.AVEVAConnection == other.AVEVAConnection && this.AVEVAConvertDate == other.AVEVAConvertDate && this.AVEVAReviewDate == other.AVEVAReviewDate |
210 | 186 |
&& this.AVEVAStatus == other.AVEVAStatus && this.AVEVAIssues == other.AVEVAIssues && this.ReviewFilePath == other.ReviewFilePath && this.ReviewFileName == other.ReviewFileName |
211 | 187 |
&& this.ProdReviewer == other.ProdReviewer && this.ProdIsResult == other.ProdIsResult && this.ProdRemarks == other.ProdRemarks && this.ClientReviewer == other.ClientReviewer |
... | ... | |
230 | 206 |
+ this.ToCreator.GetNullableHash() + this.ToIsMarkup.GetNullableHash() |
231 | 207 |
+ this.FrReviewStatus.GetNullableHash() + this.FrRemarks.GetNullableHash() + this.FrCreator.GetNullableHash() |
232 | 208 |
+ this.FrIsMarkup.GetNullableHash() + this.IsID2Work.GetNullableHash() + this.ID2Connection.GetNullableHash() |
233 |
+ this.ID2StartDate.GetNullableHash() + this.ID2EndDate.GetNullableHash() + this.ID2JobTime.GetNullableHash() + this.ID2Status.GetNullableHash()
|
|
209 |
+ this.ID2StartDate.GetNullableHash() + this.ID2EndDate.GetNullableHash() + this.ID2Status.GetNullableHash() |
|
234 | 210 |
+ this.ID2Issues.GetNullableHash() + this.AVEVAConnection.GetNullableHash() + this.AVEVAConvertDate.GetNullableHash() + this.AVEVAReviewDate.GetNullableHash() |
235 | 211 |
+ this.AVEVAStatus.GetNullableHash() + this.AVEVAIssues.GetNullableHash() + this.ReviewFilePath.GetNullableHash() + this.ReviewFileName.GetNullableHash() |
236 | 212 |
+ this.ProdReviewer.GetNullableHash() + this.ProdIsResult.GetNullableHash() + this.ProdRemarks.GetNullableHash() + this.ClientReviewer.GetNullableHash() |
내보내기 Unified diff