Quellcode durchsuchen

Correctif OrderUtils : addOrderProduct

feature/export_comptable
Guillaume vor 4 Jahren
Ursprung
Commit
5754577908
1 geänderte Dateien mit 4 neuen und 1 gelöschten Zeilen
  1. +4
    -1
      ShopBundle/Services/OrderUtils.php

+ 4
- 1
ShopBundle/Services/OrderUtils.php Datei anzeigen

@@ -126,7 +126,10 @@ class OrderUtils
if (!$updated) {
$orderShop->addOrderProduct($orderProductAdd);

$this->em->persist($orderProductReductionCatalog);
if(isset($orderProductReductionCatalog)) {
$this->em->persist($orderProductReductionCatalog);
}

$this->em->persist($orderProductAdd);
$this->em->persist($orderShop);
}

Laden…
Abbrechen
Speichern