개정판 ee0dfabe
issue #0000
유사도 컬럼 추가로 인한 excel 컬럼 유효성 체크 수정
Change-Id: I4ba6e0ed9bb83cab01adb9282d6bf44a13a2354e
ID2.Manager/ID2.Manager.Common/Helpers/ID2Excel.cs | ||
---|---|---|
115 | 115 |
#region Excel 유효성검사 |
116 | 116 |
|
117 | 117 |
//Excel 포멧체크 |
118 |
if (rowCount < 10 || columnCount != 49)
|
|
118 |
if (rowCount < 10 || columnCount != 51)
|
|
119 | 119 |
{ |
120 |
result.Error = "Please, check the excel.";
|
|
120 |
result.Error = $"Please, check the excel.\n(rows:{rowCount}. cols:{columnCount})";
|
|
121 | 121 |
return result; |
122 | 122 |
} |
123 | 123 |
|
... | ... | |
428 | 428 |
#region Excel 유효성검사 |
429 | 429 |
|
430 | 430 |
//Excel 포멧체크 |
431 |
if (rowCount < 10 || columnCount != 49)
|
|
431 |
if (rowCount < 10 || columnCount != 51)
|
|
432 | 432 |
{ |
433 |
result.Error = "Please, check the excel.";
|
|
433 |
result.Error = $"Please, check the excel.\n(rows:{rowCount}. cols:{columnCount})";
|
|
434 | 434 |
return result; |
435 | 435 |
} |
436 | 436 |
|
내보내기 Unified diff