• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/exchange/integration/controller/statistic.php
  • Класс: BitrixSaleExchangeIntegrationControllerStatistic
  • Вызов: Statistic::checkPackageLimit
protected function checkPackageLimit(array $data)
{
	$r = new Result();

	if(count($data) > BitrixSaleExchangeIntegrationManagerStatistic::STATISTIC_IMPORT_PACKAGE_LIMIT)
	{
		$r->addError(new Error('Batch exceeded the limit - '.BitrixSaleExchangeIntegrationManagerStatistic::STATISTIC_IMPORT_PACKAGE_LIMIT));
	}
	return $r;
}