Magento get cart single item price incl. tax

前端 未结 6 2308
傲寒
傲寒 2021-02-14 15:45

I have a pretty weird issue, I hope someone can help me with this.

Here are the major config settings that influence my problem:

  • Catalog prices in admin pa
6条回答
  •  天命终不由人
    2021-02-14 16:06

    Have you tried:

    $product->getFinalPrice();
    
    // or this?
    $product->getPriceModel()->getFinalPrice($qty, $product);
    

提交回复
热议问题