@xuda.io/runtime-bundle 1.0.710 → 1.0.711
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 +3 -3
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +3 -3
- package/js/xuda-runtime-slim.min.es.js +3 -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 +3 -3
- package/js/xuda-worker-bundle.js +3 -3
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -3276,9 +3276,9 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
3276
3276
|
|
|
3277
3277
|
for (const [_dsSession, _ds] of Object.entries(_session.DS_GLB)) {
|
|
3278
3278
|
if (_ds.args.parameters_raw_obj) {
|
|
3279
|
-
for (const [key,
|
|
3280
|
-
if (
|
|
3281
|
-
let ret = await func.expression.get(SESSION_ID,
|
|
3279
|
+
for (const [key, exp] of Object.entries(_ds.args.parameters_raw_obj)) {
|
|
3280
|
+
if (exp.includes(field_id)) {
|
|
3281
|
+
let ret = await func.expression.get(SESSION_ID, exp, _dsSession, 'parameters');
|
|
3282
3282
|
_ds.in_parameters[key].value = ret.result;
|
|
3283
3283
|
}
|
|
3284
3284
|
}
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -3276,9 +3276,9 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
3276
3276
|
|
|
3277
3277
|
for (const [_dsSession, _ds] of Object.entries(_session.DS_GLB)) {
|
|
3278
3278
|
if (_ds.args.parameters_raw_obj) {
|
|
3279
|
-
for (const [key,
|
|
3280
|
-
if (
|
|
3281
|
-
let ret = await func.expression.get(SESSION_ID,
|
|
3279
|
+
for (const [key, exp] of Object.entries(_ds.args.parameters_raw_obj)) {
|
|
3280
|
+
if (exp.includes(field_id)) {
|
|
3281
|
+
let ret = await func.expression.get(SESSION_ID, exp, _dsSession, 'parameters');
|
|
3282
3282
|
_ds.in_parameters[key].value = ret.result;
|
|
3283
3283
|
}
|
|
3284
3284
|
}
|