• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/documentgenerator/value/money.php
  • Класс: Bitrix\Crm\Integration\DocumentGenerator\Value\Money
  • Вызов: Money::disableZeros
protected function disableZeros()
{
	$maxIterations = 1000;
	while(\CCurrencyLang::isAllowUseHideZero())
	{
		if($maxIterations-- <= 0)
		{
			break;
		}
		\CCurrencyLang::disableUseHideZero();
	}
	\CCurrencyLang::disableUseHideZero();
}