• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/repository/paymentrepository.php
  • Класс: BitrixSaleRepositoryPaymentRepository
  • Вызов: PaymentRepository::getByIds
public function getByIds(array $ids): array
{
	return $this->getList([
		'select' => ['ID', 'ORDER_ID'],
		'filter' => [
			'@ID' => $ids
		],
	]);
}