本文整理汇总了PHP中Magento\Tax\Helper\Data::displayBothPrices方法的典型用法代码示例。如果您正苦于以下问题:PHP Data::displayBothPrices方法的具体用法?PHP Data::displayBothPrices怎么用?PHP Data::displayBothPrices使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Tax\Helper\Data
的用法示例。
在下文中一共展示了Data::displayBothPrices方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: displayBothPrices
/**
* Check if we have display prices including and excluding tax
* With corrections for Dynamic prices
*
* @return bool
*/
public function displayBothPrices()
{
$product = $this->getProduct();
if ($product->getPriceType() == \Magento\Bundle\Model\Product\Price::PRICE_TYPE_DYNAMIC && $product->getPriceModel()->getIsPricesCalculatedByIndex() !== false) {
return false;
}
return $this->_taxHelper->displayBothPrices();
}
示例2: afterPrepareAdjustmentConfig
/**
* Get Tax Adjustments for configurable product
*
* @param \Magento\ConfigurableProduct\Pricing\Price\AttributePrice $attribute
* @param array $result
* @return array
*/
public function afterPrepareAdjustmentConfig(\Magento\ConfigurableProduct\Pricing\Price\AttributePrice $attribute, array $result)
{
$product = $result['product'];
$productClassId = $product->getTaxClassId();
$defaultValue = $this->taxCalculationService->getDefaultCalculatedRate($productClassId, $result['customerId']);
$result['defaultTax'] = $defaultValue + $result['defaultTax'];
$currentTax = $this->taxCalculationService->getCalculatedRate($productClassId, $result['customerId']);
$result['currentTax'] = $currentTax + $result['currentTax'];
$adjustment = $product->getPriceInfo()->getAdjustment(\Magento\Tax\Pricing\Adjustment::ADJUSTMENT_CODE);
$result['includeTax'] = $adjustment->isIncludedInBasePrice();
$result['showIncludeTax'] = $this->taxHelper->displayPriceIncludingTax();
$result['showBothPrices'] = $this->taxHelper->displayBothPrices();
return $result;
}
示例3: execute
/**
* Change default JavaScript templates for options rendering
*
* @param \Magento\Framework\Event\Observer $observer
* @return $this
*/
public function execute(\Magento\Framework\Event\Observer $observer)
{
$response = $observer->getEvent()->getResponseObject();
$options = $response->getAdditionalOptions();
$_product = $this->registry->registry('current_product');
if (!$_product) {
return $this;
}
$algorithm = $this->taxData->getCalculationAlgorithm();
$options['calculationAlgorithm'] = $algorithm;
// prepare correct template for options render
if ($this->taxData->displayBothPrices()) {
$options['optionTemplate'] = sprintf('<%%= data.label %%>' . '<%% if (data.finalPrice.value) { %%>' . ' +<%%= data.finalPrice.formatted %%> (%1$s <%%= data.basePrice.formatted %%>)' . '<%% } %%>', __('Excl. tax:'));
} elseif ($this->taxData->priceIncludesTax() && $this->taxData->displayPriceExcludingTax()) {
$options['optionTemplate'] = sprintf('<%%= data.label %%>' . '<%% if (data.basePrice.value) { %%>' . ' +<%%= data.basePrice.formatted %%>' . '<%% } %%>');
}
$response->setAdditionalOptions($options);
return $this;
}
示例4: displayBothPrices
/**
* Define if both prices should be displayed
*
* @return bool
*/
public function displayBothPrices()
{
return $this->taxHelper->displayBothPrices();
}
示例5: isIncludedInDisplayPrice
/**
* Define if adjustment is included in display price
*
* @return bool
*/
public function isIncludedInDisplayPrice()
{
return $this->taxHelper->displayPriceIncludingTax() || $this->taxHelper->displayBothPrices();
}