Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We have installed a plugin called Spranks Configurable Tier Prices. This plugin extends the Mage_Catalog_Model_Product_Type_Configurable_Price model.

Our problem is that when you go to an item that is configurable such as this: http://faithpointdallas.com/gradshop/index.php/shiny-white-high-school-graduation-gown.html

and you add say… 20 of size 39 and 100 of size 42 then everything works as you would want it to (the cart calculates the discount for 120 pieces instead of 20 of one at the 20 pc discount and 100 of one at the 100pc discount).

Here is where the problem comes in. If you are in the cart and you click the item to go back to its details page, the tier price tables that you previously added to cart are disappeared. Here is an image of what i mean:

http://faithpointdallas.com/random/tiermissing.jpg

The plugin only really has one file that controls the model extension and it is at: app/code/community/Spranks/ConfigurableTierPrices/Model/Product/Type/Configurable/Price.php

Here is the contents of Price.php

<?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_Catalog
 * @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)
 */

/**
 * Product type price model
 *
 * @category    Mage
 * @package     Mage_Catalog
 * @author      Magento Core Team <core@magentocommerce.com>
 */
class Spranks_ConfigurableTierPrices_Model_Product_Type_Configurable_Price extends Mage_Catalog_Model_Product_Type_Configurable_Price
{
    /**
     * Get product final price
     *
     * @param   double $qty
     * @param   Mage_Catalog_Model_Product $product
     * @return  double
     */
    public function getFinalPrice($qty=null, $product)
    {
        $finalPrice = parent::getFinalPrice($qty, $product);
        // if tier prices are defined, also adapt them to configurable products
        // example: if a shirt is available in red and black and if you buy 
        // three or more the price is eight euro, you can also buy one red and 
        // two black shirts and you will get the tier price of eight euro.
        // based on https://www.magentocommerce.com/boards/viewthread/10743/
        if ($product->getTierPriceCount() > 0) {
            $tierPrice = $this->_calcConfigProductTierPricing($product);
            if ($tierPrice < $finalPrice) {
                $finalPrice = $tierPrice;
            }
        }
        return $finalPrice;
    }

    /**
     * Get product final price via configurable product's tier pricing structure. 
     * Uses qty of parent item to determine price.
     *
     * @param   Mage_Catalog_Model_Product $product
     * @return  float
     */
    protected function _calcConfigProductTierPricing($product)
    {
        $tierPrice = PHP_INT_MAX;

        if ($items = Mage::getSingleton('checkout/session')->getQuote()->getItemsCollection()) {
            // map mapping the IDs of the parent products with the quantities of the corresponding simple products
            $idQuantities = array();
            // go through all products in the quote
            foreach ($items as $item) {
                if ($item->getParentItem())
                    continue;
                // get the simple products ID
                $productModel = Mage::getModel('catalog/product');
                $id = $productModel->getIdBySku($item->getSku());
                // get the parent IDs
                $configurableProductModel = Mage::getModel('catalog/product_type_configurable');
                $parentIdArray = $configurableProductModel->getParentIdsByChild($id);
                // map the parent ID with the quantities of the simple products
                foreach ($parentIdArray as $parent)
                    $idQuantities[$parent][] = $item->getQty();
            }
            // compute the total quantity of items of the configurable product
            if (array_key_exists($product->getId(), $idQuantities)) {
                $totalQty = array_sum($idQuantities[$product->getId()]);
                $tierPrice = parent::getFinalPrice($totalQty, $product);
            }
        }
        return $tierPrice;
    }

}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.