getAPrice();
list($oShopItem) = $aArgs;
if (isset($_SESSION['hostcmsCartMarkups'][$oShopItem->id]))
{
$markupValue = floatval($_SESSION['hostcmsCartMarkups'][$oShopItem->id]);
$aPrice['price'] += $markupValue;
$aPrice['price_discount'] += $markupValue;
}
$oShopItemController->setAPrice($aPrice);
}
}