Browse Source

bug fixed

zhangweicheng 7 years ago
parent
commit
57e20b7840
1 changed files with 2 additions and 2 deletions
  1. 2 2
      public/web/gljUtil.js

+ 2 - 2
public/web/gljUtil.js

@@ -98,7 +98,7 @@ let gljUtil = {
             }else {
                 parentMap[b.ParentID]= [b];
             }
-            let flag = this.getFalg(b);
+            let flag = this.getFlag(b);
             if(this.isDef(flag)&&flag.flag == this.fixedFlag.SUB_ENGINERRING){
                 subdivisionBillID = b.ID;
             }
@@ -124,7 +124,7 @@ let gljUtil = {
             }
         }
     },
-    getFalg:function (b) {
+    getFlag:function (b) {
         return _.find(b.flags,{"fieldName":"fixed"});
 
     },