Код |
---|
$arDiscounts = CCatalogDiscount::GetDiscountByProduct( $arElement["ID"], $GLOBALS["USER"]->GetUserGroupArray(), "N" ); // getting discount of product $discountPrice = CCatalogProduct::CountPriceWithDiscount($price_value, $price_currency, $arDiscounts); // calculate price with discount |
Код |
---|
if (CModule::IncludeModule("sale") && CModule::IncludeModule("catalog")) { $arDiscounts = CCatalogDiscount::GetDiscountByProduct( $arElement["ID"], $GLOBALS["USER"]->GetUserGroupArray(), "N" ); // getting discount of product $discountPrice = CCatalogProduct::CountPriceWithDiscount($price_value, $price_currency, $arDiscounts); // calculate price with discount } |