本文整理汇总了PHP中Mage_Tax_Model_Config::displaySalesSubtotalBoth方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Tax_Model_Config::displaySalesSubtotalBoth方法的具体用法?PHP Mage_Tax_Model_Config::displaySalesSubtotalBoth怎么用?PHP Mage_Tax_Model_Config::displaySalesSubtotalBoth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Tax_Model_Config
的用法示例。
在下文中一共展示了Mage_Tax_Model_Config::displaySalesSubtotalBoth方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _initSubtotal
protected function _initSubtotal()
{
$store = $this->getStore();
$parent = $this->getParentBlock();
$subtotal = $parent->getTotal('subtotal');
if (!$subtotal) {
return $this;
}
if ($this->_config->displaySalesSubtotalBoth($store)) {
$subtotal = (double) $this->_source->getSubtotal();
$baseSubtotal = (double) $this->_source->getBaseSubtotal();
$subtotalIncl = (double) $this->_source->getSubtotalInclTax();
$baseSubtotalIncl = (double) $this->_source->getBaseSubtotalInclTax();
if (!$subtotalIncl || !$baseSubtotalIncl) {
//Calculate the subtotal if not set
$subtotalIncl = $subtotal + $this->_source->getTaxAmount() - $this->_source->getShippingTaxAmount();
$baseSubtotalIncl = $baseSubtotal + $this->_source->getBaseTaxAmount() - $this->_source->getBaseShippingTaxAmount();
if ($this->_source instanceof Mage_Sales_Model_Order) {
//Adjust the discount amounts for the base and well as the weee to display the right totals
foreach ($this->_source->getAllItems() as $item) {
$subtotalIncl += $item->getHiddenTaxAmount() + $item->getDiscountAppliedForWeeeTax();
$baseSubtotalIncl += $item->getBaseHiddenTaxAmount() + $item->getBaseDiscountAppliedForWeeeTax();
}
}
}
$subtotalIncl = max(0, $subtotalIncl);
$baseSubtotalIncl = max(0, $baseSubtotalIncl);
$totalExcl = new Varien_Object(array('code' => 'subtotal_excl', 'value' => $subtotal, 'base_value' => $baseSubtotal, 'label' => $this->__('Subtotal (Excl.Tax)')));
$totalIncl = new Varien_Object(array('code' => 'subtotal_incl', 'value' => $subtotalIncl, 'base_value' => $baseSubtotalIncl, 'label' => $this->__('Subtotal (Incl.Tax)')));
$parent->addTotal($totalExcl, 'subtotal');
$parent->addTotal($totalIncl, 'subtotal_excl');
$parent->removeTotal('subtotal');
} elseif ($this->_config->displaySalesSubtotalInclTax($store)) {
$subtotalIncl = (double) $this->_source->getSubtotalInclTax();
$baseSubtotalIncl = (double) $this->_source->getBaseSubtotalInclTax();
if (!$subtotalIncl) {
$subtotalIncl = $this->_source->getSubtotal() + $this->_source->getTaxAmount() - $this->_source->getShippingTaxAmount();
}
if (!$baseSubtotalIncl) {
$baseSubtotalIncl = $this->_source->getBaseSubtotal() + $this->_source->getBaseTaxAmount() - $this->_source->getBaseShippingTaxAmount();
}
$total = $parent->getTotal('subtotal');
if ($total) {
$total->setValue(max(0, $subtotalIncl));
$total->setBaseValue(max(0, $baseSubtotalIncl));
}
}
return $this;
}
示例2: _initSubtotal
protected function _initSubtotal()
{
$store = $this->getStore();
$parent = $this->getParentBlock();
$subtotal = $parent->getTotal('subtotal');
if (!$subtotal) {
return $this;
}
if ($this->_config->displaySalesSubtotalBoth($store)) {
$subtotal = (double) $this->_source->getSubtotal();
$baseSubtotal = (double) $this->_source->getBaseSubtotal();
$subtotalIncl = (double) $this->_source->getSubtotalInclTax();
$baseSubtotalIncl = (double) $this->_source->getBaseSubtotalInclTax();
if (!$subtotalIncl) {
$subtotalIncl = $subtotal + $this->_source->getTaxAmount() - $this->_source->getShippingTaxAmount();
}
if (!$baseSubtotalIncl) {
$baseSubtotalIncl = $baseSubtotal + $this->_source->getBaseTaxAmount() - $this->_source->getBaseShippingTaxAmount();
}
$subtotalIncl = max(0, $subtotalIncl);
$baseSubtotalIncl = max(0, $baseSubtotalIncl);
$totalExcl = new Varien_Object(array('code' => 'subtotal_excl', 'value' => $subtotal, 'base_value' => $baseSubtotal, 'label' => $this->__('Subtotal (Excl.Tax)')));
$totalIncl = new Varien_Object(array('code' => 'subtotal_incl', 'value' => $subtotalIncl, 'base_value' => $baseSubtotalIncl, 'label' => $this->__('Subtotal (Incl.Tax)')));
$parent->addTotal($totalExcl, 'subtotal');
$parent->addTotal($totalIncl, 'subtotal_excl');
$parent->removeTotal('subtotal');
} elseif ($this->_config->displaySalesSubtotalInclTax($store)) {
$subtotalIncl = (double) $this->_source->getSubtotalInclTax();
$baseSubtotalIncl = (double) $this->_source->getBaseSubtotalInclTax();
if (!$subtotalIncl) {
$subtotalIncl = $this->_source->getSubtotal() + $this->_source->getTaxAmount() - $this->_source->getShippingTaxAmount();
}
if (!$baseSubtotalIncl) {
$baseSubtotalIncl = $this->_source->getBaseSubtotal() + $this->_source->getBaseTaxAmount() - $this->_source->getBaseShippingTaxAmount();
}
$total = $parent->getTotal('subtotal');
if ($total) {
$total->setValue(max(0, $subtotalIncl));
$total->setBaseValue(max(0, $baseSubtotalIncl));
}
}
return $this;
}
示例3: displaySalesSubtotalBoth
/**
* Check if we need display price include and exclude tax for order/invoice subtotal
*
* @param mixed $store
* @return bool
*/
public function displaySalesSubtotalBoth($store = null)
{
return $this->_config->displaySalesSubtotalBoth($store);
}
示例4: displaySalesSubtotalBoth
/**
* Check if display sales subtotal include and exclude tax
*
* @param mixed $store
* @return bool
*/
public function displaySalesSubtotalBoth($store = null)
{
if ($this->_getDataHelper()->isAvataxEnabled($store)) {
return false;
}
return parent::displaySalesSubtotalBoth($store);
}