cloud-web-corejs 1.0.54-dev.417 → 1.0.54-dev.418

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -167,6 +167,10 @@ function getFieldKeyName(widget) {
167
167
  let o = widget.options.name;
168
168
  return (widget.options.keyNameEnabled && widget.options.keyName) || o;
169
169
  }
170
+
171
+ function funOtherHanlde(){
172
+
173
+ }
170
174
  /**
171
175
  * 替换计算公式中的字段值
172
176
  * @param VFR
@@ -188,6 +192,10 @@ export function baseReplaceFieldsAndFunctionsOfFormula(VFR, formulaFieldRef, for
188
192
  if (nodeType === 'func') {
189
193
  const funcName = mi.split('.')[1]
190
194
  resultFormula = resultFormula.replace(mi, funcName)
195
+
196
+ /* if(funcName === "SUMIF" || funcName === "SUMIFS"){
197
+ debugger
198
+ } */
191
199
  return
192
200
  }
193
201