本文整理汇总了PHP中Mage::getHelper方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage::getHelper方法的具体用法?PHP Mage::getHelper怎么用?PHP Mage::getHelper使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage
的用法示例。
在下文中一共展示了Mage::getHelper方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: collect
public function collect(Mage_Sales_Model_Order_Invoice $invoice)
{
$order = $invoice->getOrder();
$store = $order->getStore();
$invoiceTaxClass = Mage::getHelper('billmateinvoice')->getInvoiceTaxClass($store);
$custTaxClassId = $order->getQuote()->getCustomerTaxClassId();
$address = $order->getBillingAddress();
$taxCalculationModel = Mage::getSingleton('tax/calculation');
/* @var $taxCalculationModel Mage_Tax_Model_Calculation */
$request = $taxCalculationModel->getRateRequest($invoice, $order->getQuote()->getBillingAddress(), $custTaxClassId, $store);
if ($invoiceTaxClass) {
if ($rate = $taxCalculationModel->getRate($request->setProductClassId($invoiceTaxClass))) {
if (!Mage::helper('billmateinvoice')->InvoicePriceIncludesTax()) {
$InvoiceTax = $invoice->getFeeAmount() * $rate / 100;
$InvoiceBaseTax = $invoice->getBaseFeeAmount() * $rate / 100;
} else {
$InvoiceTax = $invoice->getPaymentTaxAmount();
$InvoiceBaseTax = $invoice->getBasePaymentTaxAmount();
}
$InvoiceTax = $store->roundPrice($InvoiceTax);
$InvoiceBaseTax = $store->roundPrice($InvoiceBaseTax);
$invoice->setTaxAmount($invoice->getTaxAmount() + $InvoiceTax);
$invoice->setBaseTaxAmount($invoice->getBaseTaxAmount() + $InvoiceBaseTax);
$this->_saveAppliedTaxes($invoice, $taxCalculationModel->getAppliedRates($request), $InvoiceTax, $InvoiceBaseTax, $rate);
}
}
if (!Mage::helper('billmateinvoice')->InvoicePriceIncludesTax()) {
$invoice->setInvoiceTaxAmount($InvoiceTax);
$invoice->setBaseInvoiceTaxAmount($InvoiceBaseTax);
}
$invoice->setGrandTotal($invoice->getGrandTotal() + $invoice->getPaymentTaxAmount());
$invoice->setBaseGrandTotal($invoice->getBaseGrandTotal() + $invoice->getBasePaymentTaxAmount());
return $this;
}
示例2: displayPageHandels
public function displayPageHandels(Varien_Event_Observer $observer)
{
Mage::log('in observer!!!');
$handels = Mage::getHelper('ctntools_hints/data')->getPageHandels();
$handels = implode("\n", $handels);
$handels = '<!-- ' . $handels . '-->';
echo $handels;
return true;
}