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

	$indexCount = 3;

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