Bläddra i källkod

Correctif OrderRepository::getUserFavoritePointSale()

develop
Guillaume Bourgeois 1 vecka sedan
förälder
incheckning
103a6256dc
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      domain/Order/Order/OrderRepository.php

+ 1
- 1
domain/Order/Order/OrderRepository.php Visa fil

@@ -487,7 +487,7 @@ class OrderRepository extends AbstractRepository
$pointSale = null;
$arrayUserPointSale = $this->userPointSaleRepository->findUserPointSalesByUser($user, $distribution);

if (count($arrayUserPointSale) == 1 && $arrayUserPointSale[0]->id_point_sale) {
if (count($arrayUserPointSale) == 1 && isset($arrayUserPointSale[0]) && $arrayUserPointSale[0]->id_point_sale) {
$pointSale = $this->pointSaleRepository->findOnePointSaleById($arrayUserPointSale[0]->id_point_sale);
} else {
$lastOrder = $this->findOneOrderLastByUser($user);

Laddar…
Avbryt
Spara