개정판 2aa2a446
issue #0000
ID2 작업여부
- Model 삭제
- DB 삭제
- 조회조건 및 crud 제거, 디자인 수정
- Excel 주석
마크업 여부
- Model 삭제
- DB 삭제
- crud 제거, 디자인 수정
Change-Id: I74bcd49d0e6199dd1396c5e44891b919722644fb
ID2.Manager/ID2.Manager.Common/Helpers/ID2Excel.cs | ||
---|---|---|
258 | 258 |
}); |
259 | 259 |
} |
260 | 260 |
break; |
261 |
case 22: |
|
262 |
document.IsID2Work = value; |
|
263 |
break; |
|
261 |
//case 22:
|
|
262 |
// document.IsID2Work = value;
|
|
263 |
// break;
|
|
264 | 264 |
case 24: |
265 | 265 |
document.ID2StartDate = string.IsNullOrEmpty(value) ? (DateTime?)null : Convert.ToDateTime(value); |
266 | 266 |
break; |
... | ... | |
438 | 438 |
FrCreator = ws.Rows[p.Index].Cells[18].IsNullOrEmpty() ? string.Empty : this.GetUser(ws.Rows[p.Index].Cells[18].Value.ToString()).ID, |
439 | 439 |
//FrCapture = ws.Rows[p.Index].Cells[5].IsNullOrEmpty() ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(), |
440 | 440 |
//FrIsMarkup = ws.Rows[p.Index].Cells[5].IsNullOrEmpty() ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(), |
441 |
IsID2Work = ws.Rows[p.Index].Cells[21].IsNullOrEmpty() ? string.Empty : ws.Rows[p.Index].Cells[21].Value.ToString(), |
|
441 |
//IsID2Work = ws.Rows[p.Index].Cells[21].IsNullOrEmpty() ? string.Empty : ws.Rows[p.Index].Cells[21].Value.ToString(),
|
|
442 | 442 |
//ID2Connection = ws.Rows[p.Index].Cells[5].IsNullOrEmpty() ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(), |
443 | 443 |
ID2StartDate = ws.Rows[p.Index].Cells[23].IsNullOrEmpty() ? (DateTime?)null : Convert.ToDateTime(ws.Rows[p.Index].Cells[23].Value?.ToString()), |
444 | 444 |
ID2EndDate = ws.Rows[p.Index].Cells[24].IsNullOrEmpty() ? (DateTime?)null : Convert.ToDateTime(ws.Rows[p.Index].Cells[24].Value?.ToString()), |
ID2.Manager/ID2.Manager.Controller/Controllers/DocumentController.cs | ||
---|---|---|
31 | 31 |
} |
32 | 32 |
} |
33 | 33 |
|
34 |
public (IEnumerable<Documents> dwgs, int totalCnt) GetDocuments(string projectGroupID, 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)
|
|
34 |
public (IEnumerable<Documents> dwgs, int totalCnt) GetDocuments(string projectGroupID, 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) |
|
35 | 35 |
{ |
36 | 36 |
try |
37 | 37 |
{ |
38 | 38 |
using (DocumentRepository rep = new DocumentRepository(this._MSSQLCONNSTR)) |
39 | 39 |
{ |
40 |
return rep.GetDocuments(projectGroupID, dateTypes, frDate, toDate, projectCode, personIncharge, jobLevel, documentNo, isToIsDiscussion, isFrReviewStatus, isID2Work, id2Status, id2Issues, avevaStatus, avevaIssues, prodIsResult, clientIsResult, isGateWay, isRegSystem);
|
|
40 |
return rep.GetDocuments(projectGroupID, dateTypes, frDate, toDate, projectCode, personIncharge, jobLevel, documentNo, isToIsDiscussion, isFrReviewStatus, id2Status, id2Issues, avevaStatus, avevaIssues, prodIsResult, clientIsResult, isGateWay, isRegSystem); |
|
41 | 41 |
} |
42 | 42 |
} |
43 | 43 |
catch (Exception ex) |
... | ... | |
46 | 46 |
} |
47 | 47 |
} |
48 | 48 |
|
49 |
public (IEnumerable<Documents> dwgs, int totalCnt) GetDocuments(List<ID2ProjectInfo> id2Infos, string projectGroupID, List<string> dateTypes, DateTime? frDate, DateTime? toDate, string projectCode, string personIncharge, string jobLevel, string documentNo, string isToIsDiscussion, string isFrReviewStatus, string isID2Work, string id2Issues, string id2Status, string avevaStatus, string avevaIssues, string prodIsResult, string clientIsResult, string isGateWay, string isRegSystem)
|
|
49 |
public (IEnumerable<Documents> dwgs, int totalCnt) GetDocuments(List<ID2ProjectInfo> id2Infos, string projectGroupID, List<string> dateTypes, DateTime? frDate, DateTime? toDate, string projectCode, string personIncharge, string jobLevel, string documentNo, string isToIsDiscussion, string isFrReviewStatus, string id2Issues, string id2Status, string avevaStatus, string avevaIssues, string prodIsResult, string clientIsResult, string isGateWay, string isRegSystem) |
|
50 | 50 |
{ |
51 | 51 |
try |
52 | 52 |
{ |
53 |
var (dwgs, totalCnt) = this.GetDocuments(projectGroupID, dateTypes, frDate, toDate, projectCode, personIncharge, jobLevel, documentNo, isToIsDiscussion, isFrReviewStatus, isID2Work, id2Status, id2Issues, avevaStatus, avevaIssues, prodIsResult, clientIsResult, isGateWay, isRegSystem);
|
|
53 |
var (dwgs, totalCnt) = this.GetDocuments(projectGroupID, dateTypes, frDate, toDate, projectCode, personIncharge, jobLevel, documentNo, isToIsDiscussion, isFrReviewStatus, id2Status, id2Issues, avevaStatus, avevaIssues, prodIsResult, clientIsResult, isGateWay, isRegSystem); |
|
54 | 54 |
|
55 | 55 |
IEnumerable<Documents> docs = dwgs; |
56 | 56 |
List<ID2Drawings> id2docs = null; |
... | ... | |
91 | 91 |
ToIsDiscussion = doc.ToIsDiscussion, |
92 | 92 |
ToRemarks = doc.ToRemarks, |
93 | 93 |
ToCreator = doc.ToCreator, |
94 |
ToIsMarkup = doc.ToIsMarkup, |
|
95 | 94 |
FrReviewStatus = doc.FrReviewStatus, |
96 | 95 |
FrRemarks = doc.FrRemarks, |
97 | 96 |
FrCreator = doc.FrCreator, |
98 |
FrIsMarkup = doc.FrIsMarkup, |
|
99 |
IsID2Work = doc.IsID2Work, |
|
100 | 97 |
ID2Connection = doc.ID2Connection, |
101 | 98 |
ID2StartDate = doc.ID2StartDate, |
102 | 99 |
ID2EndDate = dw?.DATETIME == null ? (DateTime?)null : Convert.ToDateTime(dw?.DATETIME), |
ID2.Manager/ID2.Manager.Dapper/Repository/DocumentRepository.cs | ||
---|---|---|
58 | 58 |
} |
59 | 59 |
|
60 | 60 |
|
61 |
public (IEnumerable<Documents> dwgs, int totalCnt) GetDocuments(string projectGroupID, 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)
|
|
61 |
public (IEnumerable<Documents> dwgs, int totalCnt) GetDocuments(string projectGroupID, 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) |
|
62 | 62 |
{ |
63 | 63 |
var map = new CustomPropertyTypeMap(typeof(AttFileInfo), (type, columnName) |
64 | 64 |
=> type.GetProperties().FirstOrDefault(prop => GetDescriptionFromAttribute(prop) == columnName.ToLower())); |
... | ... | |
141 | 141 |
parameters.Add("FrReviewStatus", isFrReviewStatus); |
142 | 142 |
} |
143 | 143 |
|
144 |
if (!string.IsNullOrEmpty(isID2Work)) |
|
145 |
{ |
|
146 |
sbWhere.Append(" and doc.IsID2Work=@IsID2Work "); |
|
147 |
parameters.Add("IsID2Work", isID2Work); |
|
148 |
} |
|
149 |
|
|
150 | 144 |
if (!string.IsNullOrEmpty(id2Status)) |
151 | 145 |
{ |
152 | 146 |
sbWhere.Append(" and doc.ID2Status=@ID2Status "); |
... | ... | |
379 | 373 |
,ToIsDiscussion |
380 | 374 |
,ToRemarks |
381 | 375 |
,ToCreator |
382 |
,ToIsMarkup |
|
383 | 376 |
,FrReviewStatus |
384 | 377 |
,FrRemarks |
385 | 378 |
,FrCreator |
386 |
,FrIsMarkup |
|
387 |
,IsID2Work |
|
388 | 379 |
,ID2Connection |
389 | 380 |
,ID2StartDate |
390 | 381 |
,ID2EndDate |
... | ... | |
425 | 416 |
,@ToIsDiscussion |
426 | 417 |
,@ToRemarks |
427 | 418 |
,@ToCreator |
428 |
,@ToIsMarkup |
|
429 | 419 |
,@FrReviewStatus |
430 | 420 |
,@FrRemarks |
431 | 421 |
,@FrCreator |
432 |
,@FrIsMarkup |
|
433 |
,@IsID2Work |
|
434 | 422 |
,@ID2Connection |
435 | 423 |
,@ID2StartDate |
436 | 424 |
,@ID2EndDate |
... | ... | |
482 | 470 |
,ToIsDiscussion=@ToIsDiscussion |
483 | 471 |
,ToRemarks=@ToRemarks |
484 | 472 |
,ToCreator=@ToCreator |
485 |
,ToIsMarkup=@ToIsMarkup |
|
486 | 473 |
,FrReviewStatus=@FrReviewStatus |
487 | 474 |
,FrRemarks=@FrRemarks |
488 | 475 |
,FrCreator=@FrCreator |
489 |
,FrIsMarkup=@FrIsMarkup |
|
490 |
,IsID2Work=@IsID2Work |
|
491 | 476 |
,ID2Connection=@ID2Connection |
492 | 477 |
,ID2StartDate=@ID2StartDate |
493 | 478 |
,ID2EndDate=@ID2EndDate |
ID2.Manager/ID2.Manager.Data/Models/Documents.cs | ||
---|---|---|
93 | 93 |
public string ToCreator { get; set; } |
94 | 94 |
public int ToCapture { get; set; } |
95 | 95 |
[DataMember] |
96 |
public string ToIsMarkup { get; set; } |
|
97 |
[DataMember] |
|
98 | 96 |
public string FrReviewStatus { get; set; } |
99 | 97 |
[DataMember] |
100 | 98 |
public string FrRemarks { get; set; } |
... | ... | |
102 | 100 |
public string FrCreator { get; set; } |
103 | 101 |
public int FrCapture { get; set; } |
104 | 102 |
[DataMember] |
105 |
public string FrIsMarkup { get; set; } |
|
106 |
[DataMember] |
|
107 |
public string IsID2Work { get; set; } |
|
108 |
[DataMember] |
|
109 | 103 |
public string ID2Connection { get; set; } |
110 | 104 |
[DataMember] |
111 | 105 |
public DateTime? ID2StartDate { get; set; } |
... | ... | |
182 | 176 |
&& this.RefProjectCode == other.RefProjectCode && this.IsLatest == other.IsLatest && this.AutoCADFilie == other.AutoCADFilie && this.PDFFile == other.PDFFile |
183 | 177 |
&& this.MarkupLink == other.MarkupLink && this.AVEVALink == other.AVEVALink && this.JobLevel == other.JobLevel && this.IsTypical == other.IsTypical |
184 | 178 |
&& this.PersonInCharge == other.PersonInCharge && this.IsDeleted == other.IsDeleted && this.ToIsDiscussion == other.ToIsDiscussion && this.ToRemarks == other.ToRemarks |
185 |
&& this.ToCreator == other.ToCreator && this.ToIsMarkup == other.ToIsMarkup
|
|
179 |
&& this.ToCreator == other.ToCreator |
|
186 | 180 |
&& this.FrReviewStatus == other.FrReviewStatus && this.FrRemarks == other.FrRemarks && this.FrCreator == other.FrCreator |
187 |
&& this.FrIsMarkup == other.FrIsMarkup && this.IsID2Work == other.IsID2Work && this.ID2Connection == other.ID2Connection
|
|
181 |
&& this.ID2Connection == other.ID2Connection |
|
188 | 182 |
&& this.ID2StartDate == other.ID2StartDate && this.ID2EndDate == other.ID2EndDate && this.ID2Status == other.ID2Status |
189 | 183 |
&& this.ID2Issues == other.ID2Issues && this.AVEVAConnection == other.AVEVAConnection && this.AVEVAConvertDate == other.AVEVAConvertDate && this.AVEVAReviewDate == other.AVEVAReviewDate |
190 | 184 |
&& this.AVEVAStatus == other.AVEVAStatus && this.AVEVAIssues == other.AVEVAIssues && this.ReviewFilePath == other.ReviewFilePath && this.ReviewFileName == other.ReviewFileName |
... | ... | |
207 | 201 |
+ this.RefProjectCode.GetNullableHash() + this.IsLatest.GetNullableHash() + this.AutoCADFilie.GetNullableHash() + this.PDFFile.GetNullableHash() |
208 | 202 |
+ this.MarkupLink.GetNullableHash() + this.AVEVALink.GetNullableHash() + this.JobLevel.GetNullableHash() + this.IsTypical.GetNullableHash() |
209 | 203 |
+ this.PersonInCharge.GetNullableHash() + this.IsDeleted.GetNullableHash() + this.ToIsDiscussion.GetNullableHash() + this.ToRemarks.GetNullableHash() |
210 |
+ this.ToCreator.GetNullableHash() + this.ToIsMarkup.GetNullableHash()
|
|
204 |
+ this.ToCreator.GetNullableHash() |
|
211 | 205 |
+ this.FrReviewStatus.GetNullableHash() + this.FrRemarks.GetNullableHash() + this.FrCreator.GetNullableHash() |
212 |
+ this.FrIsMarkup.GetNullableHash() + this.IsID2Work.GetNullableHash() + this.ID2Connection.GetNullableHash()
|
|
206 |
+ this.ID2Connection.GetNullableHash() |
|
213 | 207 |
+ this.ID2StartDate.GetNullableHash() + this.ID2EndDate.GetNullableHash() + this.ID2Status.GetNullableHash() |
214 | 208 |
+ this.ID2Issues.GetNullableHash() + this.AVEVAConnection.GetNullableHash() + this.AVEVAConvertDate.GetNullableHash() + this.AVEVAReviewDate.GetNullableHash() |
215 | 209 |
+ this.AVEVAStatus.GetNullableHash() + this.AVEVAIssues.GetNullableHash() + this.ReviewFilePath.GetNullableHash() + this.ReviewFileName.GetNullableHash() |
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) |
ID2.Manager/ID2.Manager/Main.Designer.cs | ||
---|---|---|
47 | 47 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn7 = new Telerik.WinControls.UI.GridViewComboBoxColumn(); |
48 | 48 |
Telerik.WinControls.UI.GridViewImageColumn gridViewImageColumn1 = new Telerik.WinControls.UI.GridViewImageColumn(); |
49 | 49 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn8 = new Telerik.WinControls.UI.GridViewComboBoxColumn(); |
50 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn9 = new Telerik.WinControls.UI.GridViewComboBoxColumn(); |
|
51 | 50 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
52 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn10 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
51 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn9 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
53 | 52 |
Telerik.WinControls.UI.GridViewImageColumn gridViewImageColumn2 = new Telerik.WinControls.UI.GridViewImageColumn(); |
54 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn11 = new Telerik.WinControls.UI.GridViewComboBoxColumn(); |
|
55 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn12 = new Telerik.WinControls.UI.GridViewComboBoxColumn(); |
|
56 | 53 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn5 = new Telerik.WinControls.UI.GridViewCommandColumn(); |
57 | 54 |
Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn(); |
58 | 55 |
Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn(); |
59 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn13 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
56 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn10 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
60 | 57 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
61 | 58 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn6 = new Telerik.WinControls.UI.GridViewCommandColumn(); |
62 | 59 |
Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn3 = new Telerik.WinControls.UI.GridViewDateTimeColumn(); |
63 | 60 |
Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn4 = new Telerik.WinControls.UI.GridViewDateTimeColumn(); |
64 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn14 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
61 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn11 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
65 | 62 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
66 | 63 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn7 = new Telerik.WinControls.UI.GridViewCommandColumn(); |
67 | 64 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn8 = new Telerik.WinControls.UI.GridViewCommandColumn(); |
68 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn15 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
69 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn16 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
65 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn12 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
66 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn13 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
70 | 67 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
71 | 68 |
Telerik.WinControls.UI.GridViewImageColumn gridViewImageColumn3 = new Telerik.WinControls.UI.GridViewImageColumn(); |
72 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn17 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
73 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn18 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
69 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn14 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
70 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn15 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
74 | 71 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
75 | 72 |
Telerik.WinControls.UI.GridViewImageColumn gridViewImageColumn4 = new Telerik.WinControls.UI.GridViewImageColumn(); |
76 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn19 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
77 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn20 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
78 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn21 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
73 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn16 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
74 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn17 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
75 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn18 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
79 | 76 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
80 | 77 |
Telerik.WinControls.UI.TableViewDefinition tableViewDefinition1 = new Telerik.WinControls.UI.TableViewDefinition(); |
81 | 78 |
Telerik.WinControls.UI.GridViewRelation gridViewRelation1 = new Telerik.WinControls.UI.GridViewRelation(); |
... | ... | |
110 | 107 |
this.radLabelToIsDiscussion = new Telerik.WinControls.UI.RadLabel(); |
111 | 108 |
this.radLabel9 = new Telerik.WinControls.UI.RadLabel(); |
112 | 109 |
this.radLabelAVEVAStatus = new Telerik.WinControls.UI.RadLabel(); |
113 |
this.radLabelIsID2Work = new Telerik.WinControls.UI.RadLabel(); |
|
114 | 110 |
this.radLabelJobLevel = new Telerik.WinControls.UI.RadLabel(); |
115 | 111 |
this.radLabel4 = new Telerik.WinControls.UI.RadLabel(); |
116 | 112 |
this.radLabel3 = new Telerik.WinControls.UI.RadLabel(); |
... | ... | |
126 | 122 |
this.radDropDownListJobLevel = new Telerik.WinControls.UI.RadDropDownList(); |
127 | 123 |
this.radLabelID2Status = new Telerik.WinControls.UI.RadLabel(); |
128 | 124 |
this.radLabel10 = new Telerik.WinControls.UI.RadLabel(); |
129 |
this.radDropDownListIsID2Work = new Telerik.WinControls.UI.RadDropDownList(); |
|
130 | 125 |
this.radDropDownListID2Status = new Telerik.WinControls.UI.RadDropDownList(); |
131 | 126 |
this.radDropDownListAVEVAStatus = new Telerik.WinControls.UI.RadDropDownList(); |
132 | 127 |
this.radDropDownListProdIsResult = new Telerik.WinControls.UI.RadDropDownList(); |
... | ... | |
197 | 192 |
((System.ComponentModel.ISupportInitialize)(this.radLabelToIsDiscussion)).BeginInit(); |
198 | 193 |
((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit(); |
199 | 194 |
((System.ComponentModel.ISupportInitialize)(this.radLabelAVEVAStatus)).BeginInit(); |
200 |
((System.ComponentModel.ISupportInitialize)(this.radLabelIsID2Work)).BeginInit(); |
|
201 | 195 |
((System.ComponentModel.ISupportInitialize)(this.radLabelJobLevel)).BeginInit(); |
202 | 196 |
((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit(); |
203 | 197 |
((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit(); |
... | ... | |
213 | 207 |
((System.ComponentModel.ISupportInitialize)(this.radDropDownListJobLevel)).BeginInit(); |
214 | 208 |
((System.ComponentModel.ISupportInitialize)(this.radLabelID2Status)).BeginInit(); |
215 | 209 |
((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit(); |
216 |
((System.ComponentModel.ISupportInitialize)(this.radDropDownListIsID2Work)).BeginInit(); |
|
217 | 210 |
((System.ComponentModel.ISupportInitialize)(this.radDropDownListID2Status)).BeginInit(); |
218 | 211 |
((System.ComponentModel.ISupportInitialize)(this.radDropDownListAVEVAStatus)).BeginInit(); |
219 | 212 |
((System.ComponentModel.ISupportInitialize)(this.radDropDownListProdIsResult)).BeginInit(); |
... | ... | |
484 | 477 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); |
485 | 478 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 85F)); |
486 | 479 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); |
487 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 84F));
|
|
480 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 85F));
|
|
488 | 481 |
this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListFrReviewStatus, 4, 2); |
489 | 482 |
this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListToIsDiscussion, 2, 2); |
490 | 483 |
this.tableLayoutPanelCondition.Controls.Add(this.radLabelFrReviewStatus, 3, 2); |
491 | 484 |
this.tableLayoutPanelCondition.Controls.Add(this.radLabelToIsDiscussion, 1, 2); |
492 | 485 |
this.tableLayoutPanelCondition.Controls.Add(this.radLabel9, 1, 4); |
493 | 486 |
this.tableLayoutPanelCondition.Controls.Add(this.radLabelAVEVAStatus, 5, 3); |
494 |
this.tableLayoutPanelCondition.Controls.Add(this.radLabelIsID2Work, 5, 2); |
|
495 | 487 |
this.tableLayoutPanelCondition.Controls.Add(this.radLabelJobLevel, 5, 1); |
496 | 488 |
this.tableLayoutPanelCondition.Controls.Add(this.radLabel4, 0, 4); |
497 | 489 |
this.tableLayoutPanelCondition.Controls.Add(this.radLabel3, 0, 3); |
... | ... | |
507 | 499 |
this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListJobLevel, 6, 1); |
508 | 500 |
this.tableLayoutPanelCondition.Controls.Add(this.radLabelID2Status, 1, 3); |
509 | 501 |
this.tableLayoutPanelCondition.Controls.Add(this.radLabel10, 3, 4); |
510 |
this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListIsID2Work, 6, 2); |
|
511 | 502 |
this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListID2Status, 2, 3); |
512 | 503 |
this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListAVEVAStatus, 6, 3); |
513 | 504 |
this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListProdIsResult, 2, 4); |
... | ... | |
596 | 587 |
this.radLabelAVEVAStatus.TabIndex = 8; |
597 | 588 |
this.radLabelAVEVAStatus.Text = "AVEVA Status"; |
598 | 589 |
// |
599 |
// radLabelIsID2Work |
|
600 |
// |
|
601 |
this.radLabelIsID2Work.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
|
602 |
this.radLabelIsID2Work.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
|
603 |
this.radLabelIsID2Work.Location = new System.Drawing.Point(482, 62); |
|
604 |
this.radLabelIsID2Work.Name = "radLabelIsID2Work"; |
|
605 |
this.radLabelIsID2Work.Size = new System.Drawing.Size(80, 17); |
|
606 |
this.radLabelIsID2Work.TabIndex = 6; |
|
607 |
this.radLabelIsID2Work.Text = "ID2작업가능"; |
|
608 |
// |
|
609 | 590 |
// radLabelJobLevel |
610 | 591 |
// |
611 | 592 |
this.radLabelJobLevel.Anchor = System.Windows.Forms.AnchorStyles.Left; |
... | ... | |
684 | 665 |
this.radLabelDocumentNo.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
685 | 666 |
this.radLabelDocumentNo.Location = new System.Drawing.Point(693, 34); |
686 | 667 |
this.radLabelDocumentNo.Name = "radLabelDocumentNo"; |
687 |
this.radLabelDocumentNo.Size = new System.Drawing.Size(49, 17);
|
|
668 |
this.radLabelDocumentNo.Size = new System.Drawing.Size(52, 17);
|
|
688 | 669 |
this.radLabelDocumentNo.TabIndex = 6; |
689 | 670 |
this.radLabelDocumentNo.Text = "DWG ID"; |
690 | 671 |
// |
... | ... | |
756 | 737 |
this.radLabel10.TabIndex = 9; |
757 | 738 |
this.radLabel10.Text = "삼성결과"; |
758 | 739 |
// |
759 |
// radDropDownListIsID2Work |
|
760 |
// |
|
761 |
this.radDropDownListIsID2Work.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
|
762 |
this.radDropDownListIsID2Work.DropDownAnimationEnabled = true; |
|
763 |
this.radDropDownListIsID2Work.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
|
764 |
this.radDropDownListIsID2Work.Location = new System.Drawing.Point(568, 60); |
|
765 |
this.radDropDownListIsID2Work.Name = "radDropDownListIsID2Work"; |
|
766 |
this.radDropDownListIsID2Work.Size = new System.Drawing.Size(118, 20); |
|
767 |
this.radDropDownListIsID2Work.TabIndex = 12; |
|
768 |
// |
|
769 | 740 |
// radDropDownListID2Status |
770 | 741 |
// |
771 | 742 |
this.radDropDownListID2Status.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
... | ... | |
1197 | 1168 |
gridViewImageColumn1.Name = "ToCapture"; |
1198 | 1169 |
gridViewImageColumn1.Width = 80; |
1199 | 1170 |
gridViewComboBoxColumn8.EnableExpressionEditor = false; |
1200 |
gridViewComboBoxColumn8.FieldName = "ToIsMarkup";
|
|
1201 |
gridViewComboBoxColumn8.HeaderText = "마크업여부";
|
|
1202 |
gridViewComboBoxColumn8.Name = "ToIsMarkup";
|
|
1171 |
gridViewComboBoxColumn8.FieldName = "FrReviewStatus";
|
|
1172 |
gridViewComboBoxColumn8.HeaderText = "의견Status";
|
|
1173 |
gridViewComboBoxColumn8.Name = "FrReviewStatus";
|
|
1203 | 1174 |
gridViewComboBoxColumn8.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
1204 | 1175 |
gridViewComboBoxColumn8.Width = 80; |
1205 |
gridViewComboBoxColumn9.EnableExpressionEditor = false; |
|
1206 |
gridViewComboBoxColumn9.FieldName = "FrReviewStatus"; |
|
1207 |
gridViewComboBoxColumn9.HeaderText = "의견Status"; |
|
1208 |
gridViewComboBoxColumn9.Name = "FrReviewStatus"; |
|
1209 |
gridViewComboBoxColumn9.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1210 |
gridViewComboBoxColumn9.Width = 80; |
|
1211 | 1176 |
gridViewTextBoxColumn6.EnableExpressionEditor = false; |
1212 | 1177 |
gridViewTextBoxColumn6.FieldName = "FrRemarks"; |
1213 | 1178 |
gridViewTextBoxColumn6.HeaderText = "Brief"; |
1214 | 1179 |
gridViewTextBoxColumn6.Name = "FrRemarks"; |
1215 | 1180 |
gridViewTextBoxColumn6.Width = 150; |
1216 |
gridViewComboBoxColumn10.EnableExpressionEditor = false;
|
|
1217 |
gridViewComboBoxColumn10.FieldName = "FrCreator";
|
|
1218 |
gridViewComboBoxColumn10.HeaderText = "검토자";
|
|
1219 |
gridViewComboBoxColumn10.Name = "FrCreator";
|
|
1220 |
gridViewComboBoxColumn10.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1221 |
gridViewComboBoxColumn10.Width = 100;
|
|
1181 |
gridViewComboBoxColumn9.EnableExpressionEditor = false;
|
|
1182 |
gridViewComboBoxColumn9.FieldName = "FrCreator";
|
|
1183 |
gridViewComboBoxColumn9.HeaderText = "검토자";
|
|
1184 |
gridViewComboBoxColumn9.Name = "FrCreator";
|
|
1185 |
gridViewComboBoxColumn9.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1186 |
gridViewComboBoxColumn9.Width = 100;
|
|
1222 | 1187 |
gridViewImageColumn2.HeaderText = "Detail(캡쳐)"; |
1223 | 1188 |
gridViewImageColumn2.Name = "FrCapture"; |
1224 | 1189 |
gridViewImageColumn2.Width = 80; |
1225 |
gridViewComboBoxColumn11.EnableExpressionEditor = false; |
|
1226 |
gridViewComboBoxColumn11.FieldName = "FrIsMarkup"; |
|
1227 |
gridViewComboBoxColumn11.HeaderText = "마크업여부"; |
|
1228 |
gridViewComboBoxColumn11.Name = "FrIsMarkup"; |
|
1229 |
gridViewComboBoxColumn11.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1230 |
gridViewComboBoxColumn11.Width = 80; |
|
1231 |
gridViewComboBoxColumn12.EnableExpressionEditor = false; |
|
1232 |
gridViewComboBoxColumn12.FieldName = "IsID2Work"; |
|
1233 |
gridViewComboBoxColumn12.HeaderText = "ID2 작업가능"; |
|
1234 |
gridViewComboBoxColumn12.Name = "IsID2Work"; |
|
1235 |
gridViewComboBoxColumn12.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1236 |
gridViewComboBoxColumn12.Width = 90; |
|
1237 | 1190 |
gridViewCommandColumn5.EnableExpressionEditor = false; |
1238 | 1191 |
gridViewCommandColumn5.FieldName = "ID2Connection"; |
1239 | 1192 |
gridViewCommandColumn5.HeaderText = "연결"; |
... | ... | |
1257 | 1210 |
gridViewDateTimeColumn2.ReadOnly = true; |
1258 | 1211 |
gridViewDateTimeColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
1259 | 1212 |
gridViewDateTimeColumn2.Width = 120; |
1260 |
gridViewComboBoxColumn13.EnableExpressionEditor = false;
|
|
1261 |
gridViewComboBoxColumn13.FieldName = "ID2Status";
|
|
1262 |
gridViewComboBoxColumn13.HeaderText = "Status";
|
|
1263 |
gridViewComboBoxColumn13.Name = "ID2Status";
|
|
1264 |
gridViewComboBoxColumn13.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1265 |
gridViewComboBoxColumn13.Width = 70;
|
|
1213 |
gridViewComboBoxColumn10.EnableExpressionEditor = false;
|
|
1214 |
gridViewComboBoxColumn10.FieldName = "ID2Status";
|
|
1215 |
gridViewComboBoxColumn10.HeaderText = "Status";
|
|
1216 |
gridViewComboBoxColumn10.Name = "ID2Status";
|
|
1217 |
gridViewComboBoxColumn10.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1218 |
gridViewComboBoxColumn10.Width = 70;
|
|
1266 | 1219 |
gridViewTextBoxColumn7.EnableExpressionEditor = false; |
1267 | 1220 |
gridViewTextBoxColumn7.FieldName = "ID2Issues"; |
1268 | 1221 |
gridViewTextBoxColumn7.HeaderText = "이슈사항"; |
... | ... | |
1289 | 1242 |
gridViewDateTimeColumn4.Name = "AVEVAReviewDate"; |
1290 | 1243 |
gridViewDateTimeColumn4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
1291 | 1244 |
gridViewDateTimeColumn4.Width = 70; |
1292 |
gridViewComboBoxColumn14.EnableExpressionEditor = false;
|
|
1293 |
gridViewComboBoxColumn14.FieldName = "AVEVAStatus";
|
|
1294 |
gridViewComboBoxColumn14.HeaderText = "Status";
|
|
1295 |
gridViewComboBoxColumn14.Name = "AVEVAStatus";
|
|
1296 |
gridViewComboBoxColumn14.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1297 |
gridViewComboBoxColumn14.Width = 70;
|
|
1245 |
gridViewComboBoxColumn11.EnableExpressionEditor = false;
|
|
1246 |
gridViewComboBoxColumn11.FieldName = "AVEVAStatus";
|
|
1247 |
gridViewComboBoxColumn11.HeaderText = "Status";
|
|
1248 |
gridViewComboBoxColumn11.Name = "AVEVAStatus";
|
|
1249 |
gridViewComboBoxColumn11.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1250 |
gridViewComboBoxColumn11.Width = 70;
|
|
1298 | 1251 |
gridViewTextBoxColumn8.EnableExpressionEditor = false; |
1299 | 1252 |
gridViewTextBoxColumn8.FieldName = "AVEVAIssues"; |
1300 | 1253 |
gridViewTextBoxColumn8.HeaderText = "이슈사항"; |
... | ... | |
1309 | 1262 |
gridViewCommandColumn8.HeaderText = "시스템"; |
1310 | 1263 |
gridViewCommandColumn8.Name = "SystemLink"; |
1311 | 1264 |
gridViewCommandColumn8.Width = 70; |
1312 |
gridViewComboBoxColumn15.EnableExpressionEditor = false;
|
|
1313 |
gridViewComboBoxColumn15.FieldName = "ProdReviewer";
|
|
1314 |
gridViewComboBoxColumn15.HeaderText = "검토자";
|
|
1315 |
gridViewComboBoxColumn15.Name = "ProdReviewer";
|
|
1316 |
gridViewComboBoxColumn15.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1317 |
gridViewComboBoxColumn15.Width = 100;
|
|
1318 |
gridViewComboBoxColumn16.EnableExpressionEditor = false;
|
|
1319 |
gridViewComboBoxColumn16.FieldName = "ProdIsResult";
|
|
1320 |
gridViewComboBoxColumn16.HeaderText = "결과";
|
|
1321 |
gridViewComboBoxColumn16.Name = "ProdIsResult";
|
|
1322 |
gridViewComboBoxColumn16.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1323 |
gridViewComboBoxColumn16.Width = 70;
|
|
1265 |
gridViewComboBoxColumn12.EnableExpressionEditor = false;
|
|
1266 |
gridViewComboBoxColumn12.FieldName = "ProdReviewer";
|
|
1267 |
gridViewComboBoxColumn12.HeaderText = "검토자";
|
|
1268 |
gridViewComboBoxColumn12.Name = "ProdReviewer";
|
|
1269 |
gridViewComboBoxColumn12.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1270 |
gridViewComboBoxColumn12.Width = 100;
|
|
1271 |
gridViewComboBoxColumn13.EnableExpressionEditor = false;
|
|
1272 |
gridViewComboBoxColumn13.FieldName = "ProdIsResult";
|
|
1273 |
gridViewComboBoxColumn13.HeaderText = "결과";
|
|
1274 |
gridViewComboBoxColumn13.Name = "ProdIsResult";
|
|
1275 |
gridViewComboBoxColumn13.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1276 |
gridViewComboBoxColumn13.Width = 70;
|
|
1324 | 1277 |
gridViewTextBoxColumn9.EnableExpressionEditor = false; |
1325 | 1278 |
gridViewTextBoxColumn9.FieldName = "ProdRemarks"; |
1326 | 1279 |
gridViewTextBoxColumn9.HeaderText = "비고"; |
... | ... | |
1328 | 1281 |
gridViewTextBoxColumn9.Width = 150; |
1329 | 1282 |
gridViewImageColumn3.HeaderText = "캡쳐"; |
1330 | 1283 |
gridViewImageColumn3.Name = "ProdCapture"; |
1331 |
gridViewComboBoxColumn17.EnableExpressionEditor = false;
|
|
1332 |
gridViewComboBoxColumn17.FieldName = "ClientReviewer";
|
|
1333 |
gridViewComboBoxColumn17.HeaderText = "검토자";
|
|
1334 |
gridViewComboBoxColumn17.Name = "ClientReviewer";
|
|
1335 |
gridViewComboBoxColumn17.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1336 |
gridViewComboBoxColumn17.Width = 100;
|
|
1337 |
gridViewComboBoxColumn18.EnableExpressionEditor = false;
|
|
1338 |
gridViewComboBoxColumn18.FieldName = "ClientIsResult";
|
|
1339 |
gridViewComboBoxColumn18.HeaderText = "결과";
|
|
1340 |
gridViewComboBoxColumn18.Name = "ClientIsResult";
|
|
1341 |
gridViewComboBoxColumn18.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1342 |
gridViewComboBoxColumn18.Width = 70;
|
|
1284 |
gridViewComboBoxColumn14.EnableExpressionEditor = false;
|
|
1285 |
gridViewComboBoxColumn14.FieldName = "ClientReviewer";
|
|
1286 |
gridViewComboBoxColumn14.HeaderText = "검토자";
|
|
1287 |
gridViewComboBoxColumn14.Name = "ClientReviewer";
|
|
1288 |
gridViewComboBoxColumn14.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1289 |
gridViewComboBoxColumn14.Width = 100;
|
|
1290 |
gridViewComboBoxColumn15.EnableExpressionEditor = false;
|
|
1291 |
gridViewComboBoxColumn15.FieldName = "ClientIsResult";
|
|
1292 |
gridViewComboBoxColumn15.HeaderText = "결과";
|
|
1293 |
gridViewComboBoxColumn15.Name = "ClientIsResult";
|
|
1294 |
gridViewComboBoxColumn15.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1295 |
gridViewComboBoxColumn15.Width = 70;
|
|
1343 | 1296 |
gridViewTextBoxColumn10.EnableExpressionEditor = false; |
1344 | 1297 |
gridViewTextBoxColumn10.FieldName = "ClientRemarks"; |
1345 | 1298 |
gridViewTextBoxColumn10.HeaderText = "비고"; |
... | ... | |
1347 | 1300 |
gridViewTextBoxColumn10.Width = 150; |
1348 | 1301 |
gridViewImageColumn4.HeaderText = "캡쳐"; |
1349 | 1302 |
gridViewImageColumn4.Name = "ClientCapture"; |
1350 |
gridViewComboBoxColumn19.EnableExpressionEditor = false;
|
|
1351 |
gridViewComboBoxColumn19.FieldName = "DTIsGateWay";
|
|
1352 |
gridViewComboBoxColumn19.HeaderText = "GateWay";
|
|
1353 |
gridViewComboBoxColumn19.Name = "DTIsGateWay";
|
|
1354 |
gridViewComboBoxColumn19.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1355 |
gridViewComboBoxColumn19.Width = 80;
|
|
1356 |
gridViewComboBoxColumn20.EnableExpressionEditor = false;
|
|
1357 |
gridViewComboBoxColumn20.FieldName = "DTIsImport";
|
|
1358 |
gridViewComboBoxColumn20.HeaderText = "Import 성공여부";
|
|
1359 |
gridViewComboBoxColumn20.Name = "DTIsImport";
|
|
1360 |
gridViewComboBoxColumn20.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1361 |
gridViewComboBoxColumn20.Width = 80;
|
|
1362 |
gridViewComboBoxColumn21.EnableExpressionEditor = false;
|
|
1363 |
gridViewComboBoxColumn21.FieldName = "DTIsRegSystem";
|
|
1364 |
gridViewComboBoxColumn21.HeaderText = "시스템등록";
|
|
1365 |
gridViewComboBoxColumn21.Name = "DTIsRegSystem";
|
|
1366 |
gridViewComboBoxColumn21.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1367 |
gridViewComboBoxColumn21.Width = 80;
|
|
1303 |
gridViewComboBoxColumn16.EnableExpressionEditor = false;
|
|
1304 |
gridViewComboBoxColumn16.FieldName = "DTIsGateWay";
|
|
1305 |
gridViewComboBoxColumn16.HeaderText = "GateWay";
|
|
1306 |
gridViewComboBoxColumn16.Name = "DTIsGateWay";
|
|
1307 |
gridViewComboBoxColumn16.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1308 |
gridViewComboBoxColumn16.Width = 80;
|
|
1309 |
gridViewComboBoxColumn17.EnableExpressionEditor = false;
|
|
1310 |
gridViewComboBoxColumn17.FieldName = "DTIsImport";
|
|
1311 |
gridViewComboBoxColumn17.HeaderText = "Import 성공여부";
|
|
1312 |
gridViewComboBoxColumn17.Name = "DTIsImport";
|
|
1313 |
gridViewComboBoxColumn17.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1314 |
gridViewComboBoxColumn17.Width = 80;
|
|
1315 |
gridViewComboBoxColumn18.EnableExpressionEditor = false;
|
|
1316 |
gridViewComboBoxColumn18.FieldName = "DTIsRegSystem";
|
|
1317 |
gridViewComboBoxColumn18.HeaderText = "시스템등록";
|
|
1318 |
gridViewComboBoxColumn18.Name = "DTIsRegSystem";
|
|
1319 |
gridViewComboBoxColumn18.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
|
|
1320 |
gridViewComboBoxColumn18.Width = 80;
|
|
1368 | 1321 |
gridViewTextBoxColumn11.EnableExpressionEditor = false; |
1369 | 1322 |
gridViewTextBoxColumn11.FieldName = "DTRemarks"; |
1370 | 1323 |
gridViewTextBoxColumn11.HeaderText = "비고"; |
... | ... | |
1389 | 1342 |
gridViewComboBoxColumn7, |
1390 | 1343 |
gridViewImageColumn1, |
1391 | 1344 |
gridViewComboBoxColumn8, |
1392 |
gridViewComboBoxColumn9, |
|
1393 | 1345 |
gridViewTextBoxColumn6, |
1394 |
gridViewComboBoxColumn10,
|
|
1346 |
gridViewComboBoxColumn9,
|
|
1395 | 1347 |
gridViewImageColumn2, |
1396 |
gridViewComboBoxColumn11, |
|
1397 |
gridViewComboBoxColumn12, |
|
1398 | 1348 |
gridViewCommandColumn5, |
1399 | 1349 |
gridViewDateTimeColumn1, |
1400 | 1350 |
gridViewDateTimeColumn2, |
1401 |
gridViewComboBoxColumn13,
|
|
1351 |
gridViewComboBoxColumn10,
|
|
1402 | 1352 |
gridViewTextBoxColumn7, |
1403 | 1353 |
gridViewCommandColumn6, |
1404 | 1354 |
gridViewDateTimeColumn3, |
1405 | 1355 |
gridViewDateTimeColumn4, |
1406 |
gridViewComboBoxColumn14,
|
|
1356 |
gridViewComboBoxColumn11,
|
|
1407 | 1357 |
gridViewTextBoxColumn8, |
1408 | 1358 |
gridViewCommandColumn7, |
1409 | 1359 |
gridViewCommandColumn8, |
1410 |
gridViewComboBoxColumn15,
|
|
1411 |
gridViewComboBoxColumn16,
|
|
1360 |
gridViewComboBoxColumn12,
|
|
1361 |
gridViewComboBoxColumn13,
|
|
1412 | 1362 |
gridViewTextBoxColumn9, |
1413 | 1363 |
gridViewImageColumn3, |
1414 |
gridViewComboBoxColumn17,
|
|
1415 |
gridViewComboBoxColumn18,
|
|
1364 |
gridViewComboBoxColumn14,
|
|
1365 |
gridViewComboBoxColumn15,
|
|
1416 | 1366 |
gridViewTextBoxColumn10, |
1417 | 1367 |
gridViewImageColumn4, |
1418 |
gridViewComboBoxColumn19,
|
|
1419 |
gridViewComboBoxColumn20,
|
|
1420 |
gridViewComboBoxColumn21,
|
|
1368 |
gridViewComboBoxColumn16,
|
|
1369 |
gridViewComboBoxColumn17,
|
|
1370 |
gridViewComboBoxColumn18,
|
|
1421 | 1371 |
gridViewTextBoxColumn11}); |
1422 | 1372 |
this.radGridViewDocuments.MasterTemplate.EnableAlternatingRowColor = true; |
1423 | 1373 |
this.radGridViewDocuments.MasterTemplate.EnableFiltering = true; |
... | ... | |
1835 | 1785 |
((System.ComponentModel.ISupportInitialize)(this.radLabelToIsDiscussion)).EndInit(); |
1836 | 1786 |
((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit(); |
1837 | 1787 |
((System.ComponentModel.ISupportInitialize)(this.radLabelAVEVAStatus)).EndInit(); |
1838 |
((System.ComponentModel.ISupportInitialize)(this.radLabelIsID2Work)).EndInit(); |
|
1839 | 1788 |
((System.ComponentModel.ISupportInitialize)(this.radLabelJobLevel)).EndInit(); |
1840 | 1789 |
((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit(); |
1841 | 1790 |
((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit(); |
... | ... | |
1851 | 1800 |
((System.ComponentModel.ISupportInitialize)(this.radDropDownListJobLevel)).EndInit(); |
1852 | 1801 |
((System.ComponentModel.ISupportInitialize)(this.radLabelID2Status)).EndInit(); |
1853 | 1802 |
((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit(); |
1854 |
((System.ComponentModel.ISupportInitialize)(this.radDropDownListIsID2Work)).EndInit(); |
|
1855 | 1803 |
((System.ComponentModel.ISupportInitialize)(this.radDropDownListID2Status)).EndInit(); |
1856 | 1804 |
((System.ComponentModel.ISupportInitialize)(this.radDropDownListAVEVAStatus)).EndInit(); |
1857 | 1805 |
((System.ComponentModel.ISupportInitialize)(this.radDropDownListProdIsResult)).EndInit(); |
... | ... | |
1958 | 1906 |
private Telerik.WinControls.UI.RadLabel radLabel1; |
1959 | 1907 |
private Telerik.WinControls.UI.RadLabel radLabelJobLevel; |
1960 | 1908 |
private Telerik.WinControls.UI.RadDropDownList radDropDownListJobLevel; |
1961 |
private Telerik.WinControls.UI.RadLabel radLabelIsID2Work; |
|
1962 | 1909 |
private Telerik.WinControls.UI.RadLabel radLabel9; |
1963 | 1910 |
private Telerik.WinControls.UI.RadLabel radLabelAVEVAStatus; |
1964 | 1911 |
private Telerik.WinControls.UI.RadLabel radLabelID2Status; |
1965 | 1912 |
private Telerik.WinControls.UI.RadLabel radLabel10; |
1966 |
private Telerik.WinControls.UI.RadDropDownList radDropDownListIsID2Work; |
|
1967 | 1913 |
private Telerik.WinControls.UI.RadDropDownList radDropDownListID2Status; |
1968 | 1914 |
private Telerik.WinControls.UI.RadDropDownList radDropDownListAVEVAStatus; |
1969 | 1915 |
private Telerik.WinControls.UI.RadDropDownList radDropDownListProdIsResult; |
ID2.Manager/ID2.Manager/Main.cs | ||
---|---|---|
917 | 917 |
var allFrReviewStatus = new RadListDataItem("== 전체 ==", string.Empty); |
918 | 918 |
this.radDropDownListFrReviewStatus.Items.Insert(0, allFrReviewStatus); |
919 | 919 |
allFrReviewStatus.Selected = true; |
920 |
|
|
921 |
//ID2 작업가능 |
|
922 |
if (this.radDropDownListIsID2Work.Items.Count > 0) |
|
923 |
this.radDropDownListIsID2Work.Items.Clear(); |
|
924 |
informations.IsYesNo.ForEach(x => |
|
925 |
{ |
|
926 |
var item = new RadListDataItem(x, x); |
|
927 |
if (x.Equals("Yes")) |
|
928 |
item.Selected = true; |
|
929 |
this.radDropDownListIsID2Work.Items.Add(item); |
|
930 |
|
|
931 |
}); |
|
932 |
var allIsID2Work = new RadListDataItem("== 전체 ==", string.Empty); |
|
933 |
this.radDropDownListIsID2Work.Items.Insert(0, allIsID2Work); |
|
934 | 920 |
#endregion |
935 | 921 |
|
936 | 922 |
#region 작업 |
... | ... | |
1069 | 1055 |
|
1070 | 1056 |
string isToIsDiscussion = this.radDropDownListToIsDiscussion.SelectedValue.ToString(); |
1071 | 1057 |
string isFrReviewStatus = this.radDropDownListFrReviewStatus.SelectedValue.ToString(); |
1072 |
string isID2Work = this.radDropDownListIsID2Work.SelectedValue.ToString(); |
|
1073 | 1058 |
|
1074 | 1059 |
string id2Status = this.radDropDownListID2Status.SelectedValue.ToString(); |
1075 | 1060 |
string id2Issues = this.radDropDownListID2Issues.SelectedValue.ToString(); |
... | ... | |
1082 | 1067 |
string isGateWay = this.radDropDownListGateway.SelectedValue.ToString(); |
1083 | 1068 |
string isRegSystem = this.radDropDownListRegistration.SelectedValue.ToString(); |
1084 | 1069 |
|
1085 |
var worker = new LoadDocumentsWorker(dateTypes, frDate, toDate, projectCode, personIncharge, jobLevel, documentNo, isToIsDiscussion, isFrReviewStatus, isID2Work, id2Status, id2Issues, avevaStatus, avevaIssues, prodIsResult, clientIsResult, isGateWay, isRegSystem, this.radGridViewDocuments);
|
|
1070 |
var worker = new LoadDocumentsWorker(dateTypes, frDate, toDate, projectCode, personIncharge, jobLevel, documentNo, isToIsDiscussion, isFrReviewStatus, id2Status, id2Issues, avevaStatus, avevaIssues, prodIsResult, clientIsResult, isGateWay, isRegSystem, this.radGridViewDocuments); |
|
1086 | 1071 |
worker.OnWorkCompletedHandler += (e) => |
1087 | 1072 |
{ |
1088 | 1073 |
var docData = e.Result as DocumentsResult; |
... | ... | |
1372 | 1357 |
break; |
1373 | 1358 |
case "IsTypical": |
1374 | 1359 |
case "ToIsDiscussion": |
1375 |
case "ToIsMarkup": |
|
1376 |
case "FrIsMarkup": |
|
1377 |
case "IsID2Work": |
|
1378 | 1360 |
case "DTIsImport": |
1379 | 1361 |
case "DTIsGateWay": |
1380 | 1362 |
case "DTIsRegSystem": |
... | ... | |
1773 | 1755 |
FrCreator = ws.Rows[p.Index].Cells[18].Value == null ? string.Empty : this.GetUser(ws.Rows[p.Index].Cells[18].Value.ToString()).ID, |
1774 | 1756 |
//FrCapture = ws.Rows[p.Index].Cells[5].Value == null ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(), |
1775 | 1757 |
//FrIsMarkup = ws.Rows[p.Index].Cells[5].Value == null ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(), |
1776 |
IsID2Work = ws.Rows[p.Index].Cells[21].Value == null ? string.Empty : ws.Rows[p.Index].Cells[21].Value.ToString(), |
|
1758 |
//IsID2Work = ws.Rows[p.Index].Cells[21].Value == null ? string.Empty : ws.Rows[p.Index].Cells[21].Value.ToString(),
|
|
1777 | 1759 |
//ID2Connection = ws.Rows[p.Index].Cells[5].Value == null ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(), |
1778 | 1760 |
ID2StartDate = ws.Rows[p.Index].Cells[23].Value == null ? (DateTime?)null : Convert.ToDateTime(ws.Rows[p.Index].Cells[23].Value?.ToString()), |
1779 | 1761 |
ID2EndDate = ws.Rows[p.Index].Cells[24].Value == null ? (DateTime?)null : Convert.ToDateTime(ws.Rows[p.Index].Cells[24].Value?.ToString()), |
... | ... | |
1876 | 1858 |
templateWorksheet.Cells[rowIndex, 12].Value = doc.ToRemarks; |
1877 | 1859 |
templateWorksheet.Cells[rowIndex, 13].Value = this.GetUser(doc.ToCreator).Name; |
1878 | 1860 |
//templateWorksheet.Cells[rowIndex, 14].Value = doc.ToCapture; |
1879 |
templateWorksheet.Cells[rowIndex, 15].Value = doc.ToIsMarkup; |
|
1861 |
//templateWorksheet.Cells[rowIndex, 15].Value = doc.ToIsMarkup;
|
|
1880 | 1862 |
templateWorksheet.Cells[rowIndex, 16].Value = doc.FrReviewStatus; |
1881 | 1863 |
templateWorksheet.Cells[rowIndex, 17].Value = doc.FrRemarks; |
1882 | 1864 |
templateWorksheet.Cells[rowIndex, 18].Value = this.GetUser(doc.FrCreator).Name; |
1883 | 1865 |
//templateWorksheet.Cells[rowIndex, 19].Value = doc.FrCapture; |
1884 |
templateWorksheet.Cells[rowIndex, 20].Value = doc.FrIsMarkup; |
|
1885 |
templateWorksheet.Cells[rowIndex, 21].Value = doc.IsID2Work; |
|
1866 |
//templateWorksheet.Cells[rowIndex, 20].Value = doc.FrIsMarkup;
|
|
1867 |
//templateWorksheet.Cells[rowIndex, 21].Value = doc.IsID2Work;
|
|
1886 | 1868 |
templateWorksheet.Cells[rowIndex, 22].Value = doc.ID2Connection; |
1887 | 1869 |
templateWorksheet.Cells[rowIndex, 23].Value = $"{doc.ID2StartDate:yyyy/MM/dd hh:mm:ss}"; |
1888 | 1870 |
templateWorksheet.Cells[rowIndex, 24].Value = $"{doc.ID2EndDate:yyyy/MM/dd hh:mm:ss}"; |
... | ... | |
2254 | 2236 |
|
2255 | 2237 |
List<string> docLinkColNames = new List<string>() { "AutoCADLink", "PDFLink", "MarkupLink", "AVEVALink" }; |
2256 | 2238 |
List<string> docInfoColNames = new List<string>() { "RefProjectCode", "System", "SubSystemCode", "DocumentNo", "PersonInCharge", "Worker", "JobLevel", "IsTypical", "RevisonNo" }; |
2257 |
List<string> rvToColNames = new List<string>() { "ToIsDiscussion", "ToRemarks", "ToCreator", "ToCapture", "ToIsMarkup" }; |
|
2258 |
List<string> rvFrColNames = new List<string>() { "FrReviewStatus", "FrRemarks", "FrCreator", "FrCapture", "FrIsMarkup" }; |
|
2259 |
List<string> rvEtcColNames = new List<string>() { "IsID2Work" }; |
|
2239 |
List<string> rvToColNames = new List<string>() { "ToIsDiscussion", "ToRemarks", "ToCreator", "ToCapture" }; |
|
2240 |
List<string> rvFrColNames = new List<string>() { "FrReviewStatus", "FrRemarks", "FrCreator", "FrCapture" }; |
|
2260 | 2241 |
List<string> wkID2ColNames = new List<string>() { "ID2Connection", "ID2StartDate", "ID2EndDate", "ID2Status", "ID2Issues" }; |
2261 | 2242 |
List<string> wkAVEVAColNames = new List<string>() { "AVEVAConnection", "AVEVAConvertDate", "AVEVAReviewDate", "AVEVAStatus", "AVEVAIssues" }; |
2262 | 2243 |
List<string> valLinkColNames = new List<string>() { "ReviewFileName", "SystemLink" }; |
... | ... | |
2284 | 2265 |
GridViewColumnGroup rvColGrp = new GridViewColumnGroup("검토", "review"); |
2285 | 2266 |
GridViewColumnGroup rvToColGrp = new GridViewColumnGroup("도프텍"); |
2286 | 2267 |
GridViewColumnGroup rvFrColGrp = new GridViewColumnGroup("삼성"); |
2287 |
GridViewColumnGroup rvEtcColGrp = new GridViewColumnGroup("기타"); |
|
2288 | 2268 |
|
2289 | 2269 |
GridViewColumnGroupRow rvToColGrpRow = new GridViewColumnGroupRow(); |
2290 | 2270 |
rvToColGrpRow.ColumnNames.AddRange(rvToColNames); |
... | ... | |
2292 | 2272 |
GridViewColumnGroupRow rvFrColGrpRow = new GridViewColumnGroupRow(); |
2293 | 2273 |
rvFrColGrpRow.ColumnNames.AddRange(rvFrColNames); |
2294 | 2274 |
|
2295 |
GridViewColumnGroupRow rvEtcColGrpRow = new GridViewColumnGroupRow(); |
|
2296 |
rvEtcColGrpRow.ColumnNames.AddRange(rvEtcColNames); |
|
2297 |
|
|
2298 | 2275 |
rvToColGrp.Rows.Add(rvToColGrpRow); |
2299 | 2276 |
rvFrColGrp.Rows.Add(rvFrColGrpRow); |
2300 |
rvEtcColGrp.Rows.Add(rvEtcColGrpRow); |
|
2301 |
|
|
2302 | 2277 |
|
2303 | 2278 |
rvColGrp.Groups.Add(rvToColGrp); |
2304 | 2279 |
rvColGrp.Groups.Add(rvFrColGrp); |
2305 |
rvColGrp.Groups.Add(rvEtcColGrp); |
|
2306 |
|
|
2307 | 2280 |
|
2308 | 2281 |
//작업 |
2309 | 2282 |
GridViewColumnGroup wkColGrp = new GridViewColumnGroup("작업", "work"); |
내보내기 Unified diff