/**
* @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
Created
January 26, 2023 12:57
-
-
Save gartes/491e9432d5833f68aac1ecd8df1f0531 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment