소스 검색

task 3340

TonyKang 4 년 전
부모
커밋
a8dd6f7048
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  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;
             }
         }
     }