• Модуль: rpa
  • Путь к файлу: ~/bitrix/modules/rpa/lib/model/itemhistory.php
  • Класс: BitrixRpaModelItemHistory
  • Вызов: ItemHistory::fillEmptyValues
public function fillEmptyValues(): void
{
	if(empty(parent::getTypeId()))
	{
		$this->setTypeId($this->getTypeId());
	}
	if(empty(parent::getItemId()))
	{
		$this->setItemId($this->getItemId());
	}
	if(empty(parent::getAction()))
	{
		$this->setAction($this->getAction());
	}
	if(empty(parent::getStageId()))
	{
		$this->setStageId($this->getStageId());
	}
	if(empty(parent::getNewStageId()))
	{
		$this->setNewStageId($this->getNewStageId());
	}
}