当前位置: 首页>>代码示例>>PHP>>正文


PHP Product::getFinalPrice方法代码示例

本文整理汇总了PHP中Magento\Catalog\Model\Product::getFinalPrice方法的典型用法代码示例。如果您正苦于以下问题:PHP Product::getFinalPrice方法的具体用法?PHP Product::getFinalPrice怎么用?PHP Product::getFinalPrice使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Magento\Catalog\Model\Product的用法示例。


在下文中一共展示了Product::getFinalPrice方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testGetFinalPricePreset

 public function testGetFinalPricePreset()
 {
     $finalPrice = 9.99;
     $qty = 1;
     $this->model->setQty($qty);
     $this->model->setFinalPrice($finalPrice);
     $this->productTypeInstanceMock->expects($this->never())->method('priceFactory');
     $this->assertEquals($finalPrice, $this->model->getFinalPrice($qty));
 }
开发者ID:hientruong90,项目名称:magento2_installer,代码行数:9,代码来源:ProductTest.php

示例2: getFormatedPrice

 /**
  * Get formatted by currency product price
  *
  * @param   Product $product
  * @return  array || float
  */
 public function getFormatedPrice($product)
 {
     return $this->priceCurrency->format($product->getFinalPrice());
 }
开发者ID:shabbirvividads,项目名称:magento2,代码行数:10,代码来源:Price.php

示例3: getSelectionFinalTotalPrice

 /**
  * Calculate final price of selection
  * with take into account tier price
  *
  * @param  \Magento\Catalog\Model\Product $bundleProduct
  * @param  \Magento\Catalog\Model\Product $selectionProduct
  * @param  float                    $bundleQty
  * @param  float                    $selectionQty
  * @param  bool                       $multiplyQty
  * @param  bool                       $takeTierPrice
  * @return float
  */
 public function getSelectionFinalTotalPrice($bundleProduct, $selectionProduct, $bundleQty, $selectionQty, $multiplyQty = true, $takeTierPrice = true)
 {
     if (null === $bundleQty) {
         $bundleQty = 1.0;
     }
     if ($selectionQty === null) {
         $selectionQty = $selectionProduct->getSelectionQty();
     }
     if ($bundleProduct->getPriceType() == self::PRICE_TYPE_DYNAMIC) {
         $price = $selectionProduct->getFinalPrice($takeTierPrice ? $selectionQty : 1);
     } else {
         if ($selectionProduct->getSelectionPriceType()) {
             // percent
             $product = clone $bundleProduct;
             $product->setFinalPrice($this->getPrice($product));
             $this->_eventManager->dispatch('catalog_product_get_final_price', ['product' => $product, 'qty' => $bundleQty]);
             $price = $product->getData('final_price') * ($selectionProduct->getSelectionPriceValue() / 100);
         } else {
             // fixed
             $price = $selectionProduct->getSelectionPriceValue();
         }
     }
     if ($multiplyQty) {
         $price *= $selectionQty;
     }
     return min($price, $this->_applyGroupPrice($bundleProduct, $price), $this->_applyTierPrice($bundleProduct, $bundleQty, $price), $this->_applySpecialPrice($bundleProduct, $price));
 }
开发者ID:opexsw,项目名称:magento2,代码行数:39,代码来源:Price.php

示例4: getFinalPrice

 /**
  * Retrieve product final price
  *
  * @param ModelProduct $product
  * @return float
  */
 public function getFinalPrice($product)
 {
     return $product->getFinalPrice();
 }
开发者ID:whoople,项目名称:magento2-testing,代码行数:10,代码来源:Product.php

示例5: afterGetName

 /**
  * Use the defined helper to format the price
  *
  * @param Target $target
  * @param $result
  * @return string
  */
 public function afterGetName(Target $target, $result)
 {
     $formattedPrice = $this->_pricingHelper->currency($target->getFinalPrice(), true, false);
     return $result . ' for ONLY ' . $formattedPrice . '!';
 }
开发者ID:nadobnykh,项目名称:Like2Buy-magento2,代码行数:12,代码来源:Product.php

示例6: getFinalPrice

 /**
  * {@inheritdoc}
  */
 public function getFinalPrice($qty = null)
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFinalPrice');
     if (!$pluginInfo) {
         return parent::getFinalPrice($qty);
     } else {
         return $this->___callPlugins('getFinalPrice', func_get_args(), $pluginInfo);
     }
 }
开发者ID:dragonsword007008,项目名称:magento2,代码行数:12,代码来源:Interceptor.php

示例7: testSetGetFinalPrice

 public function testSetGetFinalPrice()
 {
     $this->assertEquals(0, $this->_model->getFinalPrice());
     $this->_model->setFinalPrice(10);
     $this->assertEquals(10, $this->_model->getFinalPrice());
 }
开发者ID:andrewhowdencom,项目名称:m2onk8s,代码行数:6,代码来源:ProductPriceTest.php

示例8: getFormatedPrice

 /**
  * Get formatted by currency product price
  *
  * @param   Product $product
  * @return  array || float
  */
 public function getFormatedPrice($product)
 {
     return $this->_storeManager->getStore()->formatPrice($product->getFinalPrice());
 }
开发者ID:pavelnovitsky,项目名称:magento2,代码行数:10,代码来源:Price.php


注:本文中的Magento\Catalog\Model\Product::getFinalPrice方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。