TonyKang 4 vuotta sitten
vanhempi
commit
a8dd6f7048
1 muutettua tiedostoa jossa 3 lisäystä ja 1 poistoa
  1. 3 1
      app/reports/util/rpt_calculation_data_util.js

+ 3 - 1
app/reports/util/rpt_calculation_data_util.js

@@ -949,7 +949,9 @@ function ext_getSplitProperty(dataKey, propKey, splitChar, index, dftValue) {
                     rst[idx] = splitArr[0]; // 把业务带进来了 !_!
                 }
             } else {
-                rst[idx] = dftValue;
+                if (index === 1) {
+                    rst[idx] = splitArr[0]; // 把业务带进来了 !_!
+                } else rst[idx] = dftValue;
             }
         }
     }