Commit fdb0d538 by lcx

数据提取,获取科室名称时使用去除转义

parent c01b3c46
......@@ -155,7 +155,7 @@ public static void WriteSheetData(ISheet sheet, PerSheetPoint point, SheetType s
if (rowIndex > dataFirstRowNum) dataFirstRowNum = rowIndex + 1;
var deptData = data.Where(t => t.Department == department);
var deptData = data.Where(t => t.Department.NoBlank() == department);
if (deptData == null || !deptData.Any(t => t.Value.HasValue && t.Value != 0)) continue;
#region 写入数据
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment