• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/service/agent/worktimeagentmanager.php
  • Класс: BitrixTimemanServiceAgentWorktimeAgentManager
  • Вызов: WorktimeAgentManager::createMissedShiftChecking
public function createMissedShiftChecking($shiftPlan, $shift)
{
	if ($shift->buildUtcEndByShiftplan($shiftPlan)->getTimestamp() < TimeHelper::getInstance()->getUtcNowTimestamp())
	{
		return;
	}
	$agentId = $this->addAgent(
		$this->prepareMissedShiftAgentFields($shiftPlan, $shift)
	);
	if ($agentId > 0)
	{
		$shiftPlan->setMissedShiftAgentId($agentId);
		$this->shiftPlanProvider->save($shiftPlan);
	}
}