Browse Source

fixed : 0018609: 【黑台镇excel数据导入】导入血常规表格,缺少表格中的3项值:嗜酸性粒细胞百分比、红细胞计数、红细胞平均血红蛋白浓度

loki.wu 11 months ago
parent
commit
8f6a9ff206
1 changed files with 5 additions and 3 deletions
  1. 5 3
      lib/managers/excel_data_manager.dart

+ 5 - 3
lib/managers/excel_data_manager.dart

@@ -22,10 +22,12 @@ class ExcelDataManager implements IExcelDataManager {
     "AMC",
     "ANC",
     "AEC",
-    "Blood_Neutrophils",
+    "Blood_NeutrophilRatio",
     "Blood_LymphocyteRatio",
     "Blood_MonocyteRatio",
-    "EOS%",
+    "EOS",
+    "RBC",
+    "Blood_Mchc",
     "Urea",
     "Blood_Hematocrit",
     "Blood_McV",
@@ -139,7 +141,7 @@ class ExcelDataManager implements IExcelDataManager {
               String identifier = item["identifier"];
               String referenceRange = item["referenceRange"];
               String value = "";
-              if (key == "samplingTime") {
+              if (key == "Blood_Wbc") {
                 print("sampleBarcode");
               }
               if (rowData.length >= column + 1) {