| 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/Bundle/Block/Sales/Order/Items/ |
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_Bundle
* @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)
*/
/**
* Order item render block
*
* @category Mage
* @package Mage_Bundle
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Bundle_Block_Sales_Order_Items_Renderer extends Mage_Sales_Block_Order_Item_Renderer_Default
{
public function isShipmentSeparately($item = null)
{
if ($item) {
if ($item->getOrderItem()) {
$item = $item->getOrderItem();
}
if ($parentItem = $item->getParentItem()) {
if ($options = $parentItem->getProductOptions()) {
if (isset($options['shipment_type']) && $options['shipment_type'] == Mage_Catalog_Model_Product_Type_Abstract::SHIPMENT_SEPARATELY) {
return true;
} else {
return false;
}
}
} else {
if ($options = $item->getProductOptions()) {
if (isset($options['shipment_type']) && $options['shipment_type'] == Mage_Catalog_Model_Product_Type_Abstract::SHIPMENT_SEPARATELY) {
return false;
} else {
return true;
}
}
}
}
if ($options = $this->getOrderItem()->getProductOptions()) {
if (isset($options['shipment_type']) && $options['shipment_type'] == Mage_Catalog_Model_Product_Type_Abstract::SHIPMENT_SEPARATELY) {
return true;
}
}
return false;
}
public function isChildCalculated($item = null)
{
if ($item) {
if ($item->getOrderItem()) {
$item = $item->getOrderItem();
}
if ($parentItem = $item->getParentItem()) {
if ($options = $parentItem->getProductOptions()) {
if (isset($options['product_calculations']) && $options['product_calculations'] == Mage_Catalog_Model_Product_Type_Abstract::CALCULATE_CHILD) {
return true;
} else {
return false;
}
}
} else {
if ($options = $item->getProductOptions()) {
if (isset($options['product_calculations']) && $options['product_calculations'] == Mage_Catalog_Model_Product_Type_Abstract::CALCULATE_CHILD) {
return false;
} else {
return true;
}
}
}
}
if ($options = $this->getOrderItem()->getProductOptions()) {
if (isset($options['product_calculations'])
&& $options['product_calculations'] == Mage_Catalog_Model_Product_Type_Abstract::CALCULATE_CHILD) {
return true;
}
}
return false;
}
public function getSelectionAttributes($item) {
if ($item instanceof Mage_Sales_Model_Order_Item) {
$options = $item->getProductOptions();
} else {
$options = $item->getOrderItem()->getProductOptions();
}
if (isset($options['bundle_selection_attributes'])) {
return unserialize($options['bundle_selection_attributes']);
}
return null;
}
public function getValueHtml($item)
{
if ($attributes = $this->getSelectionAttributes($item)) {
return sprintf('%d', $attributes['qty']) . ' x ' .
$this->htmlEscape($item->getName()) .
" " . $this->getOrder()->formatPrice($attributes['price']);
} else {
return $this->htmlEscape($item->getName());
}
}
/**
* Getting all available childs for Invoice, Shipmen or Creditmemo item
*
* @param Varien_Object $item
* @return array
*/
public function getChilds($item)
{
$_itemsArray = array();
if ($item instanceof Mage_Sales_Model_Order_Invoice_Item) {
$_items = $item->getInvoice()->getAllItems();
} else if ($item instanceof Mage_Sales_Model_Order_Shipment_Item) {
$_items = $item->getShipment()->getAllItems();
} else if ($item instanceof Mage_Sales_Model_Order_Creditmemo_Item) {
$_items = $item->getCreditmemo()->getAllItems();
}
if ($_items) {
foreach ($_items as $_item) {
if ($parentItem = $_item->getOrderItem()->getParentItem()) {
$_itemsArray[$parentItem->getId()][$_item->getOrderItemId()] = $_item;
} else {
$_itemsArray[$_item->getOrderItem()->getId()][$_item->getOrderItemId()] = $_item;
}
}
}
if (isset($_itemsArray[$item->getOrderItem()->getId()])) {
return $_itemsArray[$item->getOrderItem()->getId()];
} else {
return null;
}
}
public function canShowPriceInfo($item)
{
if (($item->getOrderItem()->getParentItem() && $this->isChildCalculated())
|| (!$item->getOrderItem()->getParentItem() && !$this->isChildCalculated())) {
return true;
}
return false;
}
}