• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/service/groupqueueservice.php
  • Класс: Bitrix\Sender\Service\GroupQueueService
  • Вызов: GroupQueueService::isEntityProcessed
public function isEntityProcessed(int $type, int $entityId)
{
	return GroupQueueTable::query()
		->setSelect([
			'ID',
			'DATE_INSERT',
		])
		->where('ENTITY_ID', $entityId)
		->where('TYPE', $type)
		->exec()
		->fetch();
}