• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/cashbox/rest/cashboxservice.php
  • Класс: BitrixSaleCashboxRestCashboxService
  • Вызов: CashboxService::getOfdHandlerClassByCode
static function getOfdHandlerClassByCode($ofdCode): ?string
{
	$ofdHandlers = Ofd::getHandlerList();
	foreach ($ofdHandlers as $handler => $name)
	{
		$currentHandlerCode = $handler::getCode();
		if ($currentHandlerCode === $ofdCode)
		{
			return $handler;
		}
	}

	return null;
}