@xuda.io/runtime-bundle 1.0.883 → 1.0.885
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 +4 -4
- package/js/xuda-runtime-bundle.min.js +2 -2
- package/js/xuda-runtime-slim.js +4 -4
- package/js/xuda-runtime-slim.min.es.js +4 -4
- package/js/xuda-runtime-slim.min.js +2 -2
- package/js/xuda-server-bundle.min.mjs +2 -2
- package/js/xuda-server-bundle.mjs +4 -4
- package/js/xuda-worker-bundle.js +4 -4
- package/js/xuda-worker-bundle.min.js +2 -2
- package/package.json +1 -1
|
@@ -1508,7 +1508,7 @@ func.datasource.prepare = async function (SESSION_ID, prog_id, dataSourceNoP, pa
|
|
|
1508
1508
|
prog_id: prog_id,
|
|
1509
1509
|
dsSession: dataSourceSession,
|
|
1510
1510
|
fieldId: fieldIdP,
|
|
1511
|
-
parentDataSourceNoP,
|
|
1511
|
+
parentDataSourceNo: parentDataSourceNoP,
|
|
1512
1512
|
};
|
|
1513
1513
|
return ret;
|
|
1514
1514
|
};
|
|
@@ -7117,9 +7117,9 @@ func.events.execute = async function (
|
|
|
7117
7117
|
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
7118
7118
|
|
|
7119
7119
|
if (_ds.PARAM_OUT_INFO) {
|
|
7120
|
-
|
|
7121
|
-
|
|
7122
|
-
|
|
7120
|
+
for await (const [key, val] of Object.entries(_ds.PARAM_OUT_INFO)) {
|
|
7121
|
+
await func.datasource.update_changes_for_out_parameter(SESSION_ID, _ds.dsSession, val.parentDataSourceNo);
|
|
7122
|
+
}
|
|
7123
7123
|
}
|
|
7124
7124
|
|
|
7125
7125
|
if (jobNoP) func.events.delete_job(SESSION_ID, jobNoP);
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -1508,7 +1508,7 @@ func.datasource.prepare = async function (SESSION_ID, prog_id, dataSourceNoP, pa
|
|
|
1508
1508
|
prog_id: prog_id,
|
|
1509
1509
|
dsSession: dataSourceSession,
|
|
1510
1510
|
fieldId: fieldIdP,
|
|
1511
|
-
parentDataSourceNoP,
|
|
1511
|
+
parentDataSourceNo: parentDataSourceNoP,
|
|
1512
1512
|
};
|
|
1513
1513
|
return ret;
|
|
1514
1514
|
};
|
|
@@ -7117,9 +7117,9 @@ func.events.execute = async function (
|
|
|
7117
7117
|
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
7118
7118
|
|
|
7119
7119
|
if (_ds.PARAM_OUT_INFO) {
|
|
7120
|
-
|
|
7121
|
-
|
|
7122
|
-
|
|
7120
|
+
for await (const [key, val] of Object.entries(_ds.PARAM_OUT_INFO)) {
|
|
7121
|
+
await func.datasource.update_changes_for_out_parameter(SESSION_ID, _ds.dsSession, val.parentDataSourceNo);
|
|
7122
|
+
}
|
|
7123
7123
|
}
|
|
7124
7124
|
|
|
7125
7125
|
if (jobNoP) func.events.delete_job(SESSION_ID, jobNoP);
|