當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。