• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/repository/schedule/shiftrepository.php
  • Класс: BitrixTimemanRepositoryScheduleShiftRepository
  • Вызов: ShiftRepository::findByIdWithSchedule
public function findByIdWithSchedule($shiftId)
{
	return $this->getActiveShiftsQuery()
		->addSelect('*')
		->addSelect('SCHEDULE')
		->addSelect('SCHEDULE.SCHEDULE_VIOLATION_RULES')
		->where('ID', $shiftId)
		->where('SCHEDULE.DELETED', ScheduleTable::DELETED_NO)
		->exec()
		->fetchObject();
}