소스 검색

Erreur 500 : PointSaleRepository::findOnePointSaleById()

feature/souke
Guillaume Bourgeois 9 달 전
부모
커밋
24a7af9cf3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      common/logic/Order/Order/Repository/OrderRepository.php

+ 1
- 1
common/logic/Order/Order/Repository/OrderRepository.php 파일 보기

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

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

Loading…
취소
저장