• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/ProductGrid/SingleProductQuery.php
  • Класс: BitrixCrmMobileProductGridSingleProductQuery
  • Вызов: SingleProductQuery::__construct
public function __construct(
	Item $entity,
	int $productId,
	?string $currencyId = null
)
{
	$this->entity = $entity;
	$this->productId = $productId;
	$this->currencyId = $currencyId ?? $this->entity->getCurrencyId();
	$this->accounting = Container::getInstance()->getAccounting();
	$this->permissionsProvider = PermissionsProvider::getInstance();
	$this->taxCalculator = new TaxCalculator($this->accounting);
}