소스 검색

Correctif OrderRepository::getUserFavoritePointSale()

develop
Guillaume Bourgeois 1 주 전
부모
커밋
103a6256dc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      domain/Order/Order/OrderRepository.php

+ 1
- 1
domain/Order/Order/OrderRepository.php 파일 보기

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

Loading…
취소
저장