• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/payment.php
  • Класс: BitrixSalePayment
  • Вызов: Payment::getHash
public function getHash()
{
	$order = $this->getOrder();

	return md5(
		$this->getId().
		PriceMaths::roundPrecision($this->getSum()).
		$order->getId()
	);
}