@xuda.io/runtime-bundle 1.0.881 → 1.0.883
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 +11 -6
- package/js/xuda-runtime-bundle.min.js +2 -2
- package/js/xuda-runtime-slim.js +11 -6
- package/js/xuda-runtime-slim.min.es.js +11 -6
- 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 -3
- package/js/xuda-worker-bundle.js +4 -3
- package/js/xuda-worker-bundle.min.js +2 -2
- package/package.json +1 -1
|
@@ -1508,6 +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
1512
|
};
|
|
1512
1513
|
return ret;
|
|
1513
1514
|
};
|
|
@@ -7116,9 +7117,9 @@ func.events.execute = async function (
|
|
|
7116
7117
|
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
7117
7118
|
|
|
7118
7119
|
if (_ds.PARAM_OUT_INFO) {
|
|
7119
|
-
for await (const [dsSession_to_update, val] of Object.entries(datasource_changes)) {
|
|
7120
|
-
|
|
7121
|
-
}
|
|
7120
|
+
// for await (const [dsSession_to_update, val] of Object.entries(datasource_changes)) {
|
|
7121
|
+
await func.datasource.update_changes_for_out_parameter(SESSION_ID, _ds.dsSession, _ds.PARAM_OUT_INFO.parentDataSourceNo);
|
|
7122
|
+
// }
|
|
7122
7123
|
}
|
|
7123
7124
|
|
|
7124
7125
|
if (jobNoP) func.events.delete_job(SESSION_ID, jobNoP);
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -1508,6 +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
1512
|
};
|
|
1512
1513
|
return ret;
|
|
1513
1514
|
};
|
|
@@ -7116,9 +7117,9 @@ func.events.execute = async function (
|
|
|
7116
7117
|
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
7117
7118
|
|
|
7118
7119
|
if (_ds.PARAM_OUT_INFO) {
|
|
7119
|
-
for await (const [dsSession_to_update, val] of Object.entries(datasource_changes)) {
|
|
7120
|
-
|
|
7121
|
-
}
|
|
7120
|
+
// for await (const [dsSession_to_update, val] of Object.entries(datasource_changes)) {
|
|
7121
|
+
await func.datasource.update_changes_for_out_parameter(SESSION_ID, _ds.dsSession, _ds.PARAM_OUT_INFO.parentDataSourceNo);
|
|
7122
|
+
// }
|
|
7122
7123
|
}
|
|
7123
7124
|
|
|
7124
7125
|
if (jobNoP) func.events.delete_job(SESSION_ID, jobNoP);
|