Skip to content

Instantly share code, notes, and snippets.

@gartes
Created January 26, 2023 12:57
Show Gist options
  • Save gartes/491e9432d5833f68aac1ecd8df1f0531 to your computer and use it in GitHub Desktop.
Save gartes/491e9432d5833f68aac1ecd8df1f0531 to your computer and use it in GitHub Desktop.

Получаем цены для товаров

/**
 * @var array $resultObjectList - Массив объектов
 * @var VirtueMartModelProduct $productModel
 */
$productModel = VmModel::getModel('product');
// Получаем цены для товаров
foreach ( $resultObjectList as &$item )
{
    $pp = $productModel->getPrice ( $item->virtuemart_product_id , 1 );
    $item->product_price = $pp['salesPrice'];
}#END FOREACH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment