• Модуль: currency
  • Путь к файлу: ~/bitrix/modules/currency/lib/integration/iblockmoneyproperty.php
  • Класс: BitrixCurrencyIntegrationIblockMoneyProperty
  • Вызов: IblockMoneyProperty::getUnitedValue
static function getUnitedValue($amount, string $currency): string
{
	return
		($amount === '')
			? ''
			: $amount.self::SEPARATOR.$currency
	;
}