@xuda.io/runtime-bundle 1.0.700 → 1.0.702

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.
@@ -1275,7 +1275,7 @@ func.datasource.create = async function (
1275
1275
  rowIdP,
1276
1276
  jobNoP,
1277
1277
  calling_trigger_prop,
1278
- screen_param,
1278
+ parameters_raw_obj,
1279
1279
  NA_isInitP,
1280
1280
  NA_callingSourceP,
1281
1281
  calling_jobP,
@@ -1308,6 +1308,7 @@ func.datasource.create = async function (
1308
1308
  parameters_obj_inP,
1309
1309
  static_refreshP,
1310
1310
  worker_id,
1311
+ parameters_raw_obj,
1311
1312
  };
1312
1313
 
1313
1314
  var IS_DATASOURCE_REFRESH = null;
@@ -6632,7 +6633,7 @@ func.events.execute = async function (
6632
6633
  var params_obj = {};
6633
6634
  if (_prog?.properties?.progParams) {
6634
6635
  for await (const [key, val] of Object.entries(_prog.properties.progParams)) {
6635
- if (!val.data.dir === 'in') continue;
6636
+ if (val.data.dir !== 'in') continue;
6636
6637
  if (typeof args.parameters_obj_inP?.[val.data.parameter] !== 'undefined') {
6637
6638
  if (args.parameters_obj_inP?.[val.data.parameter].fx) {
6638
6639
  let ret = await func.expression.get(SESSION_ID, args.parameters_obj_inP?.[val.data.parameter].fx, dsSession, 'parameters');
@@ -1275,7 +1275,7 @@ func.datasource.create = async function (
1275
1275
  rowIdP,
1276
1276
  jobNoP,
1277
1277
  calling_trigger_prop,
1278
- screen_param,
1278
+ parameters_raw_obj,
1279
1279
  NA_isInitP,
1280
1280
  NA_callingSourceP,
1281
1281
  calling_jobP,
@@ -1308,6 +1308,7 @@ func.datasource.create = async function (
1308
1308
  parameters_obj_inP,
1309
1309
  static_refreshP,
1310
1310
  worker_id,
1311
+ parameters_raw_obj,
1311
1312
  };
1312
1313
 
1313
1314
  var IS_DATASOURCE_REFRESH = null;
@@ -6632,7 +6633,7 @@ func.events.execute = async function (
6632
6633
  var params_obj = {};
6633
6634
  if (_prog?.properties?.progParams) {
6634
6635
  for await (const [key, val] of Object.entries(_prog.properties.progParams)) {
6635
- if (!val.data.dir === 'in') continue;
6636
+ if (val.data.dir !== 'in') continue;
6636
6637
  if (typeof args.parameters_obj_inP?.[val.data.parameter] !== 'undefined') {
6637
6638
  if (args.parameters_obj_inP?.[val.data.parameter].fx) {
6638
6639
  let ret = await func.expression.get(SESSION_ID, args.parameters_obj_inP?.[val.data.parameter].fx, dsSession, 'parameters');