本文整理汇总了PHP中Mage_Sales_Model_Order_Invoice::getBaseShippingAmount方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Sales_Model_Order_Invoice::getBaseShippingAmount方法的具体用法?PHP Mage_Sales_Model_Order_Invoice::getBaseShippingAmount怎么用?PHP Mage_Sales_Model_Order_Invoice::getBaseShippingAmount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Sales_Model_Order_Invoice
的用法示例。
在下文中一共展示了Mage_Sales_Model_Order_Invoice::getBaseShippingAmount方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _addShipping
/**
* Adds shipping cost to request as item
*
* @param Mage_Sales_Model_Order_Invoice|Mage_Sales_Model_Order_Creditmemo $object
* @param bool $credit
* @return int|bool
*/
protected function _addShipping($object, $credit = false)
{
if ($object->getBaseShippingAmount() == 0) {
return false;
}
$order = $object->getOrder();
$lineNumber = $this->_getNewLineCode();
$storeId = $object->getStore()->getId();
$taxClass = Mage::helper('tax')->getShippingTaxClass($storeId);
$line = $this->_getNewDocumentRequestLineObject();
$amount = $object->getBaseShippingAmount();
if ($this->_getTaxDataHelper()->priceIncludesTax($storeId)) {
$amount = (double) $object->getBaseShippingInclTax();
$line->setTaxIncluded('true');
}
if ($this->_getTaxDataHelper()->applyTaxAfterDiscount($storeId)) {
$amount -= (double) $order->getBaseShippingDiscountAmount();
}
//@startSkipCommitHooks
$amount = $credit ? -1 * $amount : $amount;
//@finishSkipCommitHooks
$line->setLineCode($lineNumber);
$shippingSku = $this->_getConfigHelper()->getShippingSku($storeId);
$line->setItemCode($shippingSku ? $shippingSku : self::DEFAULT_SHIPPING_ITEMS_SKU);
$line->setItemDescription(self::DEFAULT_SHIPPING_ITEMS_DESCRIPTION);
$line->setAvalaraGoodsAndServicesType($taxClass);
$line->setNumberOfItems(1);
$line->setlineAmount($amount);
$discounted = (double) $order->getBaseShippingDiscountAmount() && $this->_getTaxDataHelper()->applyTaxAfterDiscount($storeId) ? 'true' : 'false';
$line->setDiscounted($discounted);
$this->_lineToItemId[$lineNumber] = $shippingSku;
$this->_lines[$lineNumber] = $line;
$this->_setLinesToRequest();
return $lineNumber;
}
示例2: cancelInvoice
/**
* Cancel specified invoice: update self totals from it
*
* @param Mage_Sales_Model_Order_Invoice $invoice
* @return Mage_Sales_Model_Order_Payment
*/
public function cancelInvoice($invoice)
{
$this->_updateTotals(array('amount_paid' => -1 * $invoice->getGrandTotal(), 'base_amount_paid' => -1 * $invoice->getBaseGrandTotal(), 'shipping_captured' => -1 * $invoice->getShippingAmount(), 'base_shipping_captured' => -1 * $invoice->getBaseShippingAmount()));
Mage::dispatchEvent('sales_order_payment_cancel_invoice', array('payment' => $this, 'invoice' => $invoice));
return $this;
}
示例3: _addShipping
/**
* Adds shipping cost to request as item
*
* @param Mage_Sales_Model_Order_Invoice|Mage_Sales_Model_Order_Creditmemo $object
* @param bool $credit
* @return int|bool
*/
protected function _addShipping($object, $credit = false)
{
if ($object->getBaseShippingAmount() == 0) {
return false;
}
$lineNumber = count($this->_lines);
$storeId = $object->getStore()->getId();
$taxClass = Mage::helper('tax')->getShippingTaxClass($storeId);
$amount = $object->getBaseShippingAmount();
if ($credit) {
//@startSkipCommitHooks
$amount *= -1;
//@finishSkipCommitHooks
}
$line = new Line();
$line->setNo($lineNumber);
$line->setItemCode(Mage::helper('avatax')->getShippingSku($storeId));
$line->setDescription('Shipping costs');
$line->setTaxCode($taxClass);
$line->setQty(1);
$line->setAmount($amount);
$line->setDiscounted(false);
$this->_lineToItemId[$lineNumber] = 'shipping';
$this->_lines[$lineNumber] = $line;
$this->_request->setLines($this->_lines);
return $lineNumber;
}