1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
dealhandler.php
См. документацию.
1<?php
2
4
5use Bitrix\Crm\Service\Container;
7
9{
10 public static function getDeal(int $dealId): mixed
11 {
12 if (Loader::includeModule('crm'))
13 {
14 $entityBroker = Container::getInstance()->getEntityBroker(\CCrmOwnerType::Deal);
15
16 return $entityBroker?->getById($dealId);
17 }
18
19 return null;
20 }
21}
static getDeal(int $dealId)
Определения dealhandler.php:10
Определения loader.php:13