• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Relation/StorageStrategy/EntityToOrder.php
  • Класс: Bitrix\Crm\Relation\StorageStrategy\EntityToOrder
  • Вызов: EntityToOrder::getChildElements
public function getChildElements(ItemIdentifier $parent, int $childEntityTypeId): array
{
	$children = [];

	$orderIdsList = OrderEntityTable::getOrderIdsByOwner($parent->getEntityId(), $parent->getEntityTypeId());
	foreach ($orderIdsList as $orderId)
	{
		$children[] = new ItemIdentifier(\CCrmOwnerType::Order, $orderId);
	}

	return $children;
}