• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Reservation/Component/InventoryManagementChecker.php
  • Класс: Bitrix\Crm\Reservation\Component\InventoryManagementChecker
  • Вызов: InventoryManagementChecker::filterServices
static function filterServices(array $products): array
{
	return array_filter($products, static function ($product) {
		$type = (int)($product['TYPE'] ?? 0);
		return $type === Crm\ProductType::TYPE_SERVICE;
	});
}