• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Timeline/Item/Activity.php
  • Класс: Bitrix\Crm\Service\Timeline\Item\Activity
  • Вызов: Activity::canPostpone
protected function canPostpone(): bool
{
	if (!$this->getDeadline()) // items without deadline can not be postponed
	{
		return false;
	}

	return \CCrmActivity::CheckItemPostponePermission(
		$this->getAssociatedEntityModel()->toArray(),
		$this->getContext()->getUserPermissions()->getCrmPermissions()
	);
}