ProductsDataProvider::isProductVariantSupported

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. ProductsDataProvider
  4. isProductVariantSupported
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/documentgenerator/dataprovider/productsdataprovider.php
  • Класс: Bitrix\Crm\Integration\DocumentGenerator\DataProvider\ProductsDataProvider
  • Вызов: ProductsDataProvider::isProductVariantSupported
protected function isProductVariantSupported(string $productVariant) : bool
{
	$options = $this->getOptions()['VALUES'] ?? [];

	if (empty($options['productsTableVariant']))
	{
		return true;
	}

	return $options['productsTableVariant'] === $productVariant;
}

Добавить комментарий