• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/classes/general/checklistitem.php
  • Класс: CTaskCheckListItem
  • Вызов: CTaskCheckListItem::complete
public function complete()
{
	try
	{
		/** @noinspection PhpDeprecationInspection */
		$this->update(['IS_COMPLETE' => 'Y']);
	}
	/** @noinspection PhpDeprecationInspection */
	catch (TasksException $e)
	{
		return false;
	}

	return true;
}