@xuda.io/runtime-bundle 1.0.296 → 1.0.298
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 +1 -1
- 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 +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +4 -4
- package/js/xuda-worker-bundle.js +4 -4
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -28989,7 +28989,7 @@ func.datasource.execute = async function (SESSION_ID, dataSourceSession, IS_DATA
|
|
|
28989
28989
|
await func.datasource.execute_view_events(SESSION_ID, dataSourceSession, 'on_load');
|
|
28990
28990
|
}
|
|
28991
28991
|
// }
|
|
28992
|
-
return await func.datasource.callback(SESSION_ID, dataSourceSession, args.
|
|
28992
|
+
return await func.datasource.callback(SESSION_ID, dataSourceSession, args.rowIdP, args.jobNoP, _ds.prog_id);
|
|
28993
28993
|
};
|
|
28994
28994
|
|
|
28995
28995
|
const get_limit = async function () {
|
|
@@ -29533,7 +29533,7 @@ func.datasource.execute = async function (SESSION_ID, dataSourceSession, IS_DATA
|
|
|
29533
29533
|
await func.datasource.execute_field_init_events(SESSION_ID, dataSourceSession, 'form', 'newRecord');
|
|
29534
29534
|
}
|
|
29535
29535
|
}
|
|
29536
|
-
await func.datasource.callback(SESSION_ID, dataSourceSession, args.
|
|
29536
|
+
await func.datasource.callback(SESSION_ID, dataSourceSession, args.rowIdP, args.jobNoP, _ds.prog_id);
|
|
29537
29537
|
};
|
|
29538
29538
|
if (!rows) {
|
|
29539
29539
|
await row_not_found();
|
|
@@ -30444,7 +30444,7 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
30444
30444
|
}
|
|
30445
30445
|
}
|
|
30446
30446
|
}
|
|
30447
|
-
|
|
30447
|
+
debugger;
|
|
30448
30448
|
if (glb.IS_WORKER) {
|
|
30449
30449
|
if (!update_local_scope_only && !_.isEmpty(client_datasource_changes)) {
|
|
30450
30450
|
func.utils.post_back_to_client(SESSION_ID, 'update_client_eventChangesResults_from_worker', _session.worker_id, client_datasource_changes);
|
|
@@ -30475,7 +30475,7 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
30475
30475
|
});
|
|
30476
30476
|
};
|
|
30477
30477
|
|
|
30478
|
-
func.datasource.callback = async function (SESSION_ID, dsSessionP,
|
|
30478
|
+
func.datasource.callback = async function (SESSION_ID, dsSessionP, rowIdP, jobNoP, nodeIdP) {
|
|
30479
30479
|
var _session = SESSION_OBJ[SESSION_ID];
|
|
30480
30480
|
var _ds = _session.DS_GLB[dsSessionP];
|
|
30481
30481
|
|