| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/boutiques/app/code/core/Mage/Sales/Model/Order/Invoice/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Sales
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
class Mage_Sales_Model_Order_Invoice_Item extends Mage_Core_Model_Abstract
{
protected $_eventPrefix = 'sales_invoice_item';
protected $_eventObject = 'invoice_item';
protected $_invoice = null;
protected $_orderItem = null;
/**
* Initialize resource model
*/
function _construct()
{
$this->_init('sales/order_invoice_item');
}
/**
* Declare invoice instance
*
* @param Mage_Sales_Model_Order_Invoice $invoice
* @return Mage_Sales_Model_Order_Invoice_Item
*/
public function setInvoice(Mage_Sales_Model_Order_Invoice $invoice)
{
$this->_invoice = $invoice;
return $this;
}
/**
* Retrieve invoice instance
*
* @return Mage_Sales_Model_Order_Invoice
*/
public function getInvoice()
{
return $this->_invoice;
}
/**
* Declare order item instance
*
* @param Mage_Sales_Model_Order_Item $item
* @return Mage_Sales_Model_Order_Invoice_Item
*/
public function setOrderItem(Mage_Sales_Model_Order_Item $item)
{
$this->_orderItem = $item;
$this->setOrderItemId($item->getId());
return $this;
}
/**
* Retrieve order item instance
*
* @return Mage_Sales_Model_Order_Item
*/
public function getOrderItem()
{
if (is_null($this->_orderItem)) {
if ($this->getInvoice()) {
$this->_orderItem = $this->getInvoice()->getOrder()->getItemById($this->getOrderItemId());
}
else {
$this->_orderItem = Mage::getModel('sales/order_item')
->load($this->getOrderItemId());
}
}
return $this->_orderItem;
}
/**
* Declare qty
*
* @param float $qty
* @return Mage_Sales_Model_Order_Invoice_Item
*/
public function setQty($qty)
{
if ($this->getOrderItem()->getIsQtyDecimal()) {
$qty = (float) $qty;
}
else {
$qty = (int) $qty;
}
$qty = $qty > 0 ? $qty : 0;
/**
* Check qty availability
*/
$qtyToInvoice = sprintf("%F", $this->getOrderItem()->getQtyToInvoice());
$qty = sprintf("%F", $qty);
if ($qty <= $qtyToInvoice || $this->getOrderItem()->isDummy()) {
$this->setData('qty', $qty);
}
else {
Mage::throwException(
Mage::helper('sales')->__('Invalid qty to invoice item "%s"', $this->getName())
);
}
return $this;
}
/**
* Applying qty to order item
*
* @return Mage_Sales_Model_Order_Invoice_Item
*/
public function register()
{
$orderItem = $this->getOrderItem();
$orderItem->setQtyInvoiced($orderItem->getQtyInvoiced()+$this->getQty());
$orderItem->setTaxInvoiced($orderItem->getTaxInvoiced()+$this->getTaxAmount());
$orderItem->setBaseTaxInvoiced($orderItem->getBaseTaxInvoiced()+$this->getBaseTaxAmount());
$orderItem->setHiddenTaxInvoiced($orderItem->getHiddenTaxInvoiced()+$this->getHiddenTaxAmount());
$orderItem->setBaseHiddenTaxInvoiced($orderItem->getBaseHiddenTaxInvoiced()+$this->getBaseHiddenTaxAmount());
$orderItem->setDiscountInvoiced($orderItem->getDiscountInvoiced()+$this->getDiscountAmount());
$orderItem->setBaseDiscountInvoiced($orderItem->getBaseDiscountInvoiced()+$this->getBaseDiscountAmount());
$orderItem->setRowInvoiced($orderItem->getRowInvoiced()+$this->getRowTotal());
$orderItem->setBaseRowInvoiced($orderItem->getBaseRowInvoiced()+$this->getBaseRowTotal());
return $this;
}
/**
* Cancelling invoice item
*
* @return Mage_Sales_Model_Order_Invoice_Item
*/
public function cancel()
{
$orderItem = $this->getOrderItem();
$orderItem->setQtyInvoiced($orderItem->getQtyInvoiced()-$this->getQty());
$orderItem->setTaxInvoiced($orderItem->getTaxInvoiced()-$this->getTaxAmount());
$orderItem->setBaseTaxInvoiced($orderItem->getBaseTaxInvoiced()-$this->getBaseTaxAmount());
$orderItem->setHiddenTaxInvoiced($orderItem->getHiddenTaxInvoiced()-$this->getHiddenTaxAmount());
$orderItem->setBaseHiddenTaxInvoiced($orderItem->getBaseHiddenTaxInvoiced()-$this->getBaseHiddenTaxAmount());
$orderItem->setDiscountInvoiced($orderItem->getDiscountInvoiced()-$this->getDiscountAmount());
$orderItem->setBaseDiscountInvoiced($orderItem->getBaseDiscountInvoiced()-$this->getBaseDiscountAmount());
$orderItem->setRowInvoiced($orderItem->getRowInvoiced()-$this->getRowTotal());
$orderItem->setBaseRowInvoiced($orderItem->getBaseRowInvoiced()-$this->getBaseRowTotal());
return $this;
}
/**
* Invoice item row total calculation
*
* @return Mage_Sales_Model_Order_Invoice_Item
*/
public function calcRowTotal()
{
$store = $this->getInvoice()->getStore();
$orderItem = $this->getOrderItem();
$orderItemQty = $orderItem->getQtyOrdered();
$rowTotal = $orderItem->getRowTotal();
$baseRowTotal = $orderItem->getBaseRowTotal();
$rowTotalInclTax = $orderItem->getRowTotalInclTax();
$baseRowTotalInclTax= $orderItem->getBaseRowTotalInclTax();
$rowTotal = $rowTotal/$orderItemQty*$this->getQty();
$baseRowTotal = $baseRowTotal/$orderItemQty*$this->getQty();
$this->setRowTotal($store->roundPrice($rowTotal));
$this->setBaseRowTotal($store->roundPrice($baseRowTotal));
if ($rowTotalInclTax && $baseRowTotalInclTax) {
$this->setRowTotalInclTax($store->roundPrice($rowTotalInclTax/$orderItemQty*$this->getQty()));
$this->setBaseRowTotalInclTax($store->roundPrice($baseRowTotalInclTax/$orderItemQty*$this->getQty()));
}
return $this;
}
/**
* Checking if the item is last
*
* @return bool
*/
public function isLast()
{
if ((string)(float)$this->getQty() == (string)(float)$this->getOrderItem()->getQtyToInvoice()) {
return true;
}
return false;
}
/**
* Before object save
*
* @return Mage_Sales_Model_Order_Invoice_Item
*/
protected function _beforeSave()
{
parent::_beforeSave();
if (!$this->getParentId() && $this->getInvoice()) {
$this->setParentId($this->getInvoice()->getId());
}
return $this;
}
/**
* After object save
*
* @return Mage_Sales_Model_Order_Invoice_Item
*/
protected function _afterSave()
{
if (null ==! $this->_orderItem) {
$this->_orderItem->save();
}
parent::_afterSave();
return $this;
}
}