Event "Compute Values"

This commit is contained in:
Eric Espie
2022-06-01 09:09:16 +02:00
parent f6855b0d2b
commit c7e54c66c8
3 changed files with 28 additions and 31 deletions

View File

@@ -1049,7 +1049,7 @@ abstract class DBObject implements iDisplay
if ($aCallInfo["function"] != "ComputeValues") continue;
return; //skip!
}
$this->EventComputeValues();
$this->ComputeValues();
}
@@ -2305,7 +2305,7 @@ abstract class DBObject implements iDisplay
* @throws \OQLException
*
*/
final public function CheckToWrite($bDoComputeValues = true)
public function CheckToWrite($bDoComputeValues = true)
{
if (MetaModel::SkipCheckToWrite())
{
@@ -5829,6 +5829,10 @@ abstract class DBObject implements iDisplay
{
}
protected function EventComputeValues()
{
}
protected function EventCheckToWrite(array $aEventData)
{
}