本文整理汇总了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));
}
示例2: getFormatedPrice
/**
* Get formatted by currency product price
*
* @param Product $product
* @return array || float
*/
public function getFormatedPrice($product)
{
return $this->priceCurrency->format($product->getFinalPrice());
}
示例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));
}
示例4: getFinalPrice
/**
* Retrieve product final price
*
* @param ModelProduct $product
* @return float
*/
public function getFinalPrice($product)
{
return $product->getFinalPrice();
}
示例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 . '!';
}
示例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);
}
}
示例7: testSetGetFinalPrice
public function testSetGetFinalPrice()
{
$this->assertEquals(0, $this->_model->getFinalPrice());
$this->_model->setFinalPrice(10);
$this->assertEquals(10, $this->_model->getFinalPrice());
}
示例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());
}