以下のタイプの製品の元の価格と最終価格を取得するにはどうすればよいですか?
- シンプルな商品
- 構成可能な製品
- バンドル製品
- グループ製品
以下のために、簡単な製品の私は、コードの下に使用して簡単に価格を得ることができます。
$finalPrice = $product->getFinalPrice();
$originalPrice = $product->getPrice();
しかし、構成可能な製品、バンドル製品、グループ製品の元の価格と最終価格を取得できません
他のすべてのタイプの製品の両方の価格を取得する簡単な方法はありますか?
編集:
以下のコードを使用して、構成可能な製品の元の価格と最終的な価格を取得します。get-price-range-configurable-product-magento-2から参照を取得します
$basePrice = $product->getPriceInfo()->getPrice('regular_price');
$regularPrice = $basePrice->getMinRegularAmount()->getValue();
$specialPrice = $product->getFinalPrice();
何か助けていただければ幸いです!ありがとう。
ここで元の価格と最終価格を取得できます<?php $ objectManager = \ Magento \ Framework \ App \ ObjectManager :: getInstance(); $ productCollectionFactory = $ objectManager-> get( '\ Magento \ Catalog \ Model \ ResourceModel \ Product \ CollectionFactory'); $ collection = $ productCollectionFactory-> create(); $ collection-> addAttributeToSelect( '*'); $ collection-> addWebsiteFilter(); $ collection-> addMinimalPrice(); $ collection-> addFinalPrice(); $ collection-> addStoreFilter(); $ collection-> setVisibility($ objectManager-> get( '\ Magento \ Catalog \ Model \ Product \ Visibility')-> getVisibleInSiteIds()); ?> <?php foreach($ collecti
—
Rakesh Donga
このコードを確認しましたか?それは働いていますか?それは私のために働いていません。
—
Chirag Patel
はい、このコードは私のために働きます
—
Rakesh Donga
$_product->getSpecialPrice();
がうまくいかない
if($orgprice > $specialprice){ echo $_product->getSpecialPrice(); }