dongzhuo1958 2016-08-29 14:42
浏览 73
已采纳

Sylius通过CartItemController添加到购物车总共0,00

We are currently developing an ERP-based webshop with Sylius. One of the features is that a customer can select multiple sizes and quantities and add them to their cart in one action.

Normally Sylius would work with a request-based ItemResolver for only one variant. We've tried to override the CartItemController so that we would be able to loop the request variables and add all the items to the cart.

We tried to use this code:

    try {
        // When we have multiple
        $reqSize      = $request->request->get('size');
        $reqQuantity  = $request->request->get('quantity');
        $reqProductID = $request->request->get('product_id');
        $reqColorID   = $request->request->get('variant_color_id');

        if (null !== $reqSize && null !== $reqQuantity && null !== $reqProductID && null !== $reqColorID && count($reqSize) === count($reqQuantity)) {
            $provider            = $this->get('sylius.cart_provider'); // Implements the CartProviderInterface.
            $currentCart         = $provider->getCart();
            $priceCalculator     = $this->get('sylius.price_calculator');
            $availabilityChecker = $this->get('sylius.availability_checker');

            $productRepo = $this->get('sylius.repository.product');
            $variantRepo = $this->get('sylius.repository.product_variant');
            $sizeRepo    = $this->get('jartazi.repository.sizegrid_size');
            $colorRepo   = $this->get('jartazi.repository.color');

            $product = $productRepo->find(intval($reqProductID));
            $color   = $colorRepo->find(intval($reqColorID));

            for ($i = 0; $i < count($reqSize); $i++) {
                $size     = $sizeRepo->find(intval($reqSize[$i]));
                $variant  = $variantRepo->findOneBy(['object' => $product, 'size' => $size, 'color' => $color]);
                $quantity = intval($reqQuantity[$i]);

                if (null === $variant) {
                    throw new ItemResolvingException('Selected item is out of stock.');
                }


                if (null !== $product && null !== $color && null !== $size && null !== $variant) {
                    // Make a cart item
                    $item = $this->get('sylius.factory.cart_item')->createNew();

                    $item->setSize($size);
                    $item->setVariant($variant);
                    $item->setQuantity($quantity);

                    $context = ['quantity' => $quantity];

                    if (null !== $customer = $cart->getCustomer()) {
                        $context['groups'] = $customer->getGroups()->toArray();
                    }

                    $item->setUnitPrice($priceCalculator->calculate($variant, $context));

                    // Check for equal products
                    foreach ($currentCart->getItems() as $cartItem) {
                        if ($cartItem->equals($item)) {
                            $quantity += $cartItem->getQuantity();
                            break;
                        }
                    }

                    if (!$availabilityChecker->isStockSufficient($variant, $quantity)) {
                        throw new ItemResolvingException('Selected item is out of stock.');
                    }

                    $event = new CartItemEvent($cart, $item);

                    // Update models
                    $eventDispatcher->dispatch(SyliusCartEvents::ITEM_ADD_INITIALIZE, $event);
                    $eventDispatcher->dispatch(SyliusCartEvents::CART_CHANGE, new GenericEvent($cart));
                    $eventDispatcher->dispatch(SyliusCartEvents::CART_SAVE_INITIALIZE, $event);

                    // Write flash message
                    $eventDispatcher->dispatch(SyliusCartEvents::ITEM_ADD_COMPLETED, new FlashEvent());
                }
            }

            return $this->redirectAfterAdd($configuration);
        }
    } catch (ItemResolvingException $exception) {
        // Write flash message
        $eventDispatcher->dispatch(SyliusCartEvents::ITEM_ADD_ERROR, new FlashEvent($exception->getMessage()));

        return $this->redirectAfterAdd($configuration);
    }

But when we add one to the cart, the cart total stays 0,00

Are we missing something in order to have the correct totals when adding a CartItem without an ItemResolver?

Thanks in advance.

  • 写回答

3条回答 默认 最新

  • duanduji2986 2016-08-29 23:03
    关注

    As specified by Coudenysj you probably need to call the OrderItemQuantityModifier somewhere in your code.

    I think you need to manually call the modifier before you set the quantity

    $this->get('sylius.order_item_quantity_modifier')->modify($item, $quantity);
    
    // $item->setQuantity($quantity); 
    

    Actually it appears you just need to call the modify function and it updates the quantity to the correct value

    I had a lot of trouble making my own add to cart code for this reason. I ended up modifying the CartItemType. But now i do need to be able to add multiple to the cart at once. So i would be very interested to hear if this solves your issues.

    Please post an update

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 孟德尔随机化怎样画共定位分析图
  • ¥18 模拟电路问题解答有偿速度
  • ¥15 CST仿真别人的模型结果仿真结果S参数完全不对
  • ¥15 误删注册表文件致win10无法开启
  • ¥15 请问在阿里云服务器中怎么利用数据库制作网站
  • ¥60 ESP32怎么烧录自启动程序
  • ¥50 html2canvas超出滚动条不显示
  • ¥15 java业务性能问题求解(sql,业务设计相关)
  • ¥15 52810 尾椎c三个a 写蓝牙地址
  • ¥15 elmos524.33 eeprom的读写问题