@xuda.io/runtime-bundle 1.0.291 → 1.0.293
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 +13 -13
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +13 -13
- package/js/xuda-runtime-slim.min.es.js +13 -13
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +13 -13
- package/js/xuda-worker-bundle.js +13 -13
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -3616,23 +3616,23 @@ func.datasource.callback = async function (SESSION_ID, dsSessionP, na, rowIdP, j
|
|
|
3616
3616
|
val.result = _ds.data_feed.rows[row_idx][val.fieldId];
|
|
3617
3617
|
}
|
|
3618
3618
|
}
|
|
3619
|
+
} catch (err) {
|
|
3620
|
+
// console.error(err);
|
|
3621
|
+
}
|
|
3619
3622
|
|
|
3620
|
-
|
|
3621
|
-
|
|
3623
|
+
if (_ds?.progDataSource?.datasetOutputField) {
|
|
3624
|
+
let datasource_changes = {};
|
|
3622
3625
|
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3626
|
+
let _ds = _session.DS_GLB[ret_get_value.dsSessionP];
|
|
3627
|
+
if (!datasource_changes[_ds.dsSession]) {
|
|
3628
|
+
datasource_changes[_ds.dsSession] = {};
|
|
3629
|
+
}
|
|
3630
|
+
if (!datasource_changes[_ds.dsSession][_ds.currentRecordId]) {
|
|
3631
|
+
datasource_changes[_ds.dsSession][_ds.currentRecordId] = {};
|
|
3629
3632
|
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
}
|
|
3633
|
+
datasource_changes[_ds.dsSession][ret_get_value.currentRecordId][_ds?.progDataSource?.datasetOutputField] = _ds?.data_feed?.rows || [];
|
|
3634
|
+
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
3633
3635
|
}
|
|
3634
|
-
} catch (err) {
|
|
3635
|
-
// console.error(err);
|
|
3636
3636
|
}
|
|
3637
3637
|
|
|
3638
3638
|
func.utils.debug.log(SESSION_ID, nodeIdP, {
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -3616,23 +3616,23 @@ func.datasource.callback = async function (SESSION_ID, dsSessionP, na, rowIdP, j
|
|
|
3616
3616
|
val.result = _ds.data_feed.rows[row_idx][val.fieldId];
|
|
3617
3617
|
}
|
|
3618
3618
|
}
|
|
3619
|
+
} catch (err) {
|
|
3620
|
+
// console.error(err);
|
|
3621
|
+
}
|
|
3619
3622
|
|
|
3620
|
-
|
|
3621
|
-
|
|
3623
|
+
if (_ds?.progDataSource?.datasetOutputField) {
|
|
3624
|
+
let datasource_changes = {};
|
|
3622
3625
|
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3626
|
+
let _ds = _session.DS_GLB[ret_get_value.dsSessionP];
|
|
3627
|
+
if (!datasource_changes[_ds.dsSession]) {
|
|
3628
|
+
datasource_changes[_ds.dsSession] = {};
|
|
3629
|
+
}
|
|
3630
|
+
if (!datasource_changes[_ds.dsSession][_ds.currentRecordId]) {
|
|
3631
|
+
datasource_changes[_ds.dsSession][_ds.currentRecordId] = {};
|
|
3629
3632
|
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
}
|
|
3633
|
+
datasource_changes[_ds.dsSession][ret_get_value.currentRecordId][_ds?.progDataSource?.datasetOutputField] = _ds?.data_feed?.rows || [];
|
|
3634
|
+
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
3633
3635
|
}
|
|
3634
|
-
} catch (err) {
|
|
3635
|
-
// console.error(err);
|
|
3636
3636
|
}
|
|
3637
3637
|
|
|
3638
3638
|
func.utils.debug.log(SESSION_ID, nodeIdP, {
|