• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/paymentcollection.php
  • Класс: BitrixSalePaymentCollection
  • Вызов: PaymentCollection::isMarked
public function isMarked()
{
	if (!empty($this->collection) && is_array($this->collection))
	{
		/** @var Payment $payment */
		foreach ($this->collection as $payment)
		{
			if ($payment->isMarked())
				return true;
		}
	}

	return false;
}