Przeglądaj źródła

Relivraisons

feature/export_comptable
Guillaume 4 lat temu
rodzic
commit
14e67e4769
2 zmienionych plików z 2 dodań i 6 usunięć
  1. +0
    -5
      ShopBundle/Model/OrderShop.php
  2. +2
    -1
      ShopBundle/Services/Order/OrderUtils.php

+ 0
- 5
ShopBundle/Model/OrderShop.php Wyświetl plik

@@ -75,11 +75,6 @@ abstract class OrderShop extends AbstractEntity implements FilterMerchantInterfa
*/
protected $orderProducts;

/**
* @ORM\OneToMany(targetEntity="Lc\ShopBundle\Context\CreditHistoryInterface", mappedBy="orderShop", orphanRemoval=true)
*/
protected $creditHistories;

/**
* @ORM\Column(type="text", nullable=true)
*/

+ 2
- 1
ShopBundle/Services/Order/OrderUtils.php Wyświetl plik

@@ -180,7 +180,8 @@ class OrderUtils

foreach ($orderShop->getOrderProducts() as $orderProduct) {
if ($orderProduct->getProduct()->getId() == $orderProductAdd->getProduct()->getId()
&& (string)$this->priceUtils->getPrice($orderProduct) == (string)$this->priceUtils->getPrice($orderProductAdd)
&& $orderProduct->getRedelivery() == $orderProductAdd->getRedelivery()
&& (string) $this->priceUtils->getPrice($orderProduct) == (string) $this->priceUtils->getPrice($orderProductAdd)
&& $this->compareOrderProductReductionCatalog($orderProduct->getOrderProductReductionCatalog(), $orderProductAdd->getOrderProductReductionCatalog())) {

$orderProduct->setQuantityOrder($orderProduct->getQuantityOrder() + $orderProductAdd->getQuantityOrder());

Ładowanie…
Anuluj
Zapisz