개정판 d0f44dbd
issue #0000
document 정보 날짜포멧 수정
Change-Id: I211b0b38a68c471af614f7ad1561703fd63e6e93
ID2.Manager/ID2.Manager.Dapper/Repository/DocumentRepository.cs | ||
---|---|---|
127 | 127 |
,[ToIsDiscussion] |
128 | 128 |
,[ToRemarks] |
129 | 129 |
,[ToCreator] |
130 |
,[ToModifier] |
|
131 | 130 |
,[ToCapturePath] |
132 | 131 |
,[ToIsMarkup] |
133 | 132 |
,[FrReviewStatus] |
134 | 133 |
,[FrRemarks] |
135 | 134 |
,[FrCreator] |
136 |
,[FrModifier] |
|
137 | 135 |
,[FrCapturePath] |
138 | 136 |
,[FrIsMarkup] |
139 | 137 |
,[IsID2Work] |
... | ... | |
176 | 174 |
,@ToIsDiscussion |
177 | 175 |
,@ToRemarks |
178 | 176 |
,@ToCreator |
179 |
,@ToModifier |
|
180 | 177 |
,@ToCapturePath |
181 | 178 |
,@ToIsMarkup |
182 | 179 |
,@FrReviewStatus |
183 | 180 |
,@FrRemarks |
184 | 181 |
,@FrCreator |
185 |
,@FrModifier |
|
186 | 182 |
,@FrCapturePath |
187 | 183 |
,@FrIsMarkup |
188 | 184 |
,@IsID2Work |
... | ... | |
228 | 224 |
,[ToIsDiscussion]=@ToIsDiscussion |
229 | 225 |
,[ToRemarks]=@ToRemarks |
230 | 226 |
,[ToCreator]=@ToCreator |
231 |
,[ToModifier]=@ToModifier |
|
232 | 227 |
,[ToCapturePath]=@ToCapturePath |
233 | 228 |
,[ToIsMarkup]=@ToIsMarkup |
234 | 229 |
,[FrReviewStatus]=@FrReviewStatus |
235 | 230 |
,[FrRemarks]=@FrRemarks |
236 | 231 |
,[FrCreator]=@FrCreator |
237 |
,[FrModifier]=@FrModifier |
|
238 | 232 |
,[FrCapturePath]=@FrCapturePath |
239 | 233 |
,[FrIsMarkup]=@FrIsMarkup |
240 | 234 |
,[IsID2Work]=@IsID2Work |
ID2.Manager/ID2.Manager/Main.Designer.cs | ||
---|---|---|
853 | 853 |
gridViewDateTimeColumn1.HeaderText = "시작일"; |
854 | 854 |
gridViewDateTimeColumn1.Name = "ID2StartDate"; |
855 | 855 |
gridViewDateTimeColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
856 |
gridViewDateTimeColumn1.Width = 80;
|
|
856 |
gridViewDateTimeColumn1.Width = 120;
|
|
857 | 857 |
gridViewDateTimeColumn2.FieldName = "ID2EndDate"; |
858 | 858 |
gridViewDateTimeColumn2.Format = System.Windows.Forms.DateTimePickerFormat.Custom; |
859 | 859 |
gridViewDateTimeColumn2.FormatString = "{0: yyyy/MM/dd hh:mm:ss}"; |
860 | 860 |
gridViewDateTimeColumn2.HeaderText = "완료일"; |
861 | 861 |
gridViewDateTimeColumn2.Name = "ID2EndDate"; |
862 | 862 |
gridViewDateTimeColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
863 |
gridViewDateTimeColumn2.Width = 80;
|
|
863 |
gridViewDateTimeColumn2.Width = 120;
|
|
864 | 864 |
gridViewTextBoxColumn5.FieldName = "ID2JobTime"; |
865 | 865 |
gridViewTextBoxColumn5.HeaderText = "작업시간"; |
866 | 866 |
gridViewTextBoxColumn5.Name = "ID2JobTime"; |
ID2.Manager/ID2.Manager/Main.cs | ||
---|---|---|
905 | 905 |
//FrIsMarkup = ws.Rows[p.Index].Cells[5].Value == null ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(), |
906 | 906 |
IsID2Work = ws.Rows[p.Index].Cells[21].Value == null ? string.Empty : ws.Rows[p.Index].Cells[21].Value.ToString(), |
907 | 907 |
//ID2Connection = ws.Rows[p.Index].Cells[5].Value == null ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(), |
908 |
//ID2StartDate = ws.Rows[p.Index].Cells[5].Value == null ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(),
|
|
909 |
//ID2EndDate = ws.Rows[p.Index].Cells[5].Value == null ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(),
|
|
908 |
ID2StartDate = ws.Rows[p.Index].Cells[23].Value == null ? (DateTime?)null : Convert.ToDateTime(ws.Rows[p.Index].Cells[23].Value?.ToString()),
|
|
909 |
ID2EndDate = ws.Rows[p.Index].Cells[24].Value == null ? (DateTime?)null : Convert.ToDateTime(ws.Rows[p.Index].Cells[24].Value?.ToString()),
|
|
910 | 910 |
//ID2JobTime = ws.Rows[p.Index].Cells[5].Value == null ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(), |
911 | 911 |
ID2Status = ws.Rows[p.Index].Cells[26].Value == null ? string.Empty : ws.Rows[p.Index].Cells[26].Value.ToString(), |
912 | 912 |
ID2Issues = ws.Rows[p.Index].Cells[27].Value == null ? string.Empty : ws.Rows[p.Index].Cells[27].Value.ToString(), |
913 | 913 |
//AVEVAConnection = ws.Rows[p.Index].Cells[5].Value == null ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(), |
914 |
//AVEVAConvertDate = ws.Rows[p.Index].Cells[5].Value == null ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(),
|
|
915 |
//AVEVAReviewDate = ws.Rows[p.Index].Cells[5].Value == null ? string.Empty : ws.Rows[p.Index].Cells[5].Value.ToString(),
|
|
914 |
AVEVAConvertDate = ws.Rows[p.Index].Cells[29].Value == null ? (DateTime?)null : Convert.ToDateTime(ws.Rows[p.Index].Cells[29].Value.ToString()),
|
|
915 |
AVEVAReviewDate = ws.Rows[p.Index].Cells[30].Value == null ? (DateTime?)null : Convert.ToDateTime(ws.Rows[p.Index].Cells[30].Value.ToString()),
|
|
916 | 916 |
AVEVAStatus = ws.Rows[p.Index].Cells[31].Value == null ? string.Empty : ws.Rows[p.Index].Cells[31].Value.ToString(), |
917 | 917 |
AVEVAIssues = ws.Rows[p.Index].Cells[32].Value == null ? string.Empty : ws.Rows[p.Index].Cells[32].Value.ToString(), |
918 | 918 |
ProdReviewer = ws.Rows[p.Index].Cells[35].Value == null ? string.Empty : this.GetUser(ws.Rows[p.Index].Cells[35].Value.ToString()).ID, |
내보내기 Unified diff