cloud-web-corejs 1.0.54-dev.417 → 1.0.54-dev.419
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.
|
@@ -932,6 +932,7 @@ modules = {
|
|
|
932
932
|
transform: true,
|
|
933
933
|
expandAll: true,
|
|
934
934
|
loadMethod({ $table, row }) {
|
|
935
|
+
|
|
935
936
|
// 模拟后台接口
|
|
936
937
|
let $grid = that.getGridTable();
|
|
937
938
|
let parentField = $grid.treeConfig.parentField;
|
|
@@ -944,7 +945,7 @@ modules = {
|
|
|
944
945
|
Object.assign(reqPram, {
|
|
945
946
|
[parentField]: row.id,
|
|
946
947
|
});
|
|
947
|
-
let accessParam =
|
|
948
|
+
let accessParam = that.getAccessParam() || {};
|
|
948
949
|
let defaultOption = that.getHttpConfigForUser();
|
|
949
950
|
that.formHttp({
|
|
950
951
|
scriptCode: scriptCode,
|
|
@@ -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
|
|