| 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/controllers/ |
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)
*/
/**
* Sales orders controller
*
* @category Mage
* @package Mage_Sales
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Sales_OrderController extends Mage_Core_Controller_Front_Action
{
/**
* Action predispatch
*
* Check customer authentication for some actions
*/
public function preDispatch()
{
parent::preDispatch();
$action = $this->getRequest()->getActionName();
$loginUrl = Mage::helper('customer')->getLoginUrl();
if (!Mage::getSingleton('customer/session')->authenticate($this, $loginUrl)) {
$this->setFlag('', self::FLAG_NO_DISPATCH, true);
}
}
/**
* Customer order history
*/
public function historyAction()
{
$this->loadLayout();
$this->_initLayoutMessages('catalog/session');
$this->getLayout()->getBlock('head')->setTitle($this->__('My Orders'));
if ($block = $this->getLayout()->getBlock('customer.account.link.back')) {
$block->setRefererUrl($this->_getRefererUrl());
}
$this->renderLayout();
}
/**
* Check order view availability
*
* @param Mage_Sales_Model_Order $order
* @return bool
*/
protected function _canViewOrder($order)
{
$customerId = Mage::getSingleton('customer/session')->getCustomerId();
$availableStates = Mage::getSingleton('sales/order_config')->getVisibleOnFrontStates();
if ($order->getId() && $order->getCustomerId() && ($order->getCustomerId() == $customerId)
&& in_array($order->getState(), $availableStates, $strict = true)
) {
return true;
}
return false;
}
protected function _viewAction()
{
if (!$this->_loadValidOrder()) {
return;
}
$this->loadLayout();
$this->_initLayoutMessages('catalog/session');
if ($navigationBlock = $this->getLayout()->getBlock('customer_account_navigation')) {
$navigationBlock->setActive('sales/order/history');
}
$this->renderLayout();
}
/**
* Try to load valid order by order_id and register it
*
* @param int $orderId
* @return bool
*/
protected function _loadValidOrder($orderId = null)
{
if (null === $orderId) {
$orderId = (int) $this->getRequest()->getParam('order_id');
}
if (!$orderId) {
$this->_forward('noRoute');
return false;
}
$order = Mage::getModel('sales/order')->load($orderId);
if ($this->_canViewOrder($order)) {
Mage::register('current_order', $order);
return true;
}
else {
$this->_redirect('*/*/history');
}
return false;
}
/**
* Order view page
*/
public function viewAction()
{
$this->_viewAction();
}
/**
* Check osCommerce order view availability
*
* @param array $order
* @return bool
*/
protected function _canViewOscommerceOrder($order)
{
$customerId = Mage::getSingleton('customer/session')->getCustomerId();
if (isset($order['osc_magento_id']) && isset($order['magento_customers_id']) && $order['magento_customers_id'] == $customerId) {
return true;
}
return false;
}
/**
* osCommerce Order view page
*/
public function viewOldAction()
{
$orderId = (int) $this->getRequest()->getParam('order_id');
if (!$orderId) {
$this->_forward('noRoute');
return;
}
$order = Mage::getModel('oscommerce/oscommerce')->loadOrderById($orderId);
if ($this->_canViewOscommerceOrder($order['order'])) {
Mage::register('current_oscommerce_order', $order);
$this->loadLayout();
if ($navigationBlock = $this->getLayout()->getBlock('customer_account_navigation')) {
$navigationBlock->setActive('sales/order/history');
}
$this->renderLayout();
}
else {
$this->_redirect('*/*/history');
}
}
public function invoiceAction()
{
$this->_viewAction();
}
public function shipmentAction()
{
$this->_viewAction();
}
public function creditmemoAction()
{
$this->_viewAction();
}
public function reorderAction()
{
if (!$this->_loadValidOrder()) {
return;
}
$order = Mage::registry('current_order');
$cart = Mage::getSingleton('checkout/cart');
$cartTruncated = false;
/* @var $cart Mage_Checkout_Model_Cart */
$items = $order->getItemsCollection();
foreach ($items as $item) {
try {
$cart->addOrderItem($item);
} catch (Mage_Core_Exception $e){
if (Mage::getSingleton('checkout/session')->getUseNotice(true)) {
Mage::getSingleton('checkout/session')->addNotice($e->getMessage());
}
else {
Mage::getSingleton('checkout/session')->addError($e->getMessage());
}
$this->_redirect('*/*/history');
} catch (Exception $e) {
Mage::getSingleton('checkout/session')->addException($e,
Mage::helper('checkout')->__('Cannot add the item to shopping cart.')
);
$this->_redirect('checkout/cart');
}
}
$cart->save();
$this->_redirect('checkout/cart');
}
public function printAction()
{
if (!$this->_loadValidOrder()) {
return;
}
$this->loadLayout('print');
$this->renderLayout();
}
public function printInvoiceAction()
{
$invoiceId = (int) $this->getRequest()->getParam('invoice_id');
if ($invoiceId) {
$invoice = Mage::getModel('sales/order_invoice')->load($invoiceId);
$order = $invoice->getOrder();
} else {
$orderId = (int) $this->getRequest()->getParam('order_id');
$order = Mage::getModel('sales/order')->load($orderId);
}
if ($this->_canViewOrder($order)) {
Mage::register('current_order', $order);
if (isset($invoice)) {
Mage::register('current_invoice', $invoice);
}
$this->loadLayout('print');
$this->renderLayout();
} else {
$this->_redirect('*/*/history');
}
}
public function printShipmentAction()
{
$shipmentId = (int) $this->getRequest()->getParam('shipment_id');
if ($shipmentId) {
$shipment = Mage::getModel('sales/order_shipment')->load($shipmentId);
$order = $shipment->getOrder();
} else {
$orderId = (int) $this->getRequest()->getParam('order_id');
$order = Mage::getModel('sales/order')->load($orderId);
}
if ($this->_canViewOrder($order)) {
Mage::register('current_order', $order);
if (isset($shipment)) {
Mage::register('current_shipment', $shipment);
}
$this->loadLayout('print');
$this->renderLayout();
} else {
$this->_redirect('*/*/history');
}
}
public function printCreditmemoAction()
{
$creditmemoId = (int) $this->getRequest()->getParam('creditmemo_id');
if ($creditmemoId) {
$creditmemo = Mage::getModel('sales/order_creditmemo')->load($creditmemoId);
$order = $creditmemo->getOrder();
} else {
$orderId = (int) $this->getRequest()->getParam('order_id');
$order = Mage::getModel('sales/order')->load($orderId);
}
if ($this->_canViewOrder($order)) {
Mage::register('current_order', $order);
if (isset($creditmemo)) {
Mage::register('current_creditmemo', $creditmemo);
}
$this->loadLayout('print');
$this->renderLayout();
} else {
$this->_redirect('*/*/history');
}
}
}