Код |
---|
<!--Цена--> <? $arProduct = GetCatalogProduct($PRODUCT_ID); $arPrice = GetCatalogProductPriceList($PRODUCT_ID, "SORT", "ASC"); $bCanBuy = False; for ($i = 0; $i<count($arPrice); $i++) { if ($arPrice[$i]["CAN_ACCESS"]=="Y") { if ($arPrice[$i]["CAN_BUY"]=="Y" && (IntVal($arProduct["QUANTITY"])>0 || $arProduct["QUANTITY_TRACE"]!="Y")) $bCanBuy = True; echo $arPrice[$i]["CATALOG_GROUP_NAME"].": "; echo FormatCurrency($arPrice[$i]["PRICE"], $arPrice[$i]["CURRENCY"]); } } ?> <!--Цена--> |
Код |
---|
$arProduct = GetCatalogProduct($PRODUCT_ID); |
Код |
---|
array GetCatalogProduct( int PRODUCT_ID ); |