|
@@ -1286,7 +1286,8 @@ const createNewPathTree = function (type, setting) {
|
|
|
}
|
|
|
this.sortByLevelConverse(reCalcNodes);
|
|
|
for (const node of reCalcNodes) {
|
|
|
- treeCalc.calculateNode(this, node, this.setting.calcFields, this.setting.calcFun);
|
|
|
+ // treeCalc.calculateNode(this, node, this.setting.calcFields, this.setting.calcFun);
|
|
|
+ treeCalc.calculateNode(this, node);
|
|
|
}
|
|
|
result.update = result.update ? result.update.concat(reCalcNodes) : reCalcNodes;
|
|
|
return result;
|
|
@@ -1404,7 +1405,8 @@ const createNewPathTree = function (type, setting) {
|
|
|
}
|
|
|
this.sortByLevelConverse(reCalcNodes);
|
|
|
for (const node of reCalcNodes) {
|
|
|
- treeCalc.calculateNode(this, node, this.setting.calcFields, this.setting.calcFun);
|
|
|
+ // treeCalc.calculateNode(this, node, this.setting.calcFields, this.setting.calcFun);
|
|
|
+ treeCalc.calculateNode(this, node);
|
|
|
}
|
|
|
result.update = result.update ? result.update.concat(reCalcNodes) : reCalcNodes;
|
|
|
return result;
|