|
1 2 3 4 5 6 7 8 9 10 11 12 |
require($_SERVER["DOCUMENT_ROOT"] . "/bitrix/header.php"); $is_sku = true; $activeSkuId = 4638; if ($is_sku) { $arPrice = CCatalogProduct::GetOptimalPrice($activeSkuId, 1, 2, "N"); if (!$arPrice || count($arPrice) <= 0) { if ($nearestQuantity = CCatalogProduct::GetNearestQuantityPrice($activeSkuId, 1, 2)) { $quantity = $nearestQuantity; $arPrice = CCatalogProduct::GetOptimalPrice($activeSkuId, 1, 2, "N"); } } } //var_dump($arPrice['PRICE']['PRICE']); var_dump($arPrice); require($_SERVER["DOCUMENT_ROOT"] . "/bitrix/footer.php"); |
