鍍金池/ 問答/PHP  網(wǎng)絡(luò)安全/ Magento `getFinalPrice()` 方法無法獲得正確價(jià)格

Magento `getFinalPrice()` 方法無法獲得正確價(jià)格

  • 價(jià)格設(shè)置:

clipboard.png

  • 通過 getFinalPrice() 方法后獲得的價(jià)格還是 700

  • 代碼:

...
$items = $this->getAllItems();
 # @ ---------------------------------------- Detail Each Product -------------------------------------------
foreach( $items as $item ):
    $product = $item->getProduct();
    if($product->getTypeId() == 'configurable'):
    $finalPrice = $product -> getFinalPrice();
...
回答
編輯回答
傲嬌范

解決:先查詢并設(shè)置用戶組 然后就可得出相應(yīng)客戶組的正確價(jià)格

...
# @ Customer GroupId
$Int_Customer_GroupId = $customer -> getGroupId();
# @ Set Group
$product -> setCustomerGroupId( $Int_Customer_GroupId );
# @ Final Price
$finalPrice = $product -> getFinalPrice();
...
2018年8月27日 19:06