@xuda.io/xuda-worker-bundle-min 1.3.852 → 1.3.854
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/index.js +5 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2810,9 +2810,11 @@ func.datasource.execute = async function (
|
|
|
2810
2810
|
_ds.currentRecordId = _ds.finalRecordId;
|
|
2811
2811
|
};
|
|
2812
2812
|
|
|
2813
|
-
for await (const [key,
|
|
2813
|
+
for await (const [key, raw_data_row] of Object.entries(
|
|
2814
|
+
_ds.v.raw_data.rows
|
|
2815
|
+
)) {
|
|
2814
2816
|
const idx = Number(key);
|
|
2815
|
-
|
|
2817
|
+
|
|
2816
2818
|
if (await get_before_record_count()) {
|
|
2817
2819
|
await func.datasource.execute_view_events(
|
|
2818
2820
|
SESSION_ID,
|
|
@@ -3188,7 +3190,7 @@ func.datasource.run_rows_form = async function (
|
|
|
3188
3190
|
// var v = _ds.v;
|
|
3189
3191
|
|
|
3190
3192
|
var val = _ds.data_feed.rows[rowIdxP];
|
|
3191
|
-
let _ROWID = val
|
|
3193
|
+
let _ROWID = val?.id;
|
|
3192
3194
|
var idx;
|
|
3193
3195
|
|
|
3194
3196
|
try {
|