Я получаю цену одной конкретной доставки, но не могу переделать так, чтобы получать цены всех доставок, что для этого нужно?
<?
use Bitrix\Main\Context,
Bitrix\Currency\CurrencyManager,
Bitrix\Sale\Order,
Bitrix\Sale\Basket,
Bitrix\Sale\Delivery,
Bitrix\Sale\PaySystem;
global $USER;
Bitrix\Main\Loader::includeModule("sale");
Bitrix\Main\Loader::includeModule("catalog");
$productId = $_GET['ID']; // ID текущего товара
$siteId = Context::getCurrent()->getSite(); // ID сайта
$currencyCode = CurrencyManager::getBaseCurrency(); // Базовая валюта сайта
$deliveryId = '1';
$userCityId = '111';
// Создаём новый заказ
$order = Order::create($siteId, $USER->isAuthorized() ? $USER->GetID() : '');
$order->setPersonTypeId(1);
$order->setField('CURRENCY', $currencyCode);
// Создаём корзину с одним товаром
$basket = Basket::create($siteId);
$item = $basket->createItem('catalog', $productId);
$item->setFields(array(
'QUANTITY' => 1,
'CURRENCY' => $currencyCode,
'LID' => $siteId,
'PRODUCT_PROVIDER_CLASS' => '\CCatalogProductProvider',
));
$order->setBasket($basket);
// Устанавливаем город доставки
$orderProperties = $order->getPropertyCollection();
$orderDeliveryLocation = $orderProperties->getDeliveryLocation();
$orderDeliveryLocation->setValue($userCityId);
// Создаём одну отгрузку и устанавливаем способ доставки
$shipmentCollection = $order->getShipmentCollection();
$shipment = $shipmentCollection->createItem();
// Список доставок
$deliveryList = \Bitrix\Sale\Delivery\Services\Manager::getRestrictedList($shipment, \Bitrix\Sale\Services\Base\RestrictionManager::MODE_CLIENT);
foreach($deliveryList as $deliveryService) {
// echo '<pre>'.print_r($deliveryService['ID']).'</pre>';
}
$service = Delivery\Services\Manager::getById($deliveryId);
$shipment->setFields(array(
'DELIVERY_ID' => $service['ID'],
'DELIVERY_NAME' => $service['NAME'],
));
$shipmentItemCollection = $shipment->getShipmentItemCollection();
$shipmentItem = $shipmentItemCollection->createItem($item);
$shipmentItem->setQuantity($item->getQuantity());
// Создаём оплату со способом #1
$paymentCollection = $order->getPaymentCollection();
$payment = $paymentCollection->createItem();
$paySystemService = PaySystem\Manager::getObjectById(11);
$payment->setFields(array(
'PAY_SYSTEM_ID' => $paySystemService->getField("PAY_SYSTEM_ID"),
'PAY_SYSTEM_NAME' => $paySystemService->getField("NAME"),
));
$deliveryPrice = $order->getDeliveryPrice();
if ($deliveryPrice === '') {
$deliveryPrice = null;
}
$result = $deliveryPrice;
header('Content-Type: application/json; charset=utf-8');
echo json_encode(['response' => round($result, 2)]);