Questions tagged «product-prices»

1
Magento 2:如何获取所有类型产品的最终价格和原始价格
如何获得以下类型产品的原始价格和最终价格? 简单的产品 可配置产品 捆绑产品 集团产品 对于简单的产品,我可以使用以下代码轻松获得价格。 $finalPrice = $product->getFinalPrice(); $originalPrice = $product->getPrice(); 但是我无法获得可配置产品,捆绑产品,集团产品的原始价格和最终价格 是否有任何简便的方法可以同时获得所有其他类型产品的价格。 编辑: 我使用以下代码获得价格可配置产品的原始价格和最终价格。并参考get-price-range-configurableableproduct-magento-2 $basePrice = $product->getPriceInfo()->getPrice('regular_price'); $regularPrice = $basePrice->getMinRegularAmount()->getValue(); $specialPrice = $product->getFinalPrice(); 任何帮助,将不胜感激!谢谢。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.