• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/import/import.php
  • Класс: BitrixSaleLocationImportis
  • Вызов: is::getSubpercentForStageDropIndexes
protected function getSubpercentForStageDropIndexes()
{
	$pRange = $this->getCurrentPercentRange();
	$step = $this->getStep();

	$indexCount = 13;

	if($step >= $indexCount)
		return $pRange;
	else
	{
		return round($pRange * ($step / $indexCount));
	}
}