@xuda.io/runtime-bundle 1.0.289 → 1.0.290
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 +12 -12
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +12 -12
- package/js/xuda-runtime-slim.min.es.js +12 -12
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +12 -12
- package/js/xuda-worker-bundle.js +12 -12
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -3907,20 +3907,20 @@ func.datasource.callback = async function (SESSION_ID, dsSessionP, na, rowIdP, j
|
|
|
3907
3907
|
}
|
|
3908
3908
|
}
|
|
3909
3909
|
|
|
3910
|
-
|
|
3911
|
-
|
|
3910
|
+
if (_ds?.progDataSource?.datasetOutputField) {
|
|
3911
|
+
let datasource_changes = {};
|
|
3912
3912
|
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3913
|
+
let _ds = _session.DS_GLB[ret_get_value.dsSessionP];
|
|
3914
|
+
if (!datasource_changes[_ds.dsSession]) {
|
|
3915
|
+
datasource_changes[_ds.dsSession] = {};
|
|
3916
|
+
}
|
|
3917
|
+
if (!datasource_changes[_ds.dsSession][_ds.currentRecordId]) {
|
|
3918
|
+
datasource_changes[_ds.dsSession][_ds.currentRecordId] = {};
|
|
3919
3919
|
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3920
|
+
datasource_changes[_ds.dsSession][ret_get_value.currentRecordId][_ds?.progDataSource?.datasetOutputField] = _ds?.data_feed?.rows || [];
|
|
3921
|
+
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
3922
|
+
}
|
|
3923
|
+
}
|
|
3924
3924
|
} catch (err) {
|
|
3925
3925
|
// console.error(err);
|
|
3926
3926
|
}
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -3907,20 +3907,20 @@ func.datasource.callback = async function (SESSION_ID, dsSessionP, na, rowIdP, j
|
|
|
3907
3907
|
}
|
|
3908
3908
|
}
|
|
3909
3909
|
|
|
3910
|
-
|
|
3911
|
-
|
|
3910
|
+
if (_ds?.progDataSource?.datasetOutputField) {
|
|
3911
|
+
let datasource_changes = {};
|
|
3912
3912
|
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3913
|
+
let _ds = _session.DS_GLB[ret_get_value.dsSessionP];
|
|
3914
|
+
if (!datasource_changes[_ds.dsSession]) {
|
|
3915
|
+
datasource_changes[_ds.dsSession] = {};
|
|
3916
|
+
}
|
|
3917
|
+
if (!datasource_changes[_ds.dsSession][_ds.currentRecordId]) {
|
|
3918
|
+
datasource_changes[_ds.dsSession][_ds.currentRecordId] = {};
|
|
3919
3919
|
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3920
|
+
datasource_changes[_ds.dsSession][ret_get_value.currentRecordId][_ds?.progDataSource?.datasetOutputField] = _ds?.data_feed?.rows || [];
|
|
3921
|
+
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
3922
|
+
}
|
|
3923
|
+
}
|
|
3924
3924
|
} catch (err) {
|
|
3925
3925
|
// console.error(err);
|
|
3926
3926
|
}
|