Skip to content

Instantly share code, notes, and snippets.

@d1i1m1o1n
Forked from marvell/gist:8330935
Last active November 15, 2015 21:27
Show Gist options
  • Save d1i1m1o1n/0fb73df491d8fd3d8596 to your computer and use it in GitHub Desktop.
Save d1i1m1o1n/0fb73df491d8fd3d8596 to your computer and use it in GitHub Desktop.
Bitrix: получение оптимальной цены (с учетом скидок) #snippet
CModule::IncludeModule("catalog");
global $USER;
//Цена
$arPrice = CCatalogProduct::GetOptimalPrice($arResult['ID'], 1, $USER->GetUserGroupArray());
$arResult['PRICE'] = $arPrice;
$arResult['DISCOUNT_PRICE'] = SaleFormatCurrency($arPrice["DISCOUNT_PRICE"], $arPrice["RESULT_PRICE"]["CURRENCY"]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment