• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/paysystem/service.php
  • Класс: BitrixSalePaySystemService
  • Вызов: Service::isRefundable
public function isRefundable()
{
	if ($this->handler instanceof IRefundExtended)
	{
		return $this->handler->isRefundableExtended();
	}

	return $this->handler instanceof IRefund;
}