@xuda.io/runtime-bundle 1.0.882 → 1.0.883

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.
@@ -3132,6 +3132,7 @@ func.datasource.prepare = async function (SESSION_ID, prog_id, dataSourceNoP, pa
3132
3132
  prog_id: prog_id,
3133
3133
  dsSession: dataSourceSession,
3134
3134
  fieldId: fieldIdP,
3135
+ parentDataSourceNoP,
3135
3136
  };
3136
3137
  return ret;
3137
3138
  };
@@ -9877,9 +9878,9 @@ func.events.execute = async function (
9877
9878
  await func.datasource.update(SESSION_ID, datasource_changes);
9878
9879
 
9879
9880
  if (_ds.PARAM_OUT_INFO) {
9880
- for await (const [dsSession_to_update, val] of Object.entries(datasource_changes)) {
9881
- await func.datasource.update_changes_for_out_parameter(SESSION_ID, _ds.dsSession, dsSession_to_update);
9882
- }
9881
+ // for await (const [dsSession_to_update, val] of Object.entries(datasource_changes)) {
9882
+ await func.datasource.update_changes_for_out_parameter(SESSION_ID, _ds.dsSession, _ds.PARAM_OUT_INFO.parentDataSourceNo);
9883
+ // }
9883
9884
  }
9884
9885
 
9885
9886
  if (jobNoP) func.events.delete_job(SESSION_ID, jobNoP);
@@ -3133,6 +3133,7 @@ func.datasource.prepare = async function (SESSION_ID, prog_id, dataSourceNoP, pa
3133
3133
  prog_id: prog_id,
3134
3134
  dsSession: dataSourceSession,
3135
3135
  fieldId: fieldIdP,
3136
+ parentDataSourceNoP,
3136
3137
  };
3137
3138
  return ret;
3138
3139
  };
@@ -13835,9 +13836,9 @@ func.events.execute = async function (
13835
13836
  await func.datasource.update(SESSION_ID, datasource_changes);
13836
13837
 
13837
13838
  if (_ds.PARAM_OUT_INFO) {
13838
- for await (const [dsSession_to_update, val] of Object.entries(datasource_changes)) {
13839
- await func.datasource.update_changes_for_out_parameter(SESSION_ID, _ds.dsSession, dsSession_to_update);
13840
- }
13839
+ // for await (const [dsSession_to_update, val] of Object.entries(datasource_changes)) {
13840
+ await func.datasource.update_changes_for_out_parameter(SESSION_ID, _ds.dsSession, _ds.PARAM_OUT_INFO.parentDataSourceNo);
13841
+ // }
13841
13842
  }
13842
13843
 
13843
13844
  if (jobNoP) func.events.delete_job(SESSION_ID, jobNoP);