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

	$stepsCount = 5;

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