[성현모] 버그수정
This commit is contained in:
@ -99,6 +99,9 @@
|
||||
if (args.Column.Property == null)
|
||||
return;
|
||||
|
||||
if ((args.Column.Property.ToLower().Equals("testdate") || args.Column.Property.ToLower().Equals("host")) == false)
|
||||
return;
|
||||
|
||||
int index = DataList.ToList().FindIndex(x => x.Equals(args.Data));
|
||||
|
||||
//testdate 컬럼일때 날짜 병합
|
||||
|
||||
@ -199,13 +199,13 @@
|
||||
|
||||
private void OnSelectRowOverview(IDataModel overview)
|
||||
{
|
||||
// SelectionStationName = $"{overview.StationName} ({overview.Host},{overview.Section})";
|
||||
// SelectionProductNO = $"{overview.ProductNo} ({overview.TestCode})";
|
||||
// SelectionParentInfo = $"{overview.ParentNo} ({overview.FileVersion},{overview.FileCode})";
|
||||
SelectionStationName = $"{overview.StationName} ({overview.Host},{overview.Section})";
|
||||
SelectionProductNO = $"{overview.ProductNo} ({overview.TestCode})";
|
||||
SelectionParentInfo = $"{overview.ParentNo} ({overview.FileVersion},{overview.FileCode})";
|
||||
|
||||
// SelectionSearchBegin = $"{overview.TestDate?.ToString("yyyy-MM-dd")} {overview.FirstTestTime}";
|
||||
// SelectionSearchEnd = $"{overview.TestDate?.ToString("yyyy-MM-dd")} {overview.FinalTestTime}";
|
||||
// SelectionStepVersion = $"{overview.StepVersion}";
|
||||
SelectionSearchBegin = $"{overview.TestDate?.ToString("yyyy-MM-dd")} {overview.FirstTestTime}";
|
||||
SelectionSearchEnd = $"{overview.TestDate?.ToString("yyyy-MM-dd")} {overview.FinalTestTime}";
|
||||
SelectionStepVersion = $"{overview.StepVersion}";
|
||||
}
|
||||
|
||||
private void OnClickDetailOverviewContextMenu()
|
||||
|
||||
@ -3,7 +3,17 @@
|
||||
public interface IDataModel
|
||||
{
|
||||
public DateTime? TestDate { get; set; }
|
||||
public string ModelName { get; set; }
|
||||
public string StationName { get; set; }
|
||||
public string Host { get; set; }
|
||||
public string Section { get; set; }
|
||||
public string ModelName { get; set; }
|
||||
public string ProductNo { get; set; }
|
||||
public string TestCode { get; set; }
|
||||
public string ParentNo { get; set; }
|
||||
public string FileCode { get; set; }
|
||||
public string FileVersion { get; set; }
|
||||
public int? StepVersion { get; set; }
|
||||
public string FirstTestTime { get; set; }
|
||||
public string FinalTestTime { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@ -21,5 +21,8 @@
|
||||
public string Duration { get; set; }
|
||||
public string TestResult { get; set; }
|
||||
public string TestlistReqID { get; set; }
|
||||
|
||||
public string FirstTestTime { get; set; }
|
||||
public string FinalTestTime { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user