RecalculateAllUncompletedAgent::doRun

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. RecalculateAllUncompletedAgent
  4. doRun
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/agent/activity/recalculatealluncompletedagent.php
  • Класс: Bitrix\Crm\Agent\Activity\RecalculateAllUncompletedAgent
  • Вызов: RecalculateAllUncompletedAgent::doRun
static function doRun()
{
	$agent = new UncompletedRecalculation();
	$isContinue = $agent->execute();

	if ($isContinue)
	{
		return self::AGENT_CONTINUE;
	}

	UncompletedRecalculation::cleanOptions();

	return self::AGENT_DONE_STOP_IT;
}

Добавить комментарий