• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/service/worktime/worktimelivefeedmanager.php
  • Класс: BitrixTimemanServiceWorktimeWorktimeLiveFeedManager
  • Вызов: WorktimeLiveFeedManager::stopWorkdayPostTrackingForApprover
public function stopWorkdayPostTrackingForApprover($recordId, $approvedBy): void
{
	if ($approvedBy <= 0 || !BitrixMainLoader::includeModule('socialnetwork'))
	{
		return;
	}
	$postCode = $this->getPostCodeByRecordId($recordId);

	if ($postCode !== null)
	{
		// auto post about workday approving will not pop up for the supervisor that approved this day
		CSocNetLogFollow::set($approvedBy, $postCode, 'N', $followDate = false, SITE_ID, $byWorkFlow = true);
	}
}