1: <?php
2: /**
3: * Magento
4: *
5: * NOTICE OF LICENSE
6: *
7: * This source file is subject to the Open Software License (OSL 3.0)
8: * that is bundled with this package in the file LICENSE.txt.
9: * It is also available through the world-wide-web at this URL:
10: * http://opensource.org/licenses/osl-3.0.php
11: * If you did not receive a copy of the license and are unable to
12: * obtain it through the world-wide-web, please send an email
13: * to license@magentocommerce.com so we can send you a copy immediately.
14: *
15: * DISCLAIMER
16: *
17: * Do not edit or add to this file if you wish to upgrade Magento to newer
18: * versions in the future. If you wish to customize Magento for your
19: * needs please refer to http://www.magentocommerce.com for more information.
20: *
21: * @category Mage
22: * @package Mage_Catalog
23: * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24: * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25: */
26:
27: /**
28: * Catalog Product tier price api V2
29: *
30: * @category Mage
31: * @package Mage_Catalog
32: * @author Magento Core Team <core@magentocommerce.com>
33: */
34: class Mage_Catalog_Model_Product_Attribute_Tierprice_Api_V2 extends Mage_Catalog_Model_Product_Attribute_Tierprice_Api
35: {
36: /**
37: * Prepare tier prices for save
38: *
39: * @param Mage_Catalog_Model_Product $product
40: * @param array $tierPrices
41: * @return array
42: */
43: public function prepareTierPrices($product, $tierPrices = null)
44: {
45: if (!is_array($tierPrices)) {
46: return null;
47: }
48:
49: $updateValue = array();
50:
51: foreach ($tierPrices as $tierPrice) {
52: if (!is_object($tierPrice)
53: || !isset($tierPrice->qty)
54: || !isset($tierPrice->price)) {
55: $this->_fault('data_invalid', Mage::helper('catalog')->__('Invalid Tier Prices'));
56: }
57:
58: if (!isset($tierPrice->website) || $tierPrice->website == 'all') {
59: $tierPrice->website = 0;
60: } else {
61: try {
62: $tierPrice->website = Mage::app()->getWebsite($tierPrice->website)->getId();
63: } catch (Mage_Core_Exception $e) {
64: $tierPrice->website = 0;
65: }
66: }
67:
68: if (intval($tierPrice->website) > 0 && !in_array($tierPrice->website, $product->getWebsiteIds())) {
69: $this->_fault('data_invalid', Mage::helper('catalog')->__('Invalid tier prices. The product is not associated to the requested website.'));
70: }
71:
72: if (!isset($tierPrice->customer_group_id)) {
73: $tierPrice->customer_group_id = 'all';
74: }
75:
76: if ($tierPrice->customer_group_id == 'all') {
77: $tierPrice->customer_group_id = Mage_Customer_Model_Group::CUST_GROUP_ALL;
78: }
79:
80: $updateValue[] = array(
81: 'website_id' => $tierPrice->website,
82: 'cust_group' => $tierPrice->customer_group_id,
83: 'price_qty' => $tierPrice->qty,
84: 'price' => $tierPrice->price
85: );
86:
87: }
88:
89: return $updateValue;
90: }
91: }
92: