修改试车内容

This commit is contained in:
2023-07-28 11:14:32 +08:00
parent 54b40b1791
commit 976625dc9b
23 changed files with 2263 additions and 231 deletions
+4
View File
@@ -205,6 +205,8 @@ namespace BLL
for (int i = startIndex; i <= lastIndex; i++)
{
IRow row = sheet.GetRow(i);
//移除空行
if (row.Cells.Count(p => !string.IsNullOrWhiteSpace(p.ToString())) == 0) continue;
DataRow drNew = dt.NewRow();
if (row != null)
{
@@ -298,6 +300,8 @@ namespace BLL
{
IRow row = sheet.GetRow(i);
DataRow dataRow = dt.NewRow();
//移除空行
if (row.Cells.Count(p => !string.IsNullOrWhiteSpace(p.ToString())) == 0) continue;
for (int j = row.FirstCellNum; j < cellCount; j++)
{