Bläddra i källkod

[Frontend] Mes commandes : correctif date

feature/module_traiteur_v1
Guillaume 4 år sedan
förälder
incheckning
eb644856eb
1 ändrade filer med 3 tillägg och 2 borttagningar
  1. +3
    -2
      ShopBundle/Model/OrderShop.php

+ 3
- 2
ShopBundle/Model/OrderShop.php Visa fil

@@ -2,13 +2,14 @@

namespace Lc\ShopBundle\Model;

use App\Entity\OrderStatus;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Gedmo\Mapping\Annotation as Gedmo;
use Doctrine\ORM\Mapping as ORM;
use Lc\ShopBundle\Context\DocumentInterface;
use Lc\ShopBundle\Context\FilterMerchantInterface;
use Lc\ShopBundle\Services\Order\OrderUtils;
use Lc\ShopBundle\Model\OrderStatus ;

/**
* @ORM\MappedSuperclass()
@@ -157,7 +158,7 @@ abstract class OrderShop extends AbstractEntity implements FilterMerchantInterfa

public function getDateCreated()
{
$orderStatusHistory = $this->getOrderStatusHistory('new');
$orderStatusHistory = $this->getOrderStatusHistory(OrderStatus::ALIAS_WAITING_DELIVERY);
if ($orderStatusHistory) {
return $orderStatusHistory->getCreatedAt();
}

Laddar…
Avbryt
Spara