N°8772 - dynamic form

This commit is contained in:
Benjamin Dalsass
2025-11-03 13:50:07 +01:00
parent 68d2038488
commit 20da9664c2
5 changed files with 82 additions and 32 deletions

View File

@@ -418,13 +418,8 @@ abstract class AbstractFormBlock implements IFormBlock
/** Iterate throw output @var FormOutput $oFormOutput */
foreach ($this->aFormOutputs as $oFormOutput) {
try {
// Compute the output value
$oFormOutput->ComputeValue($sEventType, $oData);
}
catch (IOException $oException) {
IssueLog::Exception(sprintf('Unable to compute values for output %s of block %s', $oFormOutput->GetName(), $this->GetName()), $oException);
}
// Compute the output value
$oFormOutput->ComputeValue($sEventType, $oData);
}
}