Parcourir la source

Correctif OrderUtils : addOrderProduct

feature/export_comptable
Guillaume il y a 4 ans
Parent
révision
5754577908
1 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. +4
    -1
      ShopBundle/Services/OrderUtils.php

+ 4
- 1
ShopBundle/Services/OrderUtils.php Voir le fichier

@@ -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);
}

Chargement…
Annuler
Enregistrer