@xuda.io/runtime-bundle 1.0.486 → 1.0.488
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 +20 -4
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +20 -4
- package/js/xuda-runtime-slim.min.es.js +20 -4
- package/js/xuda-runtime-slim.min.js +2 -2
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +3 -3
- package/js/xuda-worker-bundle.js +3 -3
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -31319,7 +31319,23 @@ func.UI.screen.init = async function (SESSION_ID, prog_id, sourceScreenP, callin
|
|
|
31319
31319
|
// console.log("***");
|
|
31320
31320
|
func.UI.utils.indicator.screen.busy();
|
|
31321
31321
|
|
|
31322
|
-
const ret = await func.datasource.create(
|
|
31322
|
+
const ret = await func.datasource.create(
|
|
31323
|
+
SESSION_ID,
|
|
31324
|
+
prog_id,
|
|
31325
|
+
null, //params?.callingDataSource_objP?.dsSession
|
|
31326
|
+
params.parentDataSourceNoP,
|
|
31327
|
+
$rootFrame.attr('id'),
|
|
31328
|
+
rowIdP,
|
|
31329
|
+
jobNoP,
|
|
31330
|
+
null,
|
|
31331
|
+
null,
|
|
31332
|
+
null,
|
|
31333
|
+
null,
|
|
31334
|
+
null,
|
|
31335
|
+
null,
|
|
31336
|
+
null,
|
|
31337
|
+
parameters_obj_inP,
|
|
31338
|
+
);
|
|
31323
31339
|
|
|
31324
31340
|
var _ds = SESSION_OBJ[SESSION_ID].DS_GLB[ret.dsSessionP];
|
|
31325
31341
|
_ds.screen_params = params;
|
|
@@ -35023,10 +35039,10 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
35023
35039
|
return await variable_not_exist();
|
|
35024
35040
|
}
|
|
35025
35041
|
|
|
35026
|
-
var split = [];
|
|
35042
|
+
// var split = [];
|
|
35027
35043
|
var var_Arr = [];
|
|
35028
|
-
split = func.expression.parse(ret);
|
|
35029
|
-
|
|
35044
|
+
const split = func.expression.parse(ret) || [];
|
|
35045
|
+
console.log(valP, split);
|
|
35030
35046
|
for await (const [arr_key, val] of Object.entries(split)) {
|
|
35031
35047
|
// run each field
|
|
35032
35048
|
const key = Number(arr_key);
|