• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/helpers/admin/blocks/archive/typefirst/orderpayment.php
  • Класс: Bitrix\Sale\Helpers\Admin\Blocks\Archive\TypeFirst\OrderPayment
  • Вызов: OrderPayment::buildBlock
public function buildBlock()
{
	$result = "";
	$index = 0;
	$paymentCollection = $this->order->getPaymentCollection();

	foreach ($paymentCollection as $payment)
	{
		$result .= Block::getView($payment, $index++, "archive");
	}

	return $result;
}