getCartItems(); $cart = new Cart(); $cart->setAddressDeliveryId($this->getAddressDeliveryId()); $cart->setAddressInvoiceId($this->getAddressInvoiceId()); $cart->setToken($token); // TODO : set current Currency $cart->setCurrencyId($this->getCurrencyId()); if ($customer){ $cart->setCustomer($customer); } $cart->save(); $currentDateTime = new \DateTime(); foreach ($cartItems as $cartItem){ $product = $cartItem->getProduct(); $productSaleElements = $cartItem->getProductSaleElements(); if ($product && $productSaleElements && $product->getVisible() == 1 && ($productSaleElements->getQuantity() > $cartItem->getQuantity() || ! ConfigQuery::checkAvailableStock())) { $item = new CartItem(); $item->setCart($cart); $item->setProductId($cartItem->getProductId()); $item->setQuantity($cartItem->getQuantity()); $item->setProductSaleElements($productSaleElements); if ($currentDateTime <= $cartItem->getPriceEndOfLife()) { $item->setPrice($cartItem->getPrice()) ->setPromoPrice($cartItem->getPromoPrice()) ->setPromo($productSaleElements->getPromo()) // TODO : new price EOF or duplicate current priceEOF from $cartItem ? ->setPriceEndOfLife($cartItem->getPriceEndOfLife()); } else { $productPrices = ProductPriceQuery::create()->filterByProductSaleElements($productSaleElements)->findOne(); $item->setPrice($productPrices->getPrice()) ->setPromoPrice($productPrices->getPromoPrice()) ->setPromo($productSaleElements->getPromo()) ->setPriceEndOfLife(time() + ConfigQuery::read("cart.priceEOF", 60*60*24*30)); } $item->save(); } } return $cart; } public function getLastCartItemAdded() { return CartItemQuery::create() ->filterByCartId($this->getId()) ->orderByCreatedAt(Criteria::DESC) ->findOne() ; } public function getTaxedAmount(Country $country) { $taxCalculator = new Calculator(); $total = 0; foreach($this->getCartItems() as $cartItem) { $subtotal = $cartItem->getRealPrice(); /* we round it for the unit price, before the quantity factor */ $subtotal = round($taxCalculator->load($cartItem->getProduct(), $country)->getTaxedPrice($subtotal), 2); $subtotal *= $cartItem->getQuantity(); $total += $subtotal; } $total -= $this->getDiscount(); return $total; } public function getTotalAmount() { $total = 0; foreach($this->getCartItems() as $cartItem) { $subtotal = $cartItem->getRealPrice(); $subtotal *= $cartItem->getQuantity(); $total += $subtotal; } $total -= $this->getDiscount(); return $total; } public function getWeight() { $weight = 0; foreach($this->getCartItems() as $cartItem) { $itemWeight = $cartItem->getProductSaleElements()->getWeight(); $itemWeight *= $cartItem->getQuantity(); $weight += $itemWeight; } return $weight; } }