@xuda.io/runtime-bundle 1.0.366 → 1.0.368
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.
- package/js/xuda-runtime-bundle.js +8 -3
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +8 -3
- package/js/xuda-runtime-slim.min.es.js +8 -3
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +8 -3
- package/js/xuda-worker-bundle.js +8 -3
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -35157,7 +35157,6 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
35157
35157
|
var split = [];
|
|
35158
35158
|
var var_Arr = [];
|
|
35159
35159
|
split = func.expression.parse(ret);
|
|
35160
|
-
|
|
35161
35160
|
for await (const [arr_key, val] of Object.entries(split)) {
|
|
35162
35161
|
// run each field
|
|
35163
35162
|
const key = Number(arr_key);
|
|
@@ -35248,8 +35247,14 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
35248
35247
|
} // put default
|
|
35249
35248
|
fields[val.fieldId] = var_Arr[key].value;
|
|
35250
35249
|
|
|
35251
|
-
const ret = await func.datasource.get_value(
|
|
35252
|
-
|
|
35250
|
+
const ret = await func.datasource.get_value(
|
|
35251
|
+
SESSION_ID,
|
|
35252
|
+
val.fieldId,
|
|
35253
|
+
dsSessionP,
|
|
35254
|
+
|
|
35255
|
+
rowIdP,
|
|
35256
|
+
); // find field in dataSources
|
|
35257
|
+
|
|
35253
35258
|
await replace_value_in_string(ret.ret, ret.fieldIdP);
|
|
35254
35259
|
}
|
|
35255
35260
|
}
|