@xuda.io/runtime-bundle 1.0.636 → 1.0.638

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.
@@ -10488,6 +10488,11 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
10488
10488
  };
10489
10489
  if (error) log_error();
10490
10490
  // if (error || warning) log_error();
10491
+
10492
+ if (typeof EXP_BUSY !== 'undefined') {
10493
+ EXP_BUSY = false;
10494
+ }
10495
+
10491
10496
  return {
10492
10497
  result: ret,
10493
10498
  fields: fields,
@@ -12293,7 +12298,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
12293
12298
  async function render_panel() {
12294
12299
  const prog_id = val.value?.prog || val.value;
12295
12300
  const param_obj = await get_params_obj_new(SESSION_ID, prog_id, nodeP, paramsP.dsSessionP);
12296
- let ret_panel = await func.UI.screen.init(SESSION_ID, prog_id, paramsP.screenId, _ds, $elm, null, _ds.currentRecordId, null, true, param_obj, 'initXu_panel', undefined, refreshed_ds);
12301
+ let ret_panel = await func.UI.screen.init(SESSION_ID, prog_id, paramsP.screenId, _ds, $elm, null, _ds.currentRecordId, null, true, param_obj, 'initXu_panel', undefined, prog_id !== _ds.prog_id ? null : refreshed_ds);
12297
12302
  ret = { $new_div: ret_panel };
12298
12303
  $container.data().xuData.xuPanelProps = $elm.data().xuAttributes;
12299
12304
  $container.data().xuData.xuPanelData = ret_panel.data();
@@ -10020,7 +10020,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10020
10020
  async function render_panel() {
10021
10021
  const prog_id = val.value?.prog || val.value;
10022
10022
  const param_obj = await get_params_obj_new(SESSION_ID, prog_id, nodeP, paramsP.dsSessionP);
10023
- let ret_panel = await func.UI.screen.init(SESSION_ID, prog_id, paramsP.screenId, _ds, $elm, null, _ds.currentRecordId, null, true, param_obj, 'initXu_panel', undefined, refreshed_ds);
10023
+ let ret_panel = await func.UI.screen.init(SESSION_ID, prog_id, paramsP.screenId, _ds, $elm, null, _ds.currentRecordId, null, true, param_obj, 'initXu_panel', undefined, prog_id !== _ds.prog_id ? null : refreshed_ds);
10024
10024
  ret = { $new_div: ret_panel };
10025
10025
  $container.data().xuData.xuPanelProps = $elm.data().xuAttributes;
10026
10026
  $container.data().xuData.xuPanelData = ret_panel.data();
@@ -14379,6 +14379,11 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
14379
14379
  };
14380
14380
  if (error) log_error();
14381
14381
  // if (error || warning) log_error();
14382
+
14383
+ if (typeof EXP_BUSY !== 'undefined') {
14384
+ EXP_BUSY = false;
14385
+ }
14386
+
14382
14387
  return {
14383
14388
  result: ret,
14384
14389
  fields: fields,