개정판 2aa2a446
issue #0000
ID2 작업여부
- Model 삭제
- DB 삭제
- 조회조건 및 crud 제거, 디자인 수정
- Excel 주석
마크업 여부
- Model 삭제
- DB 삭제
- crud 제거, 디자인 수정
Change-Id: I74bcd49d0e6199dd1396c5e44891b919722644fb
ID2.Manager/ID2.Manager/Classes/DocumentsWorker.cs | ||
---|---|---|
29 | 29 |
string DocumentNo { get; set; } |
30 | 30 |
string IsToIsDiscussion { get; set; } |
31 | 31 |
string IsFrReviewStatus { get; set; } |
32 |
string IsID2Work { get; set; } |
|
33 | 32 |
string Id2Issues { get; set; } |
34 | 33 |
string Id2Status { get; set; } |
35 | 34 |
string AvevaStatus { get; set; } |
... | ... | |
39 | 38 |
string DTIsGateWay { get; set; } |
40 | 39 |
string DTIsRegSystem { get; set; } |
41 | 40 |
|
42 |
public LoadDocumentsWorker(List<string> dateTypes, DateTime? frDate, DateTime? toDate, string projectCode, string personIncharge, string jobLevel, string documentNo, string isToIsDiscussion, string isFrReviewStatus, string isID2Work, string id2Status, string id2Issues, string avevaStatus, string avevaIssues, string prodIsResult, string clientIsResult, string isGateWay, string isRegSystem, Control parent = null) : base(parent)
|
|
41 |
public LoadDocumentsWorker(List<string> dateTypes, DateTime? frDate, DateTime? toDate, string projectCode, string personIncharge, string jobLevel, string documentNo, string isToIsDiscussion, string isFrReviewStatus, string id2Status, string id2Issues, string avevaStatus, string avevaIssues, string prodIsResult, string clientIsResult, string isGateWay, string isRegSystem, Control parent = null) : base(parent) |
|
43 | 42 |
{ |
44 | 43 |
this.DateTypes = dateTypes; |
45 | 44 |
this.FrDate = frDate; |
... | ... | |
50 | 49 |
this.DocumentNo = documentNo; |
51 | 50 |
this.IsToIsDiscussion = isToIsDiscussion; |
52 | 51 |
this.IsFrReviewStatus = isFrReviewStatus; |
53 |
this.IsID2Work = isID2Work; |
|
54 | 52 |
this.Id2Status = id2Status; |
55 | 53 |
this.Id2Issues = id2Issues; |
56 | 54 |
this.AvevaStatus = avevaStatus; |
... | ... | |
65 | 63 |
{ |
66 | 64 |
try |
67 | 65 |
{ |
68 |
var (dwgs, totalCnt) = new DocumentController().GetDocuments(informations.ActiveProject.ProjectID, this.DateTypes, this.FrDate, this.ToDate, this.ProjectCode, this.PersonIncharge, this.JobLevel, this.DocumentNo, this.IsToIsDiscussion, this.IsFrReviewStatus, this.IsID2Work, this.Id2Status, this.Id2Issues, this.AvevaStatus, this.AvevaIssues, this.ProdIsResult, this.ClientIsResult, this.DTIsGateWay, this.DTIsRegSystem);
|
|
66 |
var (dwgs, totalCnt) = new DocumentController().GetDocuments(informations.ActiveProject.ProjectID, this.DateTypes, this.FrDate, this.ToDate, this.ProjectCode, this.PersonIncharge, this.JobLevel, this.DocumentNo, this.IsToIsDiscussion, this.IsFrReviewStatus, this.Id2Status, this.Id2Issues, this.AvevaStatus, this.AvevaIssues, this.ProdIsResult, this.ClientIsResult, this.DTIsGateWay, this.DTIsRegSystem); |
|
69 | 67 |
e.Result = new DocumentsResult() { Dwgs = dwgs.ToList(), TotalCount = totalCnt }; |
70 | 68 |
} |
71 | 69 |
catch (Exception ex) |
내보내기 Unified diff