0

誰かが私を助けてくれることを願っています。

価格を変更するためにカートでいくつかの計算を実行しました。これは非常にうまく機能します。

しかし、同じ製品をカートに 2 回追加するが、カスタム オプション値が異なる場合、最初の製品オプション値は 2 番目のオプション値によって上書きされます....

うーん...あまり良くない!

それを理解する方法がわかりません...だから、いくつかの汚いことをして、カートに移動しているすべての製品を複製しました-新しいProduct_IDがあり、問題はそれだと思うので、計算は正しい方法で実行されるはずです同じ製品 ID であるため、最初の製品値は 2 番目の値によって上書きされます.......

だから今私が欲しいもの:

_1 オプション : 同じ Product_ID がカートにある場合、最初の製品の価格を変更せずに計算を実行する必要があります

また

_2 オプション : 元の製品の代わりにクローン製品をカートにロードして表示する必要があります。

何か案は?

カートコントローラー.php

   /**
         * if customer enteres shopping cart we should mark quote
         * as modified bc he can has checkout page in another window.
         */
        $this->_getSession()->setCartWasUpdated(true);

        Varien_Profiler::start(__METHOD__ . 'cart_display');
        $this
            ->loadLayout()
            ->_initLayoutMessages('checkout/session')
            ->_initLayoutMessages('catalog/session')
            ->getLayout()->getBlock('head')->setTitle($this->__('Shopping Cart'));
        $this->renderLayout();
        Varien_Profiler::stop(__METHOD__ . 'cart_display');
    }

    public function addAction()
    {
        $connection = Mage::getSingleton("core/resource")->getConnection("core_read");
        $cart   = $this->_getCart();
        $params = $this->getRequest()->getParams();

        try {
            if (isset($params['qty'])) {
                $filter = new Zend_Filter_LocalizedToNormalized(
                    array('locale' => Mage::app()->getLocale()->getLocaleCode())
                );
                $params['qty'] = $filter->filter($params['qty']);
            }

            $product = $this->_initProduct();
            $related = $this->getRequest()->getParam('related_product');

            /**
             * CLONE PRODUCT
             */
            $clone=$product->duplicate();
            $clone->setSku($clonedSku);
            $clone->setVisibility(Mage_Catalog_Model_Product_Visibility::VISIBILITY_NOT_VISIBLE);   
            $clone->setStatus(1); // AKTIV=1
            $clone->setVisibility(4);
            $clone->setTaxClassId(2);
            $clone->setCategoryIds("93");
            /**
             * Check product availability
             */ 
            if (!$clone) {
                $this->_goBack();
                return;
            }

            $cart->addProduct($product, $params);
            if (!empty($related)) {
                $cart->addProductsByIds(explode(',', $related));
            }


            $cart->save();



            ################## table from which to get percent sku catalog_product_option_type_value & catalog_product_option
            foreach($this->_getQuote()->getAllItems() as $item) 
            {           
                if($item->getProductId() == $product->getId()) 

                {   
                    $percentage_total = 0;
                    $optionsArray = array();
                    foreach($params['options'] as $key => $value){
                        $qry = "SELECT `catalog_product_option_type_value`.`option_type_id`, `catalog_product_option_type_value`.`option_id` ,`catalog_product_option_type_price`.`price` FROM `catalog_product_option_type_price` INNER JOIN `catalog_product_option_type_value` ON `catalog_product_option_type_price`.`option_type_id` = `catalog_product_option_type_value`.`option_type_id` AND `catalog_product_option_type_value`.`sku` = 'percent' AND `catalog_product_option_type_value`.`option_type_id` = '".$value."' AND `catalog_product_option_type_value`.`option_id` = '".$key."'";
                        $percentvalue = $connection->fetchAll($qry);
                        if(intval($percentvalue[0]['price'])>0) $optionsArray[] = $percentvalue[0];
                    }
                    if(count($optionsArray)>0)
                    {
                        $rowTotal = $item->getRowTotalInclTax();
                        $newTotal = $rowTotal;// - $percentage_total;
                        $newTotalGrand = 0;
                        foreach($optionsArray as $optionsArr)
                        {
                            $newTotalGrand += $optionsArr['price'];
                        }
                        if($newTotalGrand>0)
                        {

                            $newTotalGrand = ($newTotal/100)*$newTotalGrand;
                            $newTotal = $newTotal + $newTotalGrand;
                            $query = "UPDATE `sales_flat_quote_item` SET `custom_price` = '".$newTotal."',`original_custom_price` = '".$newTotal."' WHERE `sales_flat_quote_item`.`item_id` ='".$item->getId()."'";
                            $connection->query($query);
                        }
                    }


                }
            }
                        $clone->setPrice($newTotal);
            $clone->getResource()->save($clone);





            $this->_getSession()->setCartWasUpdated(true);
4

1 に答える 1