개정판 d0a1d373
issue #0000
- documents user field 기본값 null로 변경
- Gembox excel import 수정
Change-Id: I95022fb01a2ef85acf5f4f64d14a6ed55bcb0100
ID2.Manager/ID2.Manager.Data/Models/Documents.cs | ||
---|---|---|
29 | 29 |
public string SubSystemCode { get; set; } |
30 | 30 |
public string Team { get; set; } |
31 | 31 |
|
32 |
private string _Simularity = string.Empty;
|
|
33 |
public string Simularity
|
|
34 |
{
|
|
32 |
private string _Simularity = null;
|
|
33 |
public string Simularity |
|
34 |
{ |
|
35 | 35 |
get { return _Simularity; } |
36 |
set
|
|
36 |
set |
|
37 | 37 |
{ |
38 |
if(!_Simularity.Equals(value)) |
|
38 |
if (!_Simularity.Equals(value))
|
|
39 | 39 |
{ |
40 | 40 |
_Simularity = value; |
41 | 41 |
RaisePropertyChanged("Simularity"); |
42 | 42 |
} |
43 |
}
|
|
43 |
} |
|
44 | 44 |
} |
45 | 45 |
|
46 | 46 |
private string _RefProjectCode = string.Empty; |
... | ... | |
71 | 71 |
//[DataMember] |
72 | 72 |
public string Worker |
73 | 73 |
{ |
74 |
get => this._Worker;
|
|
74 |
get => this._Worker; |
|
75 | 75 |
set => SetProperty(ref this._Worker, value); |
76 | 76 |
} |
77 | 77 |
|
... | ... | |
93 | 93 |
//[DataMember] |
94 | 94 |
public string ToRemarks { get; set; } |
95 | 95 |
|
96 |
private string _ToCreator = string.Empty;
|
|
96 |
private string _ToCreator = null;
|
|
97 | 97 |
//[DataMember] |
98 | 98 |
public string ToCreator |
99 | 99 |
{ |
... | ... | |
114 | 114 |
//[DataMember] |
115 | 115 |
public string FrRemarks { get; set; } |
116 | 116 |
|
117 |
private string _FrCreator = string.Empty;
|
|
117 |
private string _FrCreator = null;
|
|
118 | 118 |
//[DataMember] |
119 | 119 |
public string FrCreator |
120 | 120 |
{ |
... | ... | |
144 | 144 |
//[DataMember] |
145 | 145 |
public string ReplyModifications { get; set; } |
146 | 146 |
|
147 |
private string _ReplyRequester = string.Empty;
|
|
147 |
private string _ReplyRequester = null;
|
|
148 | 148 |
//[DataMember] |
149 | 149 |
public string ReplyRequester |
150 | 150 |
{ |
... | ... | |
213 | 213 |
//[DataMember] |
214 | 214 |
public string ProdRemarks { get; set; } |
215 | 215 |
|
216 |
private string _ClientReviewer = string.Empty;
|
|
216 |
private string _ClientReviewer = null;
|
|
217 | 217 |
//[DataMember] |
218 | 218 |
public string ClientReviewer |
219 | 219 |
{ |
... | ... | |
276 | 276 |
if (this != null && other == null) |
277 | 277 |
return false; |
278 | 278 |
|
279 |
if ( this.DocumentNo != other.DocumentNo ) return false;
|
|
280 |
if ( this.RevisonNo != other.RevisonNo ) return false;
|
|
281 |
if ( this.System != other.System ) return false;
|
|
282 |
if ( this.SubSystemCode != other.SubSystemCode ) return false;
|
|
283 |
if ( this.RefProjectCode != other.RefProjectCode ) return false;
|
|
284 |
if ( this.JobLevel != other.JobLevel ) return false;
|
|
285 |
if ( this.Simularity != other.Simularity ) return false;
|
|
286 |
if ( this.PersonInCharge != other.PersonInCharge ) return false;
|
|
287 |
if ( this.Worker != other.Worker ) return false;
|
|
288 |
if ( this.ToIsDiscussion != other.ToIsDiscussion ) return false;
|
|
289 |
if ( this.ToRemarks != other.ToRemarks ) return false;
|
|
290 |
if ( this.ToCreator != other.ToCreator ) return false;
|
|
291 |
|
|
292 |
if ( this.FrReviewStatus != other.FrReviewStatus ) return false;
|
|
293 |
if ( this.FrRemarks != other.FrRemarks ) return false;
|
|
294 |
if ( this.FrCreator != other.FrCreator ) return false;
|
|
295 |
if ( this.ID2StartDate != other.ID2StartDate ) return false;
|
|
296 |
if ( this.ID2EndDate != other.ID2EndDate ) return false;
|
|
297 |
if ( this.ID2Status != other.ID2Status ) return false;
|
|
298 |
if ( this.ID2Issues != other.ID2Issues ) return false;
|
|
299 |
if ( this.ReplyModifications != other.ReplyModifications ) return false;
|
|
300 |
if ( this.ReplyRequester != other.ReplyRequester ) return false;
|
|
301 |
if ( this.IsConvert != other.IsConvert ) return false;
|
|
302 |
if ( this.AVEVAPersonInCharge != other.AVEVAPersonInCharge) return false;
|
|
303 |
if ( this.AVEVAWorker != other.AVEVAWorker ) return false;
|
|
304 |
if ( this.AVEVAConvertDate != other.AVEVAConvertDate ) return false;
|
|
305 |
if ( this.AVEVAReviewDate != other.AVEVAReviewDate ) return false;
|
|
306 |
if ( this.AVEVAWorkDate != other.AVEVAWorkDate ) return false;
|
|
307 |
if ( this.AVEVAStatus != other.AVEVAStatus ) return false;
|
|
308 |
if ( this.AVEVAIssues != other.AVEVAIssues ) return false;
|
|
309 |
if ( this.ProdReviewer != other.ProdReviewer ) return false;
|
|
310 |
if ( this.ProdIsResult != other.ProdIsResult ) return false;
|
|
311 |
if ( this.ProdRemarks != other.ProdRemarks ) return false;
|
|
312 |
if ( this.ClientReviewer != other.ClientReviewer ) return false;
|
|
313 |
if ( this.ClientIsResult != other.ClientIsResult ) return false;
|
|
314 |
if ( this.ClientRemarks != other.ClientRemarks ) return false;
|
|
315 |
if ( this.DTIsGateWay != other.DTIsGateWay ) return false;
|
|
316 |
if ( this.DTIsImport != other.DTIsImport ) return false;
|
|
317 |
if ( this.DTIsRegSystem != other.DTIsRegSystem ) return false;
|
|
318 |
if ( this.DTRemarks != other.DTRemarks ) return false;
|
|
319 |
if ( this.ConvertStatus != other.ConvertStatus ) return false;
|
|
279 |
if (this.DocumentNo != other.DocumentNo) return false;
|
|
280 |
if (this.RevisonNo != other.RevisonNo) return false;
|
|
281 |
if (this.System != other.System) return false;
|
|
282 |
if (this.SubSystemCode != other.SubSystemCode) return false;
|
|
283 |
if (this.RefProjectCode != other.RefProjectCode) return false;
|
|
284 |
if (this.JobLevel != other.JobLevel) return false;
|
|
285 |
if (this.Simularity != other.Simularity) return false;
|
|
286 |
if (this.PersonInCharge != other.PersonInCharge) return false;
|
|
287 |
if (this.Worker != other.Worker) return false;
|
|
288 |
if (this.ToIsDiscussion != other.ToIsDiscussion) return false;
|
|
289 |
if (this.ToRemarks != other.ToRemarks) return false;
|
|
290 |
if (this.ToCreator != other.ToCreator) return false;
|
|
291 |
|
|
292 |
if (this.FrReviewStatus != other.FrReviewStatus) return false;
|
|
293 |
if (this.FrRemarks != other.FrRemarks) return false;
|
|
294 |
if (this.FrCreator != other.FrCreator) return false;
|
|
295 |
if (this.ID2StartDate != other.ID2StartDate) return false;
|
|
296 |
if (this.ID2EndDate != other.ID2EndDate) return false;
|
|
297 |
if (this.ID2Status != other.ID2Status) return false;
|
|
298 |
if (this.ID2Issues != other.ID2Issues) return false;
|
|
299 |
if (this.ReplyModifications != other.ReplyModifications) return false;
|
|
300 |
if (this.ReplyRequester != other.ReplyRequester) return false;
|
|
301 |
if (this.IsConvert != other.IsConvert) return false;
|
|
302 |
if (this.AVEVAPersonInCharge != other.AVEVAPersonInCharge) return false; |
|
303 |
if (this.AVEVAWorker != other.AVEVAWorker) return false;
|
|
304 |
if (this.AVEVAConvertDate != other.AVEVAConvertDate) return false;
|
|
305 |
if (this.AVEVAReviewDate != other.AVEVAReviewDate) return false;
|
|
306 |
if (this.AVEVAWorkDate != other.AVEVAWorkDate) return false;
|
|
307 |
if (this.AVEVAStatus != other.AVEVAStatus) return false;
|
|
308 |
if (this.AVEVAIssues != other.AVEVAIssues) return false;
|
|
309 |
if (this.ProdReviewer != other.ProdReviewer) return false;
|
|
310 |
if (this.ProdIsResult != other.ProdIsResult) return false;
|
|
311 |
if (this.ProdRemarks != other.ProdRemarks) return false;
|
|
312 |
if (this.ClientReviewer != other.ClientReviewer) return false;
|
|
313 |
if (this.ClientIsResult != other.ClientIsResult) return false;
|
|
314 |
if (this.ClientRemarks != other.ClientRemarks) return false;
|
|
315 |
if (this.DTIsGateWay != other.DTIsGateWay) return false;
|
|
316 |
if (this.DTIsImport != other.DTIsImport) return false;
|
|
317 |
if (this.DTIsRegSystem != other.DTIsRegSystem) return false;
|
|
318 |
if (this.DTRemarks != other.DTRemarks) return false;
|
|
319 |
if (this.ConvertStatus != other.ConvertStatus) return false;
|
|
320 | 320 |
|
321 | 321 |
if (this.AttFiles == null && other.AttFiles == null) |
322 | 322 |
{ |
내보내기 Unified diff