| 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/awebpaca/boutiques/app/code/core/Mage/Sales/Model/Order/ |
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_Shipment extends Mage_Sales_Model_Abstract
{
const STATUS_NEW = 1;
const XML_PATH_EMAIL_TEMPLATE = 'sales_email/shipment/template';
const XML_PATH_EMAIL_GUEST_TEMPLATE = 'sales_email/shipment/guest_template';
const XML_PATH_EMAIL_IDENTITY = 'sales_email/shipment/identity';
const XML_PATH_EMAIL_COPY_TO = 'sales_email/shipment/copy_to';
const XML_PATH_EMAIL_COPY_METHOD = 'sales_email/shipment/copy_method';
const XML_PATH_EMAIL_ENABLED = 'sales_email/shipment/enabled';
const XML_PATH_UPDATE_EMAIL_TEMPLATE = 'sales_email/shipment_comment/template';
const XML_PATH_UPDATE_EMAIL_GUEST_TEMPLATE = 'sales_email/shipment_comment/guest_template';
const XML_PATH_UPDATE_EMAIL_IDENTITY = 'sales_email/shipment_comment/identity';
const XML_PATH_UPDATE_EMAIL_COPY_TO = 'sales_email/shipment_comment/copy_to';
const XML_PATH_UPDATE_EMAIL_COPY_METHOD = 'sales_email/shipment_comment/copy_method';
const XML_PATH_UPDATE_EMAIL_ENABLED = 'sales_email/shipment_comment/enabled';
const REPORT_DATE_TYPE_ORDER_CREATED = 'order_created';
const REPORT_DATE_TYPE_SHIPMENT_CREATED = 'shipment_created';
protected $_items;
protected $_tracks;
protected $_order;
protected $_comments;
protected $_eventPrefix = 'sales_order_shipment';
protected $_eventObject = 'shipment';
/**
* Initialize shipment resource model
*/
protected function _construct()
{
$this->_init('sales/order_shipment');
}
/**
* Load shipment by increment id
*
* @param string $incrementId
* @return Mage_Sales_Model_Order_Shipment
*/
public function loadByIncrementId($incrementId)
{
$ids = $this->getCollection()
->addAttributeToFilter('increment_id', $incrementId)
->getAllIds();
if (!empty($ids)) {
reset($ids);
$this->load(current($ids));
}
return $this;
}
/**
* Declare order for shipment
*
* @param Mage_Sales_Model_Order $order
* @return Mage_Sales_Model_Order_Shipment
*/
public function setOrder(Mage_Sales_Model_Order $order)
{
$this->_order = $order;
$this->setOrderId($order->getId())
->setStoreId($order->getStoreId());
return $this;
}
/**
* Retrieve hash code of current order
*
* @return string
*/
public function getProtectCode()
{
return (string)$this->getOrder()->getProtectCode();
}
/**
* Retrieve the order the shipment for created for
*
* @return Mage_Sales_Model_Order
*/
public function getOrder()
{
if (!$this->_order instanceof Mage_Sales_Model_Order) {
$this->_order = Mage::getModel('sales/order')->load($this->getOrderId());
}
return $this->_order;
}
/**
* Retrieve billing address
*
* @return Mage_Sales_Model_Order_Address
*/
public function getBillingAddress()
{
return $this->getOrder()->getBillingAddress();
}
/**
* Retrieve shipping address
*
* @return Mage_Sales_Model_Order_Address
*/
public function getShippingAddress()
{
return $this->getOrder()->getShippingAddress();
}
/**
* Register shipment
*
* Apply to order, order items etc.
*
* @return unknown
*/
public function register()
{
if ($this->getId()) {
Mage::throwException(
Mage::helper('sales')->__('Cannot register existing shipment')
);
}
$totalQty = 0;
foreach ($this->getAllItems() as $item) {
if ($item->getQty()>0) {
$item->register();
if (!$item->getOrderItem()->isDummy(true)) {
$totalQty+= $item->getQty();
}
}
else {
$item->isDeleted(true);
}
}
$this->setTotalQty($totalQty);
return $this;
}
public function getItemsCollection()
{
if (empty($this->_items)) {
$this->_items = Mage::getResourceModel('sales/order_shipment_item_collection')
->setShipmentFilter($this->getId());
if ($this->getId()) {
foreach ($this->_items as $item) {
$item->setShipment($this);
}
}
}
return $this->_items;
}
public function getAllItems()
{
$items = array();
foreach ($this->getItemsCollection() as $item) {
if (!$item->isDeleted()) {
$items[] = $item;
}
}
return $items;
}
public function getItemById($itemId)
{
foreach ($this->getItemsCollection() as $item) {
if ($item->getId()==$itemId) {
return $item;
}
}
return false;
}
public function addItem(Mage_Sales_Model_Order_Shipment_Item $item)
{
$item->setShipment($this)
->setParentId($this->getId())
->setStoreId($this->getStoreId());
if (!$item->getId()) {
$this->getItemsCollection()->addItem($item);
}
return $this;
}
public function getTracksCollection()
{
if (empty($this->_tracks)) {
$this->_tracks = Mage::getResourceModel('sales/order_shipment_track_collection')
->setShipmentFilter($this->getId());
if ($this->getId()) {
foreach ($this->_tracks as $track) {
$track->setShipment($this);
}
}
}
return $this->_tracks;
}
public function getAllTracks()
{
$tracks = array();
foreach ($this->getTracksCollection() as $track) {
if (!$track->isDeleted()) {
$tracks[] = $track;
}
}
return $tracks;
}
public function getTrackById($trackId)
{
foreach ($this->getTracksCollection() as $track) {
if ($track->getId()==$trackId) {
return $track;
}
}
return false;
}
public function addTrack(Mage_Sales_Model_Order_Shipment_Track $track)
{
$track->setShipment($this)
->setParentId($this->getId())
->setOrderId($this->getOrderId())
->setStoreId($this->getStoreId());
if (!$track->getId()) {
$this->getTracksCollection()->addItem($track);
}
return $this;
}
public function addComment($comment, $notify=false)
{
if (!($comment instanceof Mage_Sales_Model_Order_Shipment_Comment)) {
$comment = Mage::getModel('sales/order_shipment_comment')
->setComment($comment)
->setIsCustomerNotified($notify);
}
$comment->setShipment($this)
->setParentId($this->getId())
->setStoreId($this->getStoreId());
if (!$comment->getId()) {
$this->getCommentsCollection()->addItem($comment);
}
return $this;
}
public function getCommentsCollection($reload=false)
{
if (is_null($this->_comments) || $reload) {
$this->_comments = Mage::getResourceModel('sales/order_shipment_comment_collection')
->setShipmentFilter($this->getId())
->setCreatedAtOrder();
/**
* When shipment created with adding comment, comments collection must be loaded before we added this comment.
*/
$this->_comments->load();
if ($this->getId()) {
foreach ($this->_comments as $comment) {
$comment->setShipment($this);
}
}
}
return $this->_comments;
}
/**
* Sending email with Invoice data
*
* @return Mage_Sales_Model_Order_Invoice
*/
public function sendEmail($notifyCustomer=true, $comment='')
{
if (!Mage::helper('sales')->canSendNewShipmentEmail($this->getOrder()->getStore()->getId())) {
return $this;
}
$currentDesign = Mage::getDesign()->setAllGetOld(array(
'package' => Mage::getStoreConfig('design/package/name', $this->getStoreId()),
'store' => $this->getStoreId()
));
$translate = Mage::getSingleton('core/translate');
/* @var $translate Mage_Core_Model_Translate */
$translate->setTranslateInline(false);
$order = $this->getOrder();
$copyTo = $this->_getEmails(self::XML_PATH_EMAIL_COPY_TO);
$copyMethod = Mage::getStoreConfig(self::XML_PATH_EMAIL_COPY_METHOD, $this->getStoreId());
if (!$notifyCustomer && !$copyTo) {
return $this;
}
$paymentBlock = Mage::helper('payment')->getInfoBlock($order->getPayment())
->setIsSecureMode(true);
$paymentBlock->getMethod()->setStore($order->getStore()->getId());
$mailTemplate = Mage::getModel('core/email_template');
if ($order->getCustomerIsGuest()) {
$template = Mage::getStoreConfig(self::XML_PATH_EMAIL_GUEST_TEMPLATE, $order->getStoreId());
$customerName = $order->getBillingAddress()->getName();
} else {
$template = Mage::getStoreConfig(self::XML_PATH_EMAIL_TEMPLATE, $order->getStoreId());
$customerName = $order->getCustomerName();
}
if ($notifyCustomer) {
$sendTo[] = array(
'name' => $customerName,
'email' => $order->getCustomerEmail()
);
if ($copyTo && $copyMethod == 'bcc') {
foreach ($copyTo as $email) {
$mailTemplate->addBcc($email);
}
}
}
if ($copyTo && ($copyMethod == 'copy' || !$notifyCustomer)) {
foreach ($copyTo as $email) {
$sendTo[] = array(
'name' => null,
'email' => $email
);
}
}
foreach ($sendTo as $recipient) {
$mailTemplate->setDesignConfig(array('area'=>'frontend', 'store'=>$order->getStoreId()))
->sendTransactional(
$template,
Mage::getStoreConfig(self::XML_PATH_EMAIL_IDENTITY, $order->getStoreId()),
$recipient['email'],
$recipient['name'],
array(
'order' => $order,
'shipment' => $this,
'comment' => $comment,
'billing' => $order->getBillingAddress(),
'payment_html'=> $paymentBlock->toHtml(),
)
);
}
$translate->setTranslateInline(true);
Mage::getDesign()->setAllGetOld($currentDesign);
return $this;
}
/**
* Sending email with Shipment update information
*
* @return Mage_Sales_Model_Order_Shipment
*/
public function sendUpdateEmail($notifyCustomer = true, $comment='')
{
if (!Mage::helper('sales')->canSendShipmentCommentEmail($this->getOrder()->getStore()->getId())) {
return $this;
}
$currentDesign = Mage::getDesign()->setAllGetOld(array(
'package' => Mage::getStoreConfig('design/package/name', $this->getStoreId()),
));
$translate = Mage::getSingleton('core/translate');
/* @var $translate Mage_Core_Model_Translate */
$translate->setTranslateInline(false);
$order = $this->getOrder();
$copyTo = $this->_getEmails(self::XML_PATH_UPDATE_EMAIL_COPY_TO);
$copyMethod = Mage::getStoreConfig(self::XML_PATH_UPDATE_EMAIL_COPY_METHOD, $this->getStoreId());
if (!$notifyCustomer && !$copyTo) {
return $this;
}
$mailTemplate = Mage::getModel('core/email_template');
if ($order->getCustomerIsGuest()) {
$template = Mage::getStoreConfig(self::XML_PATH_UPDATE_EMAIL_GUEST_TEMPLATE, $order->getStoreId());
$customerName = $order->getBillingAddress()->getName();
} else {
$template = Mage::getStoreConfig(self::XML_PATH_UPDATE_EMAIL_TEMPLATE, $order->getStoreId());
$customerName = $order->getCustomerName();
}
if ($notifyCustomer) {
$sendTo[] = array(
'name' => $customerName,
'email' => $order->getCustomerEmail()
);
if ($copyTo && $copyMethod == 'bcc') {
foreach ($copyTo as $email) {
$mailTemplate->addBcc($email);
}
}
}
if ($copyTo && ($copyMethod == 'copy' || !$notifyCustomer)) {
foreach ($copyTo as $email) {
$sendTo[] = array(
'name' => null,
'email' => $email
);
}
}
foreach ($sendTo as $recipient) {
$mailTemplate->setDesignConfig(array('area'=>'frontend', 'store'=>$order->getStoreId()))
->sendTransactional(
$template,
Mage::getStoreConfig(self::XML_PATH_UPDATE_EMAIL_IDENTITY, $order->getStoreId()),
$recipient['email'],
$recipient['name'],
array(
'order' => $order,
'billing' => $order->getBillingAddress(),
'shipment'=> $this,
'comment' => $comment
)
);
}
$translate->setTranslateInline(true);
Mage::getDesign()->setAllGetOld($currentDesign);
return $this;
}
protected function _getEmails($configPath)
{
$data = Mage::getStoreConfig($configPath, $this->getStoreId());
if (!empty($data)) {
return explode(',', $data);
}
return false;
}
/**
* Before object save
*
* @return Mage_Sales_Model_Order_Shipment
*/
protected function _beforeSave()
{
if ((!$this->getId() || null !== $this->_items) && !count($this->getAllItems())) {
Mage::throwException(
Mage::helper('sales')->__('Cannot create an empty shipment.')
);
}
if (!$this->getOrderId() && $this->getOrder()) {
$this->setOrderId($this->getOrder()->getId());
$this->setShippingAddressId($this->getOrder()->getShippingAddress()->getId());
}
return parent::_beforeSave();
}
protected function _beforeDelete()
{
$this->_protectFromNonAdmin();
return parent::_beforeDelete();
}
/**
* After object save manipulations
*
* @return Mage_Sales_Model_Order_Shipment
*/
protected function _afterSave()
{
if (null !== $this->_items) {
foreach ($this->_items as $item) {
$item->save();
}
}
if (null !== $this->_tracks) {
foreach($this->_tracks as $track) {
$track->save();
}
}
if (null !== $this->_comments) {
foreach($this->_comments as $comment) {
$comment->save();
}
}
return parent::_afterSave();
}
/**
* Retrieve store model instance
*
* @return Mage_Core_Model_Store
*/
public function getStore()
{
return $this->getOrder()->getStore();
}
}